Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 242572 | Differences between
and this patch

Collapse All | Expand All

(-)file_not_specified_in_diff (-18 / +10 lines)
Line  Link Here
0
-- app-crypt/gpgme/gpgme-1.1.6.ebuild
0
++ app-crypt/gpgme/gpgme-1.1.7.ebuild
Lines 2-35 Link Here
2
# Distributed under the terms of the GNU General Public License v2
2
# Distributed under the terms of the GNU General Public License v2
3
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/gpgme-1.1.6.ebuild,v 1.8 2008/03/24 10:57:00 armin76 Exp $
3
# $Header: /var/cvsroot/gentoo-x86/app-crypt/gpgme/gpgme-1.1.6.ebuild,v 1.8 2008/03/24 10:57:00 armin76 Exp $
4
4
5
inherit autotools eutils
5
inherit eutils
6
6
7
DESCRIPTION="GnuPG Made Easy is a library for making GnuPG easier to use"
7
DESCRIPTION="GnuPG Made Easy is a library for making GnuPG easier to use"
8
HOMEPAGE="http://www.gnupg.org/related_software/gpgme"
8
HOMEPAGE="http://www.gnupg.org/related_software/gpgme"
9
SRC_URI="mirror://gnupg/gpgme/${P}.tar.gz"
9
SRC_URI="mirror://gnupg/gpgme/${P}.tar.gz"
10
10
11
LICENSE="GPL-2"
11
LICENSE="GPL-2 LGPL-2"
12
SLOT="1"
12
SLOT="1"
13
KEYWORDS="alpha amd64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd"
13
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
14
IUSE="pth"
14
IUSE="pth"
15
15
16
DEPEND=">=dev-libs/libgpg-error-1.4
16
DEPEND=">=dev-libs/libgpg-error-1.4
17
	>=app-crypt/gnupg-1.9.20-r1
17
	>=app-crypt/gnupg-1.9.20-r1
18
	pth? ( >=dev-libs/pth-1.2 )"
18
	pth? ( >=dev-libs/pth-1.2 )"
19
19
RDEPEND="${DEPEND}"
20
RDEPEND="${DEPEND}
21
	dev-libs/libgcrypt"
22
20
23
src_unpack() {
21
src_unpack() {
24
	unpack ${A}
22
	unpack ${A}
25
	cd "${S}"
23
	cd "${S}"
26
24
27
	epatch "${FILESDIR}/${P}-cvs.patch"
25
	epatch "${FILESDIR}/${P}-_gpgme_cancel_with_err.patch"
28
	chmod a+x "tests/gpg/pinentry"
29
	AT_M4DIR="m4" eautoreconf
30
31
	# We need to call elibtoolize so that we get sane .so versioning on fbsd.
32
	#elibtoolize
33
}
26
}
34
27
35
src_compile() {
28
src_compile() {
Lines 37-48 Link Here
37
		--includedir=/usr/include/gpgme \
30
		--includedir=/usr/include/gpgme \
38
		--with-gpg=/usr/bin/gpg \
31
		--with-gpg=/usr/bin/gpg \
39
		--with-gpgsm=/usr/bin/gpgsm \
32
		--with-gpgsm=/usr/bin/gpgsm \
40
		$(use_with pth) \
33
		$(use_with pth)
41
		|| die
34
	emake || die "emake failed"
42
	emake || die
43
}
35
}
44
36
45
src_install() {
37
src_install() {
46
	emake DESTDIR="${D}" install || die
38
	emake DESTDIR="${D}" install || die "emake install failed"
47
	dodoc AUTHORS ChangeLog NEWS README THANKS TODO VERSION
39
	dodoc AUTHORS ChangeLog NEWS README THANKS TODO
48
}
40
}

Return to bug 242572