From 57885107c140b7ae015dbc6d0024c1ef9bc9b6ea Mon Sep 17 00:00:00 2001 From: Steve Arnold Date: Sun, 19 Apr 2009 01:00:39 +0000 Subject: New ebuild for OPeNDAP C++ library, a required dependency for ferret. (Portage version: 2.2_rc30/cvs/Linux x86_64) --- sci-libs/libdap/ChangeLog | 10 ++++++++ sci-libs/libdap/libdap-3.9.2.ebuild | 51 +++++++++++++++++++++++++++++++++++++ sci-libs/libdap/metadata.xml | 16 ++++++++++++ 3 files changed, 77 insertions(+) create mode 100644 sci-libs/libdap/ChangeLog create mode 100644 sci-libs/libdap/libdap-3.9.2.ebuild create mode 100644 sci-libs/libdap/metadata.xml (limited to 'sci-libs/libdap') diff --git a/sci-libs/libdap/ChangeLog b/sci-libs/libdap/ChangeLog new file mode 100644 index 000000000000..0464c4930fd4 --- /dev/null +++ b/sci-libs/libdap/ChangeLog @@ -0,0 +1,10 @@ +# ChangeLog for sci-libs/libdap +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/ChangeLog,v 1.1 2009/04/19 01:00:39 nerdboy Exp $ + +*libdap-3.9.2 (19 Apr 2009) + + 19 Apr 2009; Steve Arnold +metadata.xml, + +libdap-3.9.2.ebuild: + New ebuild for OPeNDAP C++ library, a required dependency for ferret. + diff --git a/sci-libs/libdap/libdap-3.9.2.ebuild b/sci-libs/libdap/libdap-3.9.2.ebuild new file mode 100644 index 000000000000..dd9289e32c9c --- /dev/null +++ b/sci-libs/libdap/libdap-3.9.2.ebuild @@ -0,0 +1,51 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sci-libs/libdap/libdap-3.9.2.ebuild,v 1.1 2009/04/19 01:00:39 nerdboy Exp $ + +inherit autotools eutils flag-o-matic + +DESCRIPTION="A C++ SDK which contains an implementation of DAP 2.0 and 3.2, both Client- and Server-side support." +HOMEPAGE="http://opendap.org/index.html" +SRC_URI="http://www.opendap.org/pub/source/${P}.tar.gz" + +LICENSE="LGPL-2.1" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="doc" + +RDEPEND="dev-util/cppunit + dev-util/dejagnu" + +DEPEND="${RDEPEND} + sys-libs/zlib + >=dev-libs/libxml2-2.5.7 + >=net-misc/curl-7.10.6 + doc? ( app-doc/doxygen )" + +src_unpack() { + unpack ${A} + cd "${S}" + eaclocal + eautoreconf +} + +src_compile() { + local myconf="--disable-dependency-tracking" + econf ${myconf} || die "econf failed" + emake || die "emake failed" + + if use doc; then + make docs || die "make docs failed" + fi +} + +src_test() { + make check || die "make check failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + + dodoc README NEWS README.dodsrc README.AIS + use doc && dohtml docs/html/* +} diff --git a/sci-libs/libdap/metadata.xml b/sci-libs/libdap/metadata.xml new file mode 100644 index 000000000000..4bbe0bb1adb6 --- /dev/null +++ b/sci-libs/libdap/metadata.xml @@ -0,0 +1,16 @@ + + + +sci-geosciences + + nerdboy@gentoo.org + + +libdap is a C++ implementation of OPeNDAP which allows access to data over the +internet, from programs that weren't originally designed for that purpose, as +well as some that were. While OPeNDAP is the original developer of the Data +Access Protocol (DAP) which it's software uses, many other groups have adopted +DAP and provide compatible clients, servers and software development kits. +DAP is a NASA community standard: http://www.esdswg.org/spg/rfc/ese-rfc-004 + + -- cgit v1.2.3-65-gdbad