diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2008-09-29 00:53:08 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2008-09-29 00:53:08 +0000 |
commit | ba657c73e5363d4bd071000d82b3fd41a7787b65 (patch) | |
tree | 0f5c30253c2a262ee96b49afa1dea58cbc0ebb80 /dev-libs/yaz | |
parent | Version bump #237170 by Conrad Kostecki. (diff) | |
download | gentoo-2-ba657c73e5363d4bd071000d82b3fd41a7787b65.tar.gz gentoo-2-ba657c73e5363d4bd071000d82b3fd41a7787b65.tar.bz2 gentoo-2-ba657c73e5363d4bd071000d82b3fd41a7787b65.zip |
Version bump.
(Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)
Diffstat (limited to 'dev-libs/yaz')
-rw-r--r-- | dev-libs/yaz/ChangeLog | 7 | ||||
-rw-r--r-- | dev-libs/yaz/yaz-3.0.36.ebuild | 54 |
2 files changed, 60 insertions, 1 deletions
diff --git a/dev-libs/yaz/ChangeLog b/dev-libs/yaz/ChangeLog index 7bd30830967a..593068e37453 100644 --- a/dev-libs/yaz/ChangeLog +++ b/dev-libs/yaz/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for dev-libs/yaz # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.48 2008/08/06 11:20:25 ulm Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.49 2008/09/29 00:53:08 robbat2 Exp $ + +*yaz-3.0.36 (29 Sep 2008) + + 29 Sep 2008; Robin H. Johnson <robbat2@gentoo.org> +yaz-3.0.36.ebuild: + Version bump. 06 Aug 2008; Ulrich Mueller <ulm@gentoo.org> metadata.xml: Add USE flag description to metadata wrt GLEP 56. diff --git a/dev-libs/yaz/yaz-3.0.36.ebuild b/dev-libs/yaz/yaz-3.0.36.ebuild new file mode 100644 index 000000000000..3d2190279e4b --- /dev/null +++ b/dev-libs/yaz/yaz-3.0.36.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/yaz-3.0.36.ebuild,v 1.1 2008/09/29 00:53:08 robbat2 Exp $ + +inherit eutils autotools + +DESCRIPTION="C/C++ programmer's toolkit supporting the development of Z39.50v3 clients and servers" +HOMEPAGE="http://www.indexdata.dk/yaz" +SRC_URI="http://ftp.indexdata.dk/pub/${PN}/${P}.tar.gz" + +LICENSE="BSD GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86" +IUSE="debug icu tcpd ziffy" + +RDEPEND="dev-libs/libxml2 + dev-libs/libxslt + dev-libs/openssl + icu? ( dev-libs/icu ) + tcpd? ( sys-apps/tcp-wrappers ) + ziffy? ( net-libs/libpcap )" +DEPEND="${RDEPEND} + dev-util/pkgconfig + dev-lang/tcl" + +src_unpack() { + unpack ${A} + cd "${S}" + epatch "${FILESDIR}"/${PN}-3.0.26-icu-automagic.patch + AT_M4DIR="m4" eautoreconf +} + +src_compile() { + econf \ + --enable-static \ + --enable-shared \ + $(use_enable debug memdebug) \ + $(use_enable icu) \ + $(use_enable tcpd tcpd /usr) + + emake || die "emake failed" +} + +src_install() { + local docdir="/usr/share/doc/${PF}" + emake DESTDIR="${D}" docdir="${docdir}" install || die "install failed" + + dodir ${docdir}/html + mv -f "${D}"/${docdir}/*.{html,png} "${D}"/${docdir}/html/ || die "Failed to move HTML docs" + mv -f "${D}"/usr/share/doc/${PN}/common "${D}"/${docdir}/html/ || die "Failed to move HTML docs" + rm -rf "${D}"/usr/share/doc/${PN} + + dodoc ChangeLog NEWS README TODO +} |