summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2016-12-10 02:00:11 -0500
committerMike Frysinger <vapier@gentoo.org>2016-12-10 02:03:03 -0500
commita01805cf1fe57e514ea5fa99789902956499bb07 (patch)
tree31a7bcbbb4de93406a2ec889485b8f4065c0b38d /net-nds/rpcbind/rpcbind-0.2.1-r1.ebuild
parentnet-nds/rpcbind: mark 0.2.3-r1 arm64/s390/sh stable (diff)
downloadgentoo-a01805cf1fe57e514ea5fa99789902956499bb07.tar.gz
gentoo-a01805cf1fe57e514ea5fa99789902956499bb07.tar.bz2
gentoo-a01805cf1fe57e514ea5fa99789902956499bb07.zip
net-nds/rpcbind: drop old <0.2.3-r1 versions
Diffstat (limited to 'net-nds/rpcbind/rpcbind-0.2.1-r1.ebuild')
-rw-r--r--net-nds/rpcbind/rpcbind-0.2.1-r1.ebuild53
1 files changed, 0 insertions, 53 deletions
diff --git a/net-nds/rpcbind/rpcbind-0.2.1-r1.ebuild b/net-nds/rpcbind/rpcbind-0.2.1-r1.ebuild
deleted file mode 100644
index 593fcff3911f..000000000000
--- a/net-nds/rpcbind/rpcbind-0.2.1-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit eutils systemd
-
-if [[ ${PV} == "9999" ]] ; then
- EGIT_REPO_URI="git://git.infradead.org/~steved/rpcbind.git"
- inherit autotools git-r3
-else
- SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
- KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-fi
-
-DESCRIPTION="portmap replacement which supports RPC over various protocols"
-HOMEPAGE="https://sourceforge.net/projects/rpcbind/"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="debug selinux tcpd warmstarts"
-
-CDEPEND=">=net-libs/libtirpc-0.2.3
- tcpd? ( sys-apps/tcp-wrappers )"
-DEPEND="${CDEPEND}
- virtual/pkgconfig"
-RDEPEND="${CDEPEND}
- selinux? ( sec-policy/selinux-rpcbind )
-"
-src_prepare() {
- [[ ${PV} == "9999" ]] && eautoreconf
- epatch_user
-}
-
-src_configure() {
- econf \
- --bindir="${EPREFIX}"/sbin \
- --with-statedir="${EPREFIX}"/run/${PN} \
- --with-rpcuser=root \
- $(use_enable tcpd libwrap) \
- $(use_enable debug) \
- $(use_enable warmstarts)
-}
-
-src_install() {
- default
-
- newinitd "${FILESDIR}"/${PN}.initd ${PN}
- newconfd "${FILESDIR}"/${PN}.confd ${PN}
-
- systemd_dounit "${FILESDIR}"/${PN}.service
-}