diff options
author | Daniel Black <dragonheart@gentoo.org> | 2004-08-16 11:53:46 +0000 |
---|---|---|
committer | Daniel Black <dragonheart@gentoo.org> | 2004-08-16 11:53:46 +0000 |
commit | 3b8e4a829a40420db6ba95e5a50a8adc3db2f9fe (patch) | |
tree | 76affe9543f68d09935b718625d31fd462d7df5a /app-crypt/gpgme | |
parent | modified gpgme-0.3.14-r1 to this needed to change too (diff) | |
download | historical-3b8e4a829a40420db6ba95e5a50a8adc3db2f9fe.tar.gz historical-3b8e4a829a40420db6ba95e5a50a8adc3db2f9fe.tar.bz2 historical-3b8e4a829a40420db6ba95e5a50a8adc3db2f9fe.zip |
modified gpgme-0.3.14-r1 a bit to make it easier. bug #57193 refers
Diffstat (limited to 'app-crypt/gpgme')
-rw-r--r-- | app-crypt/gpgme/ChangeLog | 6 | ||||
-rw-r--r-- | app-crypt/gpgme/gpgme-0.3.14-r1.ebuild | 9 |
2 files changed, 8 insertions, 7 deletions
diff --git a/app-crypt/gpgme/ChangeLog b/app-crypt/gpgme/ChangeLog index 8e02bbc7ca66..3ca2dced8fbd 100644 --- a/app-crypt/gpgme/ChangeLog +++ b/app-crypt/gpgme/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-crypt/gpgme # Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/ChangeLog,v 1.41 2004/08/12 20:08:24 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/ChangeLog,v 1.42 2004/08/16 11:53:46 dragonheart Exp $ + + 16 Aug 2004; Daniel Black <dragonheart@gentoo.org> gpgme-0.3.14-r1.ebuild: + Have modified gpgme-0.3.14-r1 a bit to make it easier. REmoved duplicat econf + as well bug #57193 refers 13 Aug 2004; Daniel Black <dragonheart@gentoo.org> gpgme-0.3.14-r1.ebuild: Misses fix on gpgme/mkerror. Thanks to fix by Mihai Limbasan diff --git a/app-crypt/gpgme/gpgme-0.3.14-r1.ebuild b/app-crypt/gpgme/gpgme-0.3.14-r1.ebuild index df90c534d5e7..a946dd8c6603 100644 --- a/app-crypt/gpgme/gpgme-0.3.14-r1.ebuild +++ b/app-crypt/gpgme/gpgme-0.3.14-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/gpgme-0.3.14-r1.ebuild,v 1.5 2004/08/12 20:08:24 dragonheart Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/gpgme-0.3.14-r1.ebuild,v 1.6 2004/08/16 11:53:46 dragonheart Exp $ DESCRIPTION="GnuPG Made Easy (GPGME) is a library designed to make access to GnuPG easier for applications." HOMEPAGE="http://www.gnupg.org/gpgme.html" @@ -49,7 +49,6 @@ src_unpack() { doc/gpgme.texi configure.ac sed -i -e 's:gpgme\.m4:gpgme3.m4:g' \ - -e 's:gpgme\.h:gpgme3.h:g' \ gpgme/Makefile.am configure.ac doc/gpgme.texi \ gpgme/mkerrors \ `find . -name \*.c -o -name \*.h` @@ -59,7 +58,7 @@ src_unpack() { mv doc/gpgme{,3}.texi mv gpgme/gpgme{,3}-config.in mv gpgme/gpgme{,3}.m4 - mv gpgme/gpgme{,3}.h + # mv gpgme/gpgme{,3}.h } @@ -75,8 +74,8 @@ src_compile() { myconf="${myconf} --with-gpg=${ROOT}usr/bin/gpg" fi - aclocal || die "Aclocal failed" autoconf || die "autoconf failed" + aclocal || die "Aclocal failed" automake || die "automake failed" # For gnugpg-1.9+ @@ -89,8 +88,6 @@ src_compile() { ${myconf} \ || die "econf failed" - - econf ${myconf} || die "econf failed" emake || die "make failed" } |