diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2018-01-21 01:38:57 +0100 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2018-01-21 01:38:57 +0100 |
commit | 36e60cce11d780582196c42d6b692897455d7a27 (patch) | |
tree | 6cdc5d5a647d5403ef2e466b6d369f424a959b4c /net-nds/portmap/portmap-6.0.ebuild | |
parent | app-text/xdvipdfmx: Remove last-rited package, bug 628820 (diff) | |
download | gentoo-36e60cce11d780582196c42d6b692897455d7a27.tar.gz gentoo-36e60cce11d780582196c42d6b692897455d7a27.tar.bz2 gentoo-36e60cce11d780582196c42d6b692897455d7a27.zip |
net-nds/portmap: Remove last-rited package, bug 630670
Diffstat (limited to 'net-nds/portmap/portmap-6.0.ebuild')
-rw-r--r-- | net-nds/portmap/portmap-6.0.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/net-nds/portmap/portmap-6.0.ebuild b/net-nds/portmap/portmap-6.0.ebuild deleted file mode 100644 index 6beb27c6e571..000000000000 --- a/net-nds/portmap/portmap-6.0.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -inherit eutils toolchain-funcs user - -DESCRIPTION="daemon for implementing remote procedure calls between computer programs" -HOMEPAGE="http://neil.brown.name/portmap/" -SRC_URI="http://neil.brown.name/portmap/${P}.tgz" - -LICENSE="BSD GPL-2" # GPL-2 only for init script -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86" -IUSE="selinux tcpd" - -DEPEND=" - tcpd? ( >=sys-apps/tcp-wrappers-7.6-r7 ) -" - -RDEPEND=" - selinux? ( sec-policy/selinux-portmap ) -" - -S=${WORKDIR}/${PN}_${PV} - -pkg_setup() { - enewgroup rpc 111 - enewuser rpc 111 -1 /dev/null rpc -} - -src_unpack() { - unpack ${A} - cd "${S}" - epatch "${FILESDIR}"/${P}-tcpd.patch #178242 - - # Once HPPA gets PIE's fixed, this can go away - use hppa && sed -e '/LDFLAGS/s/^/#/' -i "${S}/Makefile" #190458 -} - -src_compile() { - tc-export CC - emake NO_TCP_WRAPPER="$(use tcpd || echo NO)" || die -} - -src_install() { - into / - dosbin portmap || die "portmap" - into /usr - dosbin pmap_dump pmap_set || die "pmap" - - doman *.8 - dodoc BLURBv5 CHANGES README* - - newinitd "${FILESDIR}"/portmap.rc6 portmap - newconfd "${FILESDIR}"/portmap.confd portmap -} |