diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2011-07-04 20:15:33 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2011-07-04 20:15:33 +0000 |
commit | d4ef5083e896d385845e25f92db5c5eaa67e8da1 (patch) | |
tree | 663874713755cd7956fd1c1241c6b2f4eb073a96 /dev-libs/libassuan | |
parent | implicit . argument to find is a GNUism that fails with BSDs find; the die ca... (diff) | |
download | gentoo-2-d4ef5083e896d385845e25f92db5c5eaa67e8da1.tar.gz gentoo-2-d4ef5083e896d385845e25f92db5c5eaa67e8da1.tar.bz2 gentoo-2-d4ef5083e896d385845e25f92db5c5eaa67e8da1.zip |
Version bump.
(Portage version: 2.2.0_alpha43/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libassuan')
-rw-r--r-- | dev-libs/libassuan/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libassuan/libassuan-2.0.2.ebuild | 26 |
2 files changed, 32 insertions, 1 deletions
diff --git a/dev-libs/libassuan/ChangeLog b/dev-libs/libassuan/ChangeLog index 49b207bf2afd..e5098b798f52 100644 --- a/dev-libs/libassuan/ChangeLog +++ b/dev-libs/libassuan/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libassuan # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/ChangeLog,v 1.80 2011/05/14 19:32:17 armin76 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/ChangeLog,v 1.81 2011/07/04 20:15:33 robbat2 Exp $ + +*libassuan-2.0.2 (04 Jul 2011) + + 04 Jul 2011; Robin H. Johnson <robbat2@gentoo.org> +libassuan-2.0.2.ebuild: + Version bump. 14 May 2011; Raúl Porcel <armin76@gentoo.org> libassuan-2.0.1.ebuild: ia64/s390/sh/sparc stable wrt #355265 diff --git a/dev-libs/libassuan/libassuan-2.0.2.ebuild b/dev-libs/libassuan/libassuan-2.0.2.ebuild new file mode 100644 index 000000000000..c490d1a2e419 --- /dev/null +++ b/dev-libs/libassuan/libassuan-2.0.2.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/libassuan-2.0.2.ebuild,v 1.1 2011/07/04 20:15:33 robbat2 Exp $ + +EAPI="2" + +DESCRIPTION="IPC library used by GnuPG and GPGME" +HOMEPAGE="http://www.gnupg.org/related_software/libassuan/index.en.html" +SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2" + +LICENSE="GPL-3 LGPL-2.1" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd" +IUSE="static-libs" + +DEPEND=">=dev-libs/libgpg-error-1.8" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable static-libs static) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc AUTHORS ChangeLog NEWS README THANKS TODO || die +} |