Gentoo Archives: gentoo-commits

From: Akinori Hattori <hattya@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libspt/
Date: Sun, 27 Oct 2019 09:09:11
Message-Id: 1572167339.566574e452bbee72a0325736ef31733eba50573f.hattya@gentoo
1 commit: 566574e452bbee72a0325736ef31733eba50573f
2 Author: Akinori Hattori <hattya <AT> gentoo <DOT> org>
3 AuthorDate: Sun Oct 27 09:07:48 2019 +0000
4 Commit: Akinori Hattori <hattya <AT> gentoo <DOT> org>
5 CommitDate: Sun Oct 27 09:08:59 2019 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=566574e4
7
8 dev-libs/libspt: drop old
9
10 Package-Manager: Portage-2.3.76, Repoman-2.3.16
11 Signed-off-by: Akinori Hattori <hattya <AT> gentoo.org>
12
13 dev-libs/libspt/libspt-1.1-r3.ebuild | 46 ------------------------------------
14 1 file changed, 46 deletions(-)
15
16 diff --git a/dev-libs/libspt/libspt-1.1-r3.ebuild b/dev-libs/libspt/libspt-1.1-r3.ebuild
17 deleted file mode 100644
18 index 4ed4bdc71bf..00000000000
19 --- a/dev-libs/libspt/libspt-1.1-r3.ebuild
20 +++ /dev/null
21 @@ -1,46 +0,0 @@
22 -# Copyright 1999-2019 Gentoo Authors
23 -# Distributed under the terms of the GNU General Public License v2
24 -
25 -EAPI="6"
26 -
27 -inherit autotools
28 -
29 -DESCRIPTION="Library for handling root privilege"
30 -HOMEPAGE="http://www.j10n.org/libspt/"
31 -SRC_URI="http://www.j10n.org/${PN}/${P}.tar.bz2"
32 -
33 -LICENSE="BSD-2"
34 -SLOT="0"
35 -KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
36 -IUSE="+libtirpc suid"
37 -RESTRICT="test"
38 -
39 -RDEPEND="!libtirpc? ( elibc_glibc? ( sys-libs/glibc[rpc(-)] ) )
40 - libtirpc? ( net-libs/libtirpc )"
41 -DEPEND="${RDEPEND}
42 - virtual/pkgconfig"
43 -
44 -PATCHES=(
45 - "${FILESDIR}/${PN}-gentoo.patch"
46 - "${FILESDIR}/${PN}-glibc-2.30.patch"
47 - "${FILESDIR}/${PN}-rpc.patch"
48 -)
49 -
50 -src_prepare() {
51 - rm aclocal.m4
52 -
53 - default
54 - eautoreconf
55 -}
56 -
57 -src_configure() {
58 - econf $(use_with libtirpc)
59 -}
60 -
61 -src_install() {
62 - default
63 -
64 - if use suid; then
65 - fperms 4755 /usr/libexec/sptagent
66 - fi
67 -}