diff options
author | Michael Palimaka <kensington@gentoo.org> | 2014-11-13 06:22:44 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2014-11-13 06:22:44 +0000 |
commit | 1646fc452b7506d792a1deda803d179e406a7b35 (patch) | |
tree | 9f0e7598d806508b5fbc2be8308e0afbb9c69654 /net-nds | |
parent | make_wrapper: fix by Jason Zaman to drop spurious blackslash in wrapped comma... (diff) | |
download | gentoo-2-1646fc452b7506d792a1deda803d179e406a7b35.tar.gz gentoo-2-1646fc452b7506d792a1deda803d179e406a7b35.tar.bz2 gentoo-2-1646fc452b7506d792a1deda803d179e406a7b35.zip |
Remove old.
(Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 0x06B1F38DCA45A1EC!)
Diffstat (limited to 'net-nds')
-rw-r--r-- | net-nds/ypbind/ChangeLog | 5 | ||||
-rw-r--r-- | net-nds/ypbind/ypbind-1.37.1.ebuild | 65 |
2 files changed, 4 insertions, 66 deletions
diff --git a/net-nds/ypbind/ChangeLog b/net-nds/ypbind/ChangeLog index ba0414afe56d..06c649d2fd7d 100644 --- a/net-nds/ypbind/ChangeLog +++ b/net-nds/ypbind/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-nds/ypbind # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.95 2014/11/11 10:49:32 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.96 2014/11/13 06:22:44 kensington Exp $ + + 13 Nov 2014; Michael Palimaka <kensington@gentoo.org> -ypbind-1.37.1.ebuild: + Remove old. 11 Nov 2014; Agostino Sarubbo <ago@gentoo.org> ypbind-1.37.2.ebuild: Stable for ia64, wrt bug #525064 diff --git a/net-nds/ypbind/ypbind-1.37.1.ebuild b/net-nds/ypbind/ypbind-1.37.1.ebuild deleted file mode 100644 index c99ac3c6cae6..000000000000 --- a/net-nds/ypbind/ypbind-1.37.1.ebuild +++ /dev/null @@ -1,65 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ypbind-1.37.1.ebuild,v 1.9 2014/03/19 15:17:27 ago Exp $ - -EAPI=5 -inherit readme.gentoo systemd - -MY_P=${PN}-mt-${PV} -S="${WORKDIR}/${MY_P}" - -DESCRIPTION="Multithreaded NIS bind service (ypbind-mt)" -HOMEPAGE="http://www.linux-nis.org/nis/ypbind-mt/index.html" -SRC_URI="http://www.linux-nis.org/download/ypbind-mt/${MY_P}.tar.bz2" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~arm hppa ia64 ~mips ppc ppc64 sparc x86" -IUSE="debug dbus nls slp systemd" - -RDEPEND=" - debug? ( dev-libs/dmalloc ) - dbus? ( dev-libs/dbus-glib ) - slp? ( net-libs/openslp ) - systemd? ( - net-nds/rpcbind - >=net-nds/yp-tools-2.12-r1 - sys-apps/systemd ) - !systemd? ( - net-nds/yp-tools - || ( net-nds/portmap net-nds/rpcbind ) ) -" -DEPEND="${RDEPEND} - nls? ( sys-devel/gettext ) -" - -DOC_CONTENTS=" - If you are using dhcpcd, be sure to add the -Y option to - dhcpcd_eth0 (or eth1, etc.) to keep dhcpcd from clobbering - /etc/yp.conf. -" - -src_prepare() { - ! use systemd && export ac_cv_header_systemd_sd_daemon_h=no -} - -src_configure() { - econf \ - $(use_enable nls) \ - $(use_enable slp) \ - $(use_with debug dmalloc) \ - $(use_enable dbus dbus-nm) -} - -src_install() { - default - - insinto /etc - newins etc/yp.conf yp.conf.example - - newconfd "${FILESDIR}/ypbind.confd-r1" ypbind - newinitd "${FILESDIR}/ypbind.initd" ypbind - use systemd && systemd_dounit "${FILESDIR}/ypbind.service" - - readme.gentoo_create_doc -} |