diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2011-01-25 13:36:37 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2011-01-25 13:36:37 +0000 |
commit | dd373dfff806575a689680e434929ec755c08f67 (patch) | |
tree | 87b583ed856c18407a3657b3b94b960e3d08e583 /net-libs/ldns | |
parent | Version bump, drop old (diff) | |
download | gentoo-2-dd373dfff806575a689680e434929ec755c08f67.tar.gz gentoo-2-dd373dfff806575a689680e434929ec755c08f67.tar.bz2 gentoo-2-dd373dfff806575a689680e434929ec755c08f67.zip |
Version bumped. Added static-libs USE flag.
(Portage version: 2.1.9.31/cvs/Linux x86_64)
Diffstat (limited to 'net-libs/ldns')
-rw-r--r-- | net-libs/ldns/ChangeLog | 9 | ||||
-rw-r--r-- | net-libs/ldns/ldns-1.6.8.ebuild | 62 |
2 files changed, 69 insertions, 2 deletions
diff --git a/net-libs/ldns/ChangeLog b/net-libs/ldns/ChangeLog index 1c68fe7218f6..ae1b20af7f11 100644 --- a/net-libs/ldns/ChangeLog +++ b/net-libs/ldns/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for net-libs/ldns -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.12 2010/11/09 00:00:42 matsuu Exp $ +# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.13 2011/01/25 13:36:37 matsuu Exp $ + +*ldns-1.6.8 (25 Jan 2011) + + 25 Jan 2011; MATSUU Takuto <matsuu@gentoo.org> +ldns-1.6.8.ebuild: + Version bumped. Added static-libs USE flag. *ldns-1.6.7 (08 Nov 2010) diff --git a/net-libs/ldns/ldns-1.6.8.ebuild b/net-libs/ldns/ldns-1.6.8.ebuild new file mode 100644 index 000000000000..ffda4bb5cc02 --- /dev/null +++ b/net-libs/ldns/ldns-1.6.8.ebuild @@ -0,0 +1,62 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.8.ebuild,v 1.1 2011/01/25 13:36:37 matsuu Exp $ + +EAPI="3" +PYTHON_DEPEND="python? 2:2.4" + +inherit python + +DESCRIPTION="ldns is a library with the aim to simplify DNS programing in C" +HOMEPAGE="http://www.nlnetlabs.nl/projects/ldns/" +SRC_URI="http://www.nlnetlabs.nl/downloads/${PN}/${P}.tar.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos" +IUSE="doc gost python ssl static-libs vim-syntax" + +RDEPEND="ssl? ( >=dev-libs/openssl-0.9.7 ) + gost? ( >=dev-libs/openssl-1 )" +DEPEND="${RDEPEND} + python? ( dev-lang/swig ) + doc? ( app-doc/doxygen )" + +pkg_setup() { + python_set_active_version 2 +} + +src_configure() { + econf \ + $(use_enable gost) \ + $(use_enable ssl sha2) \ + $(use_enable static-libs static) \ + $(use_with ssl) \ + $(use_with python pyldns) \ + --disable-rpath || die "econf failed" +} + +src_compile() { + emake || die "emake failed" + if use doc ; then + emake doxygen || die "emake doxygen failed" + fi +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + dodoc Changelog README* || die "dodoc failed" + + if use python ; then + find "${ED}$(python_get_sitedir)" "(" -name "*.a" -o -name "*.la" ")" -type f -delete || die + fi + + if use doc ; then + dohtml doc/html/* || die "dohtml failed" + fi + + if use vim-syntax ; then + insinto /usr/share/vim/vimfiles/ftdetect + doins libdns.vim || die "doins libdns.vim failed" + fi +} |