diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-03 21:16:54 +0200 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2017-02-04 03:30:40 +0200 |
commit | 479dbe7520f4aeee62ead57ff0370719234af7a9 (patch) | |
tree | 9063140d9733dd79be864508ad380f5d30ad91d1 /dev-libs/libassuan | |
parent | profiles: package.mask: mask >=dev-libs/opencryptki-3.6 (diff) | |
download | gentoo-479dbe7520f4aeee62ead57ff0370719234af7a9.tar.gz gentoo-479dbe7520f4aeee62ead57ff0370719234af7a9.tar.bz2 gentoo-479dbe7520f4aeee62ead57ff0370719234af7a9.zip |
dev-libs/libassuan: eapi bump
Package-Manager: portage-2.3.3
Diffstat (limited to 'dev-libs/libassuan')
-rw-r--r-- | dev-libs/libassuan/libassuan-2.4.3-r1.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/dev-libs/libassuan/libassuan-2.4.3-r1.ebuild b/dev-libs/libassuan/libassuan-2.4.3-r1.ebuild new file mode 100644 index 000000000000..5056ccf653ca --- /dev/null +++ b/dev-libs/libassuan/libassuan-2.4.3-r1.ebuild @@ -0,0 +1,39 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +inherit libtool eutils + +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 ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~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_prepare() { + default + + # for Solaris .so + elibtoolize +} + +src_configure() { + econf \ + $(use_enable static-libs static) +} + +src_install() { + default + # ppl need to use libassuan-config for --cflags and --libs + prune_libtool_files +} |