diff options
author | Tim Harder <radhermit@gentoo.org> | 2014-12-23 02:12:31 +0000 |
---|---|---|
committer | Tim Harder <radhermit@gentoo.org> | 2014-12-23 02:12:31 +0000 |
commit | 5fe329abd98bff3790dd79f61a9d4e4b1a10517d (patch) | |
tree | 2da8aa4cd8db075cba9f55076380fc45aa47c605 /net-nds | |
parent | Bump (diff) | |
download | gentoo-2-5fe329abd98bff3790dd79f61a9d4e4b1a10517d.tar.gz gentoo-2-5fe329abd98bff3790dd79f61a9d4e4b1a10517d.tar.bz2 gentoo-2-5fe329abd98bff3790dd79f61a9d4e4b1a10517d.zip |
Add systemd use flag (fixes bug #533356).
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 4AB3E85B4F064CA3)
Diffstat (limited to 'net-nds')
-rw-r--r-- | net-nds/rpcbind/ChangeLog | 8 | ||||
-rw-r--r-- | net-nds/rpcbind/rpcbind-0.2.2-r1.ebuild (renamed from net-nds/rpcbind/rpcbind-0.2.2.ebuild) | 8 |
2 files changed, 12 insertions, 4 deletions
diff --git a/net-nds/rpcbind/ChangeLog b/net-nds/rpcbind/ChangeLog index fcf5d074905a..7b6320d40e3e 100644 --- a/net-nds/rpcbind/ChangeLog +++ b/net-nds/rpcbind/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for net-nds/rpcbind # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/ChangeLog,v 1.40 2014/12/22 23:19:17 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/ChangeLog,v 1.41 2014/12/23 02:12:31 radhermit Exp $ + +*rpcbind-0.2.2-r1 (23 Dec 2014) + + 23 Dec 2014; Tim Harder <radhermit@gentoo.org> -rpcbind-0.2.2.ebuild, + +rpcbind-0.2.2-r1.ebuild: + Add systemd use flag (fixes bug #533356). *rpcbind-0.2.2 (22 Dec 2014) diff --git a/net-nds/rpcbind/rpcbind-0.2.2.ebuild b/net-nds/rpcbind/rpcbind-0.2.2-r1.ebuild index 3ae5a28f52d6..a13479744837 100644 --- a/net-nds/rpcbind/rpcbind-0.2.2.ebuild +++ b/net-nds/rpcbind/rpcbind-0.2.2-r1.ebuild @@ -1,8 +1,8 @@ # Copyright 1999-2014 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/rpcbind-0.2.2.ebuild,v 1.1 2014/12/22 23:19:17 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/rpcbind/rpcbind-0.2.2-r1.ebuild,v 1.1 2014/12/23 02:12:31 radhermit Exp $ -EAPI="4" +EAPI="5" inherit eutils systemd @@ -19,9 +19,10 @@ HOMEPAGE="http://sourceforge.net/projects/rpcbind/" LICENSE="BSD" SLOT="0" -IUSE="debug selinux tcpd warmstarts" +IUSE="debug selinux systemd tcpd warmstarts" CDEPEND=">=net-libs/libtirpc-0.2.3 + systemd? ( sys-apps/systemd:= ) tcpd? ( sys-apps/tcp-wrappers )" DEPEND="${CDEPEND} virtual/pkgconfig" @@ -38,6 +39,7 @@ src_configure() { --bindir="${EPREFIX}"/sbin \ --with-statedir="${EPREFIX}"/run/${PN} \ --with-rpcuser=root \ + --with-systemdsystemunitdir=$(usex systemd "$(systemd_get_unitdir)" "no") \ $(use_enable tcpd libwrap) \ $(use_enable debug) \ $(use_enable warmstarts) |