diff options
author | Jeremy Huddleston <eradicator@gentoo.org> | 2006-04-01 06:21:24 +0000 |
---|---|---|
committer | Jeremy Huddleston <eradicator@gentoo.org> | 2006-04-01 06:21:24 +0000 |
commit | 08fca7b1b496bd318b532061b297bac62a6932f0 (patch) | |
tree | 9d6585ff3e05540f1fa769cd9f949b8fc7d405c7 /net-nds/ypbind | |
parent | rphillips already has a mask for luabind, so I can remove mine (diff) | |
download | gentoo-2-08fca7b1b496bd318b532061b297bac62a6932f0.tar.gz gentoo-2-08fca7b1b496bd318b532061b297bac62a6932f0.tar.bz2 gentoo-2-08fca7b1b496bd318b532061b297bac62a6932f0.zip |
Install yp.conf.example instead of yp.conf. Use DESTDIR rather than einstall. Closes bug #108980.
(Portage version: 2.1_pre7-r3)
Diffstat (limited to 'net-nds/ypbind')
-rw-r--r-- | net-nds/ypbind/ChangeLog | 7 | ||||
-rw-r--r-- | net-nds/ypbind/ypbind-1.19.1.ebuild | 15 |
2 files changed, 14 insertions, 8 deletions
diff --git a/net-nds/ypbind/ChangeLog b/net-nds/ypbind/ChangeLog index 923a1a817d4f..aed4a8cf1c3e 100644 --- a/net-nds/ypbind/ChangeLog +++ b/net-nds/ypbind/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-nds/ypbind # Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.31 2006/03/31 19:28:51 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ChangeLog,v 1.32 2006/04/01 06:21:24 eradicator Exp $ + + 01 Apr 2006; Jeremy Huddleston <eradicator@gentoo.org> + ypbind-1.19.1.ebuild: + Install yp.conf.example instead of yp.conf. Use DESTDIR rather than + einstall. Closes bug #108980. 31 Mar 2006; Michael Hanselmann <hansmi@gentoo.org> ypbind-1.19.1.ebuild: Stable on ppc. diff --git a/net-nds/ypbind/ypbind-1.19.1.ebuild b/net-nds/ypbind/ypbind-1.19.1.ebuild index e2364d0eda60..853ec801c8ed 100644 --- a/net-nds/ypbind/ypbind-1.19.1.ebuild +++ b/net-nds/ypbind/ypbind-1.19.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ypbind-1.19.1.ebuild,v 1.4 2006/03/31 19:28:51 hansmi Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-nds/ypbind/ypbind-1.19.1.ebuild,v 1.5 2006/04/01 06:21:24 eradicator Exp $ MY_P=${PN}-mt-${PV} S="${WORKDIR}/${MY_P}" @@ -22,17 +22,18 @@ DEPEND="${RDEPEND} >=sys-apps/portage-2.0.51" src_compile() { - econf \ - $(use_enable nls) \ - $(use_enable slp) \ - || die + econf $(use_enable nls) $(use_enable slp) emake || die "emake failed" } src_install() { - einstall || die + make install DESTDIR="${D}" || die + dodoc AUTHORS ChangeLog README THANKS TODO - insinto /etc ; doins etc/yp.conf + + insinto /etc + newins etc/yp.conf yp.conf.example + newconfd ${FILESDIR}/ypbind.confd-r1 ypbind newinitd ${FILESDIR}/ypbind.initd ypbind } |