diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-04-09 03:29:32 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-04-09 03:29:32 +0000 |
commit | 80b35cf173cc10c5aa7351ff66e40cff5ae2c1ce (patch) | |
tree | e08cf752fc7a489cc892e1a10243e89e490be2b9 /net-dns/pdnsd | |
parent | Fixing configure to include explicit #!/bin/sh for sandbox bug workaround. S... (diff) | |
download | gentoo-2-80b35cf173cc10c5aa7351ff66e40cff5ae2c1ce.tar.gz gentoo-2-80b35cf173cc10c5aa7351ff66e40cff5ae2c1ce.tar.bz2 gentoo-2-80b35cf173cc10c5aa7351ff66e40cff5ae2c1ce.zip |
Changed to add user/group pdnsd before the make install
Diffstat (limited to 'net-dns/pdnsd')
-rw-r--r-- | net-dns/pdnsd/ChangeLog | 5 | ||||
-rw-r--r-- | net-dns/pdnsd/pdnsd-1.1.10.ebuild | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/net-dns/pdnsd/ChangeLog b/net-dns/pdnsd/ChangeLog index 61aff06a7d60..478f46448ed8 100644 --- a/net-dns/pdnsd/ChangeLog +++ b/net-dns/pdnsd/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for net-dns/pdnsd # Copyright 2002-2004 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/ChangeLog,v 1.23 2004/04/03 02:45:23 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/ChangeLog,v 1.24 2004/04/09 03:29:32 dragonheart Exp $ + + 09 Apr 2004; Daniel Black <dragonheart@gentoo.org> pdnsd-1.1.10.ebuild: + Changed to add user/group pdnsd before the make install 03 Apr 2004; Daniel Black <dragonheart@gentoo.org> pdnsd-1.1.10.ebuild: Stable on x86, ppc, sparc. Changed version 1.1.10 to use $ROOT when diff --git a/net-dns/pdnsd/pdnsd-1.1.10.ebuild b/net-dns/pdnsd/pdnsd-1.1.10.ebuild index 1fd8ee26d23b..6cb3e1395f8e 100644 --- a/net-dns/pdnsd/pdnsd-1.1.10.ebuild +++ b/net-dns/pdnsd/pdnsd-1.1.10.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.1.10.ebuild,v 1.5 2004/04/03 02:42:42 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/net-dns/pdnsd/pdnsd-1.1.10.ebuild,v 1.6 2004/04/09 03:29:32 dragonheart Exp $ inherit eutils @@ -57,11 +57,11 @@ src_compile() { } src_install() { - make DESTDIR=${D} install || die - enewgroup pdnsd enewuser pdnsd -1 /bin/false /var/lib/pdnsd pdnsd + emake DESTDIR=${D} install || die + # Copy cache from prev versions [ -f ${ROOT}/var/lib/pdnsd/pdnsd.cache ] && \ cp ${ROOT}/var/lib/pdnsd/pdnsd.cache ${D}/var/cache/pdnsd/pdnsd.cache |