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: ChangeLog yaz-3.0.36.ebuild
Date: Mon, 29 Sep 2008 00:53:12
Message-Id: E1Kk70f-0003H1-3J@stork.gentoo.org
1 robbat2 08/09/29 00:53:09
2
3 Modified: ChangeLog
4 Added: yaz-3.0.36.ebuild
5 Log:
6 Version bump.
7 (Portage version: 2.2_rc11/cvs/Linux 2.6.27-rc1-10246-gca5de40 x86_64)
8
9 Revision Changes Path
10 1.49 dev-libs/yaz/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?rev=1.49&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?rev=1.49&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?r1=1.48&r2=1.49
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v
19 retrieving revision 1.48
20 retrieving revision 1.49
21 diff -p -w -b -B -u -u -r1.48 -r1.49
22 --- ChangeLog 6 Aug 2008 11:20:25 -0000 1.48
23 +++ ChangeLog 29 Sep 2008 00:53:08 -0000 1.49
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/yaz
26 # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.48 2008/08/06 11:20:25 ulm Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.49 2008/09/29 00:53:08 robbat2 Exp $
29 +
30 +*yaz-3.0.36 (29 Sep 2008)
31 +
32 + 29 Sep 2008; Robin H. Johnson <robbat2@g.o> +yaz-3.0.36.ebuild:
33 + Version bump.
34
35 06 Aug 2008; Ulrich Mueller <ulm@g.o> metadata.xml:
36 Add USE flag description to metadata wrt GLEP 56.
37
38
39
40 1.1 dev-libs/yaz/yaz-3.0.36.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/yaz-3.0.36.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/yaz-3.0.36.ebuild?rev=1.1&content-type=text/plain
44
45 Index: yaz-3.0.36.ebuild
46 ===================================================================
47 # Copyright 1999-2008 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/yaz-3.0.36.ebuild,v 1.1 2008/09/29 00:53:08 robbat2 Exp $
50
51 inherit eutils autotools
52
53 DESCRIPTION="C/C++ programmer's toolkit supporting the development of Z39.50v3 clients and servers"
54 HOMEPAGE="http://www.indexdata.dk/yaz"
55 SRC_URI="http://ftp.indexdata.dk/pub/${PN}/${P}.tar.gz"
56
57 LICENSE="BSD GPL-2"
58 SLOT="0"
59 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
60 IUSE="debug icu tcpd ziffy"
61
62 RDEPEND="dev-libs/libxml2
63 dev-libs/libxslt
64 dev-libs/openssl
65 icu? ( dev-libs/icu )
66 tcpd? ( sys-apps/tcp-wrappers )
67 ziffy? ( net-libs/libpcap )"
68 DEPEND="${RDEPEND}
69 dev-util/pkgconfig
70 dev-lang/tcl"
71
72 src_unpack() {
73 unpack ${A}
74 cd "${S}"
75 epatch "${FILESDIR}"/${PN}-3.0.26-icu-automagic.patch
76 AT_M4DIR="m4" eautoreconf
77 }
78
79 src_compile() {
80 econf \
81 --enable-static \
82 --enable-shared \
83 $(use_enable debug memdebug) \
84 $(use_enable icu) \
85 $(use_enable tcpd tcpd /usr)
86
87 emake || die "emake failed"
88 }
89
90 src_install() {
91 local docdir="/usr/share/doc/${PF}"
92 emake DESTDIR="${D}" docdir="${docdir}" install || die "install failed"
93
94 dodir ${docdir}/html
95 mv -f "${D}"/${docdir}/*.{html,png} "${D}"/${docdir}/html/ || die "Failed to move HTML docs"
96 mv -f "${D}"/usr/share/doc/${PN}/common "${D}"/${docdir}/html/ || die "Failed to move HTML docs"
97 rm -rf "${D}"/usr/share/doc/${PN}
98
99 dodoc ChangeLog NEWS README TODO
100 }