diff options
author | Jeroen Roovers <jer@gentoo.org> | 2012-08-31 14:46:27 +0000 |
---|---|---|
committer | Jeroen Roovers <jer@gentoo.org> | 2012-08-31 14:46:27 +0000 |
commit | 230fad4d337d877d4d6b5e13fda6fed1b6cb5588 (patch) | |
tree | 2259f30de3d3488ddd41a2d6bc811d5ebc6f6394 /dev-libs/libnl | |
parent | Add -6.3 development version (diff) | |
download | gentoo-2-230fad4d337d877d4d6b5e13fda6fed1b6cb5588.tar.gz gentoo-2-230fad4d337d877d4d6b5e13fda6fed1b6cb5588.tar.bz2 gentoo-2-230fad4d337d877d4d6b5e13fda6fed1b6cb5588.zip |
Version bump.
(Portage version: 2.2.0_alpha123/cvs/Linux x86_64)
Diffstat (limited to 'dev-libs/libnl')
-rw-r--r-- | dev-libs/libnl/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/libnl/libnl-3.2.12.ebuild | 55 |
2 files changed, 61 insertions, 1 deletions
diff --git a/dev-libs/libnl/ChangeLog b/dev-libs/libnl/ChangeLog index a238ea7ded29..3cc8e8ed60cf 100644 --- a/dev-libs/libnl/ChangeLog +++ b/dev-libs/libnl/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/libnl # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.95 2012/08/12 15:18:09 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/ChangeLog,v 1.96 2012/08/31 14:46:27 jer Exp $ + +*libnl-3.2.12 (31 Aug 2012) + + 31 Aug 2012; Jeroen Roovers <jer@gentoo.org> +libnl-3.2.12.ebuild: + Version bump. 12 Aug 2012; Agostino Sarubbo <ago@gentoo.org> libnl-1.1-r3.ebuild: Stable for amd64, wrt bug #413583 diff --git a/dev-libs/libnl/libnl-3.2.12.ebuild b/dev-libs/libnl/libnl-3.2.12.ebuild new file mode 100644 index 000000000000..d183310985d1 --- /dev/null +++ b/dev-libs/libnl/libnl-3.2.12.ebuild @@ -0,0 +1,55 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/libnl/libnl-3.2.12.ebuild,v 1.1 2012/08/31 14:46:27 jer Exp $ + +EAPI=4 +inherit eutils multilib + +DESCRIPTION="A library for applications dealing with netlink socket" +HOMEPAGE="http://www.infradead.org/~tgr/libnl/" +SRC_URI="http://www.infradead.org/~tgr/libnl/files/${P}.tar.gz" +LICENSE="LGPL-2.1" +SLOT="3" +KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-linux ~ia64-linux ~x86-linux" +IUSE="doc static-libs utils" + +DEPEND=" + sys-devel/flex + sys-devel/bison + doc? ( + app-doc/doxygen[latex] + app-text/asciidoc + dev-python/pygments + dev-util/source-highlight + media-gfx/mscgen + ) +" + +src_prepare() { + epatch "${FILESDIR}"/${PN}-1.1-vlan-header.patch +} + +src_configure() { + econf \ + $(use_enable doc) \ + $(use_enable static-libs static) \ + $(use_enable utils cli) +} + +src_compile() { + default + use doc && emake -C doc api_ref +} + +src_install() { + default + if use doc; then + dohtml doc/api/* + fi + + if ! use static-libs; then + rm -f "${D}"/usr/lib*/lib*.la + fi + + dodoc ChangeLog +} |