summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--dev-libs/yaz/ChangeLog7
-rw-r--r--dev-libs/yaz/files/yaz-3.0.26-icu-automagic.patch25
-rw-r--r--dev-libs/yaz/yaz-3.0.26.ebuild54
-rw-r--r--dev-libs/yaz/yaz-3.0.36.ebuild54
-rw-r--r--dev-libs/yaz/yaz-3.0.47.ebuild56
5 files changed, 6 insertions, 190 deletions
diff --git a/dev-libs/yaz/ChangeLog b/dev-libs/yaz/ChangeLog
index 9137bad9969f..5bcdc7d8f81c 100644
--- a/dev-libs/yaz/ChangeLog
+++ b/dev-libs/yaz/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for dev-libs/yaz
# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.73 2015/03/25 13:25:20 jlec Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.74 2015/06/22 11:34:12 mrueg Exp $
+
+ 22 Jun 2015; Manuel Rüger <mrueg@gentoo.org>
+ -files/yaz-3.0.26-icu-automagic.patch, -yaz-3.0.26.ebuild, -yaz-3.0.36.ebuild,
+ -yaz-3.0.47.ebuild:
+ Remove old.
25 Mar 2015; Justin Lecher <jlec@gentoo.org> yaz-3.0.47.ebuild,
yaz-3.0.50.ebuild, yaz-3.0.53.ebuild, yaz-4.2.30.ebuild, yaz-4.2.51.ebuild:
diff --git a/dev-libs/yaz/files/yaz-3.0.26-icu-automagic.patch b/dev-libs/yaz/files/yaz-3.0.26-icu-automagic.patch
deleted file mode 100644
index febb73b7c044..000000000000
--- a/dev-libs/yaz/files/yaz-3.0.26-icu-automagic.patch
+++ /dev/null
@@ -1,25 +0,0 @@
---- yaz-3.0.26/configure.ac
-+++ yaz-3.0.26/configure.ac
-@@ -349,14 +349,14 @@
-
- dnl
- dnl
--AC_CHECK_ICU([3.6],[
-- if test "$xml_enabled" = "true"; then
-- ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"
-- else
-- ICU_CPPFLAGS=""
-- AC_MSG_WARN([ICU support disabled because XML support is unavailable])
-- fi
--])
-+dnl ------ ICU
-+AC_ARG_ENABLE(icu, [ --enable-icu enable ICU support],[enable_icu=$enableval],[enable_icu=no])
-+if test "$enable_icu" = "yes"; then
-+ AC_CHECK_ICU([3.6],[
-+ ICU_CPPFLAGS="$ICU_CPPFLAGS -D YAZ_HAVE_ICU=1"],[
-+ AC_MSG_ERROR([For ICU support please install libicu36-dev or similar])
-+ ])
-+fi
- dnl
- dnl ------ Memory debugging
- AC_ARG_ENABLE(memdebug, [ --enable-memdebug enable memory debugging],[enable_memdebug=$enableval],[enable_memdebug=none])
diff --git a/dev-libs/yaz/yaz-3.0.26.ebuild b/dev-libs/yaz/yaz-3.0.26.ebuild
deleted file mode 100644
index 64d392a68b7b..000000000000
--- a/dev-libs/yaz/yaz-3.0.26.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/yaz-3.0.26.ebuild,v 1.10 2012/05/04 18:35:44 jdhore 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}
- virtual/pkgconfig
- dev-lang/tcl"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${P}-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
-}
diff --git a/dev-libs/yaz/yaz-3.0.36.ebuild b/dev-libs/yaz/yaz-3.0.36.ebuild
deleted file mode 100644
index 911bc0fc5846..000000000000
--- a/dev-libs/yaz/yaz-3.0.36.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2012 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.2 2012/05/04 18:35:44 jdhore 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}
- virtual/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
-}
diff --git a/dev-libs/yaz/yaz-3.0.47.ebuild b/dev-libs/yaz/yaz-3.0.47.ebuild
deleted file mode 100644
index 64797e6bfac3..000000000000
--- a/dev-libs/yaz/yaz-3.0.47.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/yaz-3.0.47.ebuild,v 1.4 2015/03/25 13:25:20 jlec Exp $
-
-EAPI=2
-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}
- virtual/pkgconfig
- dev-lang/tcl:0
- >=sys-devel/libtool-2"
-
-src_prepare() {
- epatch "${FILESDIR}"/${PN}-3.0.47-icu-automagic.patch
- AT_M4DIR="m4" eautoreconf
-}
-
-src_configure() {
- econf \
- --enable-static \
- --enable-shared \
- $(use_enable debug memdebug) \
- $(use_enable icu) \
- $(use_enable tcpd tcpd /usr)
-}
-
-src_compile() {
- 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
-}