diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-25 20:38:14 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-25 20:38:14 +0000 |
commit | ff930b024f28447425e5a77a74e6f5347467ed51 (patch) | |
tree | 458d9cb77a6538a8cb1d9b6a04e115964dcf809d /app-admin/pwgen | |
parent | Fixing S variable and closing bug #55158. (Manifest recommit) (diff) | |
download | gentoo-2-ff930b024f28447425e5a77a74e6f5347467ed51.tar.gz gentoo-2-ff930b024f28447425e5a77a74e6f5347467ed51.tar.bz2 gentoo-2-ff930b024f28447425e5a77a74e6f5347467ed51.zip |
glibc ----------------------------> libc !
Diffstat (limited to 'app-admin/pwgen')
-rw-r--r-- | app-admin/pwgen/pwgen-2.01.ebuild | 16 | ||||
-rw-r--r-- | app-admin/pwgen/pwgen-2.03-r1.ebuild | 15 |
2 files changed, 13 insertions, 18 deletions
diff --git a/app-admin/pwgen/pwgen-2.01.ebuild b/app-admin/pwgen/pwgen-2.01.ebuild index 3d4b94440614..693a4f1f767c 100644 --- a/app-admin/pwgen/pwgen-2.01.ebuild +++ b/app-admin/pwgen/pwgen-2.01.ebuild @@ -1,24 +1,20 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/pwgen-2.01.ebuild,v 1.20 2004/06/24 21:35:46 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/pwgen-2.01.ebuild,v 1.21 2004/06/25 20:38:14 vapier Exp $ DESCRIPTION="Password Generator" -SRC_URI="mirror://sourceforge/pwgen/${P}.tar.gz" HOMEPAGE="http://sourceforge.net/projects/pwgen/" +SRC_URI="mirror://sourceforge/pwgen/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ppc sparc ~alpha hppa" IUSE="livecd" -KEYWORDS="x86 ppc sparc hppa ~alpha" -DEPEND="virtual/glibc" +DEPEND="virtual/libc" src_compile() { - # Fix the Makefile - cp Makefile.in Makefile.in.new - sed -e 's:$(prefix)/man/man1:$(mandir)/man1:g' \ - Makefile.in.new > Makefile.in - + sed -i -e 's:$(prefix)/man/man1:$(mandir)/man1:g' Makefile.in econf --sysconfdir=/etc/pwgen || die "econf failed" emake || die } diff --git a/app-admin/pwgen/pwgen-2.03-r1.ebuild b/app-admin/pwgen/pwgen-2.03-r1.ebuild index 7412d2a1c362..438eb19ef6fc 100644 --- a/app-admin/pwgen/pwgen-2.03-r1.ebuild +++ b/app-admin/pwgen/pwgen-2.03-r1.ebuild @@ -1,25 +1,24 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/pwgen-2.03-r1.ebuild,v 1.13 2004/06/24 21:35:46 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/pwgen/pwgen-2.03-r1.ebuild,v 1.14 2004/06/25 20:38:14 vapier Exp $ inherit eutils DESCRIPTION="Password Generator" -SRC_URI="mirror://sourceforge/pwgen/${P}.tar.gz" HOMEPAGE="http://sourceforge.net/projects/pwgen/" +SRC_URI="mirror://sourceforge/pwgen/${P}.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" +KEYWORDS="x86 ~ppc sparc mips alpha hppa amd64 ppc64" IUSE="livecd" -KEYWORDS="x86 ~ppc sparc hppa amd64 alpha mips ppc64" -DEPEND="virtual/glibc" +DEPEND="virtual/libc" src_unpack() { - unpack ${A} ; cd ${S} - + unpack ${A} + cd ${S} sed -i -e 's:$(prefix)/man/man1:$(mandir)/man1:g' Makefile.in - epatch ${FILESDIR}/${P}-addl_pw_chars.patch } |