Gentoo Archives: gentoo-commits

From: "Robin H. Johnson (robbat2)" <robbat2@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/yaz: yaz-3.0.47.ebuild ChangeLog
Date: Fri, 31 Jul 2009 08:58:49
Message-Id: E1MWnwt-0005HE-2a@stork.gentoo.org
1 robbat2 09/07/31 08:58:47
2
3 Modified: ChangeLog
4 Added: yaz-3.0.47.ebuild
5 Log:
6 Bug #277853: version bump. Thanks to John Klehm <xixsimplicityxix@×××××.com>.
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.57 dev-libs/yaz/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?rev=1.57&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?rev=1.57&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?r1=1.56&r2=1.57
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v
19 retrieving revision 1.56
20 retrieving revision 1.57
21 diff -p -w -b -B -u -u -r1.56 -r1.57
22 --- ChangeLog 5 Jan 2009 21:46:11 -0000 1.56
23 +++ ChangeLog 31 Jul 2009 08:58:47 -0000 1.57
24 @@ -1,6 +1,13 @@
25 # ChangeLog for dev-libs/yaz
26 -# Copyright 2000-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.56 2009/01/05 21:46:11 maekke Exp $
28 +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.57 2009/07/31 08:58:47 robbat2 Exp $
30 +
31 +*yaz-3.0.47 (31 Jul 2009)
32 +
33 + 31 Jul 2009; Robin H. Johnson <robbat2@g.o> +yaz-3.0.47.ebuild,
34 + +files/yaz-3.0.47-icu-automagic.patch:
35 + Bug #277853: version bump. Thanks to John Klehm
36 + <xixsimplicityxix@×××××.com>.
37
38 05 Jan 2009; Markus Meier <maekke@g.o> metadata.xml:
39 drop local icu USE-flag description, as it's global now
40
41
42
43 1.1 dev-libs/yaz/yaz-3.0.47.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/yaz-3.0.47.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/yaz-3.0.47.ebuild?rev=1.1&content-type=text/plain
47
48 Index: yaz-3.0.47.ebuild
49 ===================================================================
50 # Copyright 1999-2009 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/yaz-3.0.47.ebuild,v 1.1 2009/07/31 08:58:47 robbat2 Exp $
53
54 EAPI=2
55 inherit eutils autotools
56
57 DESCRIPTION="C/C++ programmer's toolkit supporting the development of Z39.50v3 clients and servers"
58 HOMEPAGE="http://www.indexdata.dk/yaz"
59 SRC_URI="http://ftp.indexdata.dk/pub/${PN}/${P}.tar.gz"
60
61 LICENSE="BSD GPL-2"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
64 IUSE="debug icu tcpd ziffy"
65
66 RDEPEND="dev-libs/libxml2
67 dev-libs/libxslt
68 dev-libs/openssl
69 icu? ( dev-libs/icu )
70 tcpd? ( sys-apps/tcp-wrappers )
71 ziffy? ( net-libs/libpcap )"
72 DEPEND="${RDEPEND}
73 dev-util/pkgconfig
74 dev-lang/tcl
75 >=sys-devel/libtool-2"
76
77 src_prepare() {
78 cd "${S}"
79 epatch "${FILESDIR}"/${PN}-3.0.47-icu-automagic.patch
80 AT_M4DIR="m4" eautoreconf
81 }
82
83 src_configure() {
84 econf \
85 --enable-static \
86 --enable-shared \
87 $(use_enable debug memdebug) \
88 $(use_enable icu) \
89 $(use_enable tcpd tcpd /usr)
90 }
91
92 src_compile() {
93 emake || die "emake failed"
94 }
95
96 src_install() {
97 local docdir="/usr/share/doc/${PF}"
98 emake DESTDIR="${D}" docdir="${docdir}" install || die "install failed"
99
100 dodir ${docdir}/html
101 mv -f "${D}"/${docdir}/*.{html,png} "${D}"/${docdir}/html/ || die "Failed to move HTML docs"
102 mv -f "${D}"/usr/share/doc/${PN}/common "${D}"/${docdir}/html/ || die "Failed to move HTML docs"
103 rm -rf "${D}"/usr/share/doc/${PN}
104
105 dodoc ChangeLog NEWS README
106 }