diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-12-09 02:42:24 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-12-09 02:42:24 +0000 |
commit | 4d077e2237996d486cfb29dd545a550ebbbbfbb2 (patch) | |
tree | e4c4af00852914a06b162bbadc9b7e0a07e8812b /app-arch/ppmd | |
parent | USEing debug flag to enable debug in gaim (diff) | |
download | historical-4d077e2237996d486cfb29dd545a550ebbbbfbb2.tar.gz historical-4d077e2237996d486cfb29dd545a550ebbbbfbb2.tar.bz2 historical-4d077e2237996d486cfb29dd545a550ebbbbfbb2.zip |
small fix0rs
Diffstat (limited to 'app-arch/ppmd')
-rw-r--r-- | app-arch/ppmd/ChangeLog | 6 | ||||
-rw-r--r-- | app-arch/ppmd/Manifest | 4 | ||||
-rw-r--r-- | app-arch/ppmd/ppmd-9.1.ebuild | 9 |
3 files changed, 14 insertions, 5 deletions
diff --git a/app-arch/ppmd/ChangeLog b/app-arch/ppmd/ChangeLog index f6c25b9395c2..7f2de1ed8d63 100644 --- a/app-arch/ppmd/ChangeLog +++ b/app-arch/ppmd/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-arch/ppmd # Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/ppmd/ChangeLog,v 1.1 2003/11/15 08:52:28 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/ppmd/ChangeLog,v 1.2 2003/12/09 02:42:22 seemant Exp $ + + 08 Dec 2003; Seemant Kulleen <seemant@gentoo.org> ppmd-9.1.ebuild: + fixes for broken aclocal, closing bug #35179 by Brian Harring + <bdharring@wisc.edu> *ppmd-9.1 (15 Nov 2003) diff --git a/app-arch/ppmd/Manifest b/app-arch/ppmd/Manifest index 13a39964139f..c8948dfa3dbc 100644 --- a/app-arch/ppmd/Manifest +++ b/app-arch/ppmd/Manifest @@ -1,4 +1,4 @@ -MD5 ce14aa62246058202ec7eb83192f634f ppmd-9.1.ebuild 916 -MD5 2553e30503a4890239a598aa1a4c4921 ChangeLog 399 +MD5 4ef8c933fa225974d029cbe23eceafa8 ppmd-9.1.ebuild 1056 +MD5 6b0c2074914593b5af49aa1ebfed75d8 ChangeLog 556 MD5 67c5ee2105083a2b9c14a87b5dbf34f9 metadata.xml 328 MD5 df4579e26fa5a155f60190d373501ab9 files/digest-ppmd-9.1 126 diff --git a/app-arch/ppmd/ppmd-9.1.ebuild b/app-arch/ppmd/ppmd-9.1.ebuild index d6bc50bd23d1..f6fda98b5ac5 100644 --- a/app-arch/ppmd/ppmd-9.1.ebuild +++ b/app-arch/ppmd/ppmd-9.1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-arch/ppmd/ppmd-9.1.ebuild,v 1.1 2003/11/15 08:52:28 seemant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-arch/ppmd/ppmd-9.1.ebuild,v 1.2 2003/12/09 02:42:22 seemant Exp $ inherit eutils @@ -20,13 +20,18 @@ LICENSE="public-domain" KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~mips ~arm ~amd64 ~ia64" DEPEND="app-arch/gzip - sys-devel/patch" + sys-devel/patch + sys-devel/autoconf + sys-devel/automake" src_unpack() { unpack ${A} cd ${S} epatch ${WORKDIR}/${MY_P}-${PATCHV}.diff chmod +x ${S}/configure + head -n 3 Makefile.am > Makefile.am.new + mv Makefile.am.new Makefile.am + autoreconf --force || die } src_install() { |