diff options
author | Michael Everitt <m.j.everitt@iee.org> | 2017-08-11 11:52:26 +0100 |
---|---|---|
committer | Göktürk Yüksek <gokturk@gentoo.org> | 2017-08-14 14:32:21 -0400 |
commit | 535d5bf8804220552207df4db1d3855be84a8aca (patch) | |
tree | 6b58190377176bdb84a45d2bc525f1232e2314fd /net-misc/sstp-client | |
parent | 46d514f08f9869a1fdd8af470e104ff40fa554e9 (diff) | |
download | gentoo-535d5bf8804220552207df4db1d3855be84a8aca.tar.gz gentoo-535d5bf8804220552207df4db1d3855be84a8aca.tar.xz |
net-misc/sstp-client: Amend license, and update libtool .la handling
License was incorrectly specified as simply GPL-2, and after consultation
with QA, is now amended to 'GPL-2+-with-openssl-exception'.
Libtool archives are now removed with the 'find -delete' method as
recommended by QA policy guidelines.
Fixed typo in explanatory comment about exampes in src_prepare, and
tidied comments regarding PPPD variables for better readability.
Gentoo-Bug: #603966
Package-Manager: Portage-2.3.6, Repoman-2.3.1
Diffstat (limited to 'net-misc/sstp-client')
-rw-r--r-- | net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild index dbaf858dbe4..9bf1d84c1ac 100644 --- a/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild +++ b/net-misc/sstp-client/sstp-client-1.0.10-r1.ebuild @@ -9,7 +9,7 @@ DESCRIPTION="A client implementation of Secure Socket Tunneling Protocol (SSTP)" HOMEPAGE="http://sstp-client.sourceforge.net/" SRC_URI="mirror://sourceforge/sstp-client/${P}.tar.gz" -LICENSE="GPL-2" +LICENSE="GPL-2+-with-openssl-exception" SLOT="0" KEYWORDS="amd64 ~arm ~arm64 x86" IUSE="static" @@ -29,7 +29,7 @@ pkg_setup() { } src_prepare() { - # set proper examples dir, --docdir overriding is src_configure does not work + # set proper examples dir, --docdir overriding in src_configure does not work sed -i -e "/^docdir/s:@PACKAGE@:${PF}/examples:" Makefile.am || die 'sed on Makefile.am failed' default @@ -38,8 +38,8 @@ src_prepare() { src_configure() { local PPPD_VER="$(best_version net-dialup/ppp)" - PPPD_VER=${PPPD_VER#*/*-} #reduce it to ${PV}-${PR} - PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision + PPPD_VER=${PPPD_VER#*/*-} # reduce it to ${PV}-${PR} + PPPD_VER=${PPPD_VER%%[_-]*} # main version without beta/pre/patch/revision econf \ --enable-ppp-plugin \ --enable-group=sstpc \ @@ -51,5 +51,5 @@ src_configure() { src_install() { default - prune_libtool_files --modules + find "${D}" -name '*.la' -delete || die } |