radhermit    14/12/23 02:12:31

  Modified:             ChangeLog
  Added:                rpcbind-0.2.2-r1.ebuild
  Removed:              rpcbind-0.2.2.ebuild
  Log:
  Add systemd use flag (fixes bug #533356).
  
  (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key 
4AB3E85B4F064CA3)

Revision  Changes    Path
1.41                 net-nds/rpcbind/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/rpcbind/ChangeLog?rev=1.41&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/rpcbind/ChangeLog?rev=1.41&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/rpcbind/ChangeLog?r1=1.40&r2=1.41

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/net-nds/rpcbind/ChangeLog,v
retrieving revision 1.40
retrieving revision 1.41
diff -u -r1.40 -r1.41
--- ChangeLog   22 Dec 2014 23:19:17 -0000      1.40
+++ ChangeLog   23 Dec 2014 02:12:31 -0000      1.41
@@ -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 <[email protected]> -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)
 



1.1                  net-nds/rpcbind/rpcbind-0.2.2-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/rpcbind/rpcbind-0.2.2-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-nds/rpcbind/rpcbind-0.2.2-r1.ebuild?rev=1.1&content-type=text/plain

Index: rpcbind-0.2.2-r1.ebuild
===================================================================
# 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-r1.ebuild,v 
1.1 2014/12/23 02:12:31 radhermit Exp $

EAPI="5"

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="http://sourceforge.net/projects/rpcbind/";

LICENSE="BSD"
SLOT="0"
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"
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 \
                --with-systemdsystemunitdir=$(usex systemd 
"$(systemd_get_unitdir)" "no") \
                $(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
}




Reply via email to