diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2009-11-21 01:53:32 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2009-11-21 01:53:32 +0000 |
commit | ea25207eae3acdd98c6f776562ecabb6e067ca93 (patch) | |
tree | 6a876abdb05301735276fe94002922fbb969f8aa /net-libs | |
parent | Install examples only with USE="examples" (bug #287990). (diff) | |
download | gentoo-2-ea25207eae3acdd98c6f776562ecabb6e067ca93.tar.gz gentoo-2-ea25207eae3acdd98c6f776562ecabb6e067ca93.tar.bz2 gentoo-2-ea25207eae3acdd98c6f776562ecabb6e067ca93.zip |
Initial import, bug #192728.
(Portage version: 2.1.7.5/cvs/Linux x86_64)
Diffstat (limited to 'net-libs')
-rw-r--r-- | net-libs/ldns/ChangeLog | 10 | ||||
-rw-r--r-- | net-libs/ldns/ldns-1.6.2.ebuild | 46 | ||||
-rw-r--r-- | net-libs/ldns/metadata.xml | 15 |
3 files changed, 71 insertions, 0 deletions
diff --git a/net-libs/ldns/ChangeLog b/net-libs/ldns/ChangeLog new file mode 100644 index 000000000000..4d940297f5be --- /dev/null +++ b/net-libs/ldns/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for net-libs/ldns +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ChangeLog,v 1.1 2009/11/21 01:53:32 matsuu Exp $ + +*ldns-1.6.2 (21 Nov 2009) + + 21 Nov 2009; MATSUU Takuto <matsuu@gentoo.org> +ldns-1.6.2.ebuild, + +metadata.xml: + Initial import, bug #192728. + diff --git a/net-libs/ldns/ldns-1.6.2.ebuild b/net-libs/ldns/ldns-1.6.2.ebuild new file mode 100644 index 000000000000..1289c144e086 --- /dev/null +++ b/net-libs/ldns/ldns-1.6.2.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/net-libs/ldns/ldns-1.6.2.ebuild,v 1.1 2009/11/21 01:53:32 matsuu Exp $ + +EAPI="2" + +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" +IUSE="doc ssl vim-syntax" + +RDEPEND="ssl? ( >=dev-libs/openssl-0.9.7 )" +DEPEND="${DEPEND} + doc? ( app-doc/doxygen )" + +src_configure() { + econf \ + $(use_enable ssl sha2) \ + $(use_with ssl) \ + --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 doc ; then + dohtml doc/html/* || die "dohtml failed" + fi + + if use vim-syntax ; then + insinto /usr/share/vim/vimfiles/ftdetect + doins libdns.vim || "doins libdns.vim failed" + fi +} diff --git a/net-libs/ldns/metadata.xml b/net-libs/ldns/metadata.xml new file mode 100644 index 000000000000..9d02b9725e69 --- /dev/null +++ b/net-libs/ldns/metadata.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> +<herd>no-herd</herd> +<maintainer> +<email>matsuu@gentoo.org</email> +</maintainer> +<longdescription lang="en"> +ldns is a library with the aim to simplify DNS programing in C. All +lowlevel DNS/DNSSEC operations are supported. We also define a higher +level API which allows a programmer to (for instance) create or sign +packets. +</longdescription> +</pkgmetadata> + |