diff options
author | Sam James <sam@gentoo.org> | 2022-12-21 21:24:28 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-12-21 22:25:01 +0000 |
commit | f299a7c0036455a3fe8e3ff783e43ae70ae2f5a4 (patch) | |
tree | 04074dda8b92784b7a063cb34720b5e310e5d830 /net-misc | |
parent | media-gfx/xfig: drop 3.2.7b-r3 (diff) | |
download | gentoo-f299a7c0036455a3fe8e3ff783e43ae70ae2f5a4.tar.gz gentoo-f299a7c0036455a3fe8e3ff783e43ae70ae2f5a4.tar.bz2 gentoo-f299a7c0036455a3fe8e3ff783e43ae70ae2f5a4.zip |
net-misc/sstp-client: drop 1.0.12-r1
Bug: https://bugs.gentoo.org/886617
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'net-misc')
-rw-r--r-- | net-misc/sstp-client/Manifest | 1 | ||||
-rw-r--r-- | net-misc/sstp-client/sstp-client-1.0.12-r1.ebuild | 63 |
2 files changed, 0 insertions, 64 deletions
diff --git a/net-misc/sstp-client/Manifest b/net-misc/sstp-client/Manifest index a45ddcf16074..aeeb04f63c6c 100644 --- a/net-misc/sstp-client/Manifest +++ b/net-misc/sstp-client/Manifest @@ -1,2 +1 @@ -DIST sstp-client-1.0.12.tar.gz 468683 BLAKE2B 4bb97465ee29eb6dd816a69b45c53e58e9de2cd5d7b5c9e39ea4ebbb3c3de0c21b3d95317114ae8c93bc3be359300bd6a55fa0512540bf25405fb47f8fb4e736 SHA512 d29128e59977fa844b0f2b02580284bb4e909994e5616c4dfa150b7a9807d0f34219355abe8c315c60c5f2482e3255824ce7e05566dbea9a7f13a1739d46468f DIST sstp-client-1.0.17.tar.gz 482831 BLAKE2B d19c752b3f061401f89eb46bd52091e3ab0a3c931c6646a55c1ee0e6dd7e9c501fba14b7c870a2514cb72fb0fd1d8bc89538562d4d99b9d58a081e0917734f5d SHA512 eff18eb894b2c96d46315b5ac7530fe50e8dd6e6c29ea946cd0e7c05c56416e85088fc65650fb77c05e3a747cb0b4e3575af5457515d240161027910abae9775 diff --git a/net-misc/sstp-client/sstp-client-1.0.12-r1.ebuild b/net-misc/sstp-client/sstp-client-1.0.12-r1.ebuild deleted file mode 100644 index 9fb40250d367..000000000000 --- a/net-misc/sstp-client/sstp-client-1.0.12-r1.ebuild +++ /dev/null @@ -1,63 +0,0 @@ -# Copyright 1999-2021 Gentoo Authors -# Distributed under the terms of the GNU General Public License v2 - -EAPI=7 - -inherit autotools linux-info - -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+-with-openssl-exception" -SLOT="0" -KEYWORDS="amd64 ~arm ~arm64 x86" -IUSE="static" - -DEPEND=" - dev-libs/libevent:= - dev-libs/openssl:0= - net-dialup/ppp:= -" -RDEPEND=" - ${DEPEND} - acct-group/sstpc - acct-user/sstpc -" -BDEPEND="virtual/pkgconfig" - -CONFIG_CHECK="~NETFILTER_NETLINK" - -PATCHES=( - "${FILESDIR}/${P}-remove-network-test.patch" - "${FILESDIR}/${P}-fix-example.patch" -) - -DOCS=( AUTHORS ChangeLog DEVELOPERS NEWS README TODO USING ) - -src_prepare() { - default - eautoreconf -} - -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 - - local myeconfargs=( - --enable-ppp-plugin - --enable-group=sstpc - --enable-user=sstpc - --with-pppd-plugin-dir="/usr/$(get_libdir)/pppd/${PPPD_VER}" - --with-runtime-dir="/run/sstpc" - $(use_enable static) - ) - - econf "${myeconfargs[@]}" -} - -src_install() { - default - find "${D}" -name '*.la' -delete || die -} |