diff options
author | Alon Bar-Lev <alonbl@gentoo.org> | 2014-02-15 20:42:37 +0000 |
---|---|---|
committer | Alon Bar-Lev <alonbl@gentoo.org> | 2014-02-15 20:42:37 +0000 |
commit | d170b6a20dda990083cc1c6839c537b73f535c69 (patch) | |
tree | 15c4e1bea4cc01ee6c8b52a7c56647ef5bc94880 /dev-libs | |
parent | version bump (diff) | |
download | gentoo-2-d170b6a20dda990083cc1c6839c537b73f535c69.tar.gz gentoo-2-d170b6a20dda990083cc1c6839c537b73f535c69.tar.bz2 gentoo-2-d170b6a20dda990083cc1c6839c537b73f535c69.zip |
Add multilib support, bug#499376, thanks to Michael Mair-Keimberger (iamnr3)
(Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key BF20DC51)
Diffstat (limited to 'dev-libs')
-rw-r--r-- | dev-libs/libtasn1/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libtasn1/libtasn1-3.4-r1.ebuild | 36 |
2 files changed, 42 insertions, 1 deletions
diff --git a/dev-libs/libtasn1/ChangeLog b/dev-libs/libtasn1/ChangeLog index 171e272b07be..876b3c3b9513 100644 --- a/dev-libs/libtasn1/ChangeLog +++ b/dev-libs/libtasn1/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libtasn1 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.194 2014/01/24 20:30:19 radhermit Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.195 2014/02/15 20:42:37 alonbl Exp $ + +*libtasn1-3.4-r1 (15 Feb 2014) + + 15 Feb 2014; Alon Bar-Lev <alonbl@gentoo.org> +libtasn1-3.4-r1.ebuild: + Add multilib support, bug#499376, thanks to Michael Mair-Keimberger (iamnr3) 24 Jan 2014; Tim Harder <radhermit@gentoo.org> -libtasn1-2.12.ebuild, -libtasn1-3.0.ebuild, -libtasn1-3.2.ebuild, -libtasn1-3.3.ebuild, diff --git a/dev-libs/libtasn1/libtasn1-3.4-r1.ebuild b/dev-libs/libtasn1/libtasn1-3.4-r1.ebuild new file mode 100644 index 000000000000..d3ae3e619fad --- /dev/null +++ b/dev-libs/libtasn1/libtasn1-3.4-r1.ebuild @@ -0,0 +1,36 @@ +# Copyright 1999-2014 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-3.4-r1.ebuild,v 1.1 2014/02/15 20:42:37 alonbl Exp $ + +EAPI=5 + +inherit autotools-multilib + +DESCRIPTION="ASN.1 library" +HOMEPAGE="http://www.gnu.org/software/libtasn1/" +SRC_URI="mirror://gnu/${PN}/${P}.tar.gz" + +LICENSE="GPL-3 LGPL-2.1" +SLOT="0/6" # subslot = libtasn1 soname version +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-macos ~arm-linux ~x86-linux" +IUSE="doc static-libs" + +DEPEND=">=dev-lang/perl-5.6 + virtual/yacc" + +DOCS=( AUTHORS ChangeLog NEWS README THANKS ) + +src_configure() { + local myeconfargs + [[ "${VALGRIND_TESTS}" == "0" ]] && myeconfargs+=( --disable-valgrind-tests ) + autotools-multilib_src_configure +} + +src_install() { + autotools-multilib_src_install + + if use doc ; then + dodoc doc/libtasn1.pdf + dohtml doc/reference/html/* + fi +} |