summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-09-13 15:19:54 +0000
committerArfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>2010-09-13 15:19:54 +0000
commit4bfdd8cbac8a1da7d21e16147465080ded375a4f (patch)
treeb172f65147fb9b4b2a304ce9292bc23498b82f9e /app-crypt
parentDelete older ebuilds. (diff)
downloadgentoo-2-4bfdd8cbac8a1da7d21e16147465080ded375a4f.tar.gz
gentoo-2-4bfdd8cbac8a1da7d21e16147465080ded375a4f.tar.bz2
gentoo-2-4bfdd8cbac8a1da7d21e16147465080ded375a4f.zip
Delete older ebuild.
(Portage version: 2.2_rc81_p6/cvs/Linux x86_64)
Diffstat (limited to 'app-crypt')
-rw-r--r--app-crypt/gpa/ChangeLog6
-rw-r--r--app-crypt/gpa/gpa-0.9.0.ebuild52
2 files changed, 5 insertions, 53 deletions
diff --git a/app-crypt/gpa/ChangeLog b/app-crypt/gpa/ChangeLog
index 4225c7fab6c6..58ce2adc7be1 100644
--- a/app-crypt/gpa/ChangeLog
+++ b/app-crypt/gpa/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-crypt/gpa
# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpa/ChangeLog,v 1.74 2010/08/30 14:03:19 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpa/ChangeLog,v 1.75 2010/09/13 15:19:54 arfrever Exp $
+
+ 13 Sep 2010; Arfrever Frehtes Taifersar Arahesis <arfrever@gentoo.org>
+ -gpa-0.9.0.ebuild:
+ Delete.
30 Aug 2010; Raúl Porcel <armin76@gentoo.org>
gpa-0.9.1_pre20100416.ebuild:
diff --git a/app-crypt/gpa/gpa-0.9.0.ebuild b/app-crypt/gpa/gpa-0.9.0.ebuild
deleted file mode 100644
index f206fc050cfb..000000000000
--- a/app-crypt/gpa/gpa-0.9.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpa/gpa-0.9.0.ebuild,v 1.8 2010/03/18 21:53:10 arfrever Exp $
-
-EAPI="2"
-
-inherit eutils multilib
-
-DESCRIPTION="The GNU Privacy Assistant (GPA) is a graphical user interface for GnuPG"
-HOMEPAGE="http://gpa.wald.intevation.org"
-STUPID_NUM="603"
-SRC_URI="http://wald.intevation.org/frs/download.php/${STUPID_NUM}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
-IUSE="nls"
-
-RDEPEND=">=x11-libs/gtk+-2.10.0
- >=dev-libs/libgpg-error-1.4
- =dev-libs/libassuan-1*
- >=app-crypt/gnupg-2
- >=app-crypt/gpgme-1.2.0"
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.7
- nls? ( sys-devel/gettext )"
-
-src_prepare() {
- sed -i -e 's|gnupg/:|:|g' configure*
-}
-
-src_configure() {
- local myconf
-
- # By default gnupg puts gpgkeys_hkp in /usr/libexec/gnupg, so
- # check if it is in uncommon /usr/lib/gnupg, and change libexecdir
- # if so. If we do not do this, hkp server types is not usable,
- # as gpa cannot find gpgkeys_hkp ...
- [[ -f /usr/lib/gnupg/gpgkeys_hkp ]] && myconf="--libexecdir=/usr/$(get_libdir)"
-
- econf \
- --with-gpgme-prefix=/usr \
- --with-libassuan-prefix=/usr \
- $(use_enable nls) \
- ${myconf}
- sed -i -e 's|gnupg||g' gpadefs.h
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc AUTHORS ChangeLog README NEWS TODO
-}