summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlon Bar-Lev <alonbl@gentoo.org>2013-03-06 11:46:06 +0000
committerAlon Bar-Lev <alonbl@gentoo.org>2013-03-06 11:46:06 +0000
commit88097d0c3cf5fb43436f70aad471af98217d1b31 (patch)
treee490bd6ba9ce3092bcaf445196e5fed62c64ce3f /dev-libs/libassuan
parentremove old (diff)
downloadgentoo-2-88097d0c3cf5fb43436f70aad471af98217d1b31.tar.gz
gentoo-2-88097d0c3cf5fb43436f70aad471af98217d1b31.tar.bz2
gentoo-2-88097d0c3cf5fb43436f70aad471af98217d1b31.zip
Version bump, per bug#460336
(Portage version: 2.2.0_alpha165/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Diffstat (limited to 'dev-libs/libassuan')
-rw-r--r--dev-libs/libassuan/ChangeLog7
-rw-r--r--dev-libs/libassuan/libassuan-2.1.0.ebuild29
2 files changed, 35 insertions, 1 deletions
diff --git a/dev-libs/libassuan/ChangeLog b/dev-libs/libassuan/ChangeLog
index 524ed3f1c1f5..cafab21fe64d 100644
--- a/dev-libs/libassuan/ChangeLog
+++ b/dev-libs/libassuan/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/libassuan
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/ChangeLog,v 1.95 2013/02/19 04:53:47 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/ChangeLog,v 1.96 2013/03/06 11:46:06 alonbl Exp $
+
+*libassuan-2.1.0 (06 Mar 2013)
+
+ 06 Mar 2013; Alon Bar-Lev <alonbl@gentoo.org> +libassuan-2.1.0.ebuild:
+ Version bump, per bug#460336
19 Feb 2013; Zac Medico <zmedico@gentoo.org> libassuan-2.0.3.ebuild:
Add ~arm-linux keyword.
diff --git a/dev-libs/libassuan/libassuan-2.1.0.ebuild b/dev-libs/libassuan/libassuan-2.1.0.ebuild
new file mode 100644
index 000000000000..9665868484cf
--- /dev/null
+++ b/dev-libs/libassuan/libassuan-2.1.0.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2013 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libassuan/libassuan-2.1.0.ebuild,v 1.1 2013/03/06 11:46:06 alonbl Exp $
+
+EAPI=4
+
+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 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="static-libs"
+
+RDEPEND=">=dev-libs/libgpg-error-1.8"
+DEPEND="${RDEPEND}"
+
+DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
+
+src_configure() {
+ econf $(use_enable static-libs static)
+}
+
+src_install() {
+ default
+ # ppl need to use libassuan-config for --cflags and --libs
+ rm -f "${ED}"usr/lib*/${PN}.la
+}