Gentoo Archives: gentoo-commits

From: "Raul Porcel (armin76)" <armin76@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/yaz: ChangeLog yaz-3.0.16.ebuild
Date: Mon, 24 Dec 2007 12:32:08
Message-Id: E1J6mTS-0004pt-9L@stork.gentoo.org
1 armin76 07/12/24 12:32:02
2
3 Modified: ChangeLog
4 Added: yaz-3.0.16.ebuild
5 Log:
6 Version bump, Bug 185287, from the php-overlay
7 (Portage version: 2.1.3.19)
8
9 Revision Changes Path
10 1.40 dev-libs/yaz/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?rev=1.40&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?rev=1.40&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/ChangeLog?r1=1.39&r2=1.40
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v
19 retrieving revision 1.39
20 retrieving revision 1.40
21 diff -u -r1.39 -r1.40
22 --- ChangeLog 23 Aug 2007 05:48:26 -0000 1.39
23 +++ ChangeLog 24 Dec 2007 12:32:01 -0000 1.40
24 @@ -1,6 +1,12 @@
25 # ChangeLog for dev-libs/yaz
26 # Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.39 2007/08/23 05:48:26 kumba Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/ChangeLog,v 1.40 2007/12/24 12:32:01 armin76 Exp $
29 +
30 +*yaz-3.0.16 (24 Dec 2007)
31 +
32 + 24 Dec 2007; Raúl Porcel <armin76@g.o>
33 + +files/yaz-3.0.16-icu-automagic.patch, +yaz-3.0.16.ebuild:
34 + Version bump, Bug 185287, from the php-overlay
35
36 23 Aug 2007; Joshua Kinard <kumba@g.o> yaz-2.1.42.ebuild:
37 Stable on mips, per #173849.
38
39
40
41 1.1 dev-libs/yaz/yaz-3.0.16.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/yaz-3.0.16.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/yaz/yaz-3.0.16.ebuild?rev=1.1&content-type=text/plain
45
46 Index: yaz-3.0.16.ebuild
47 ===================================================================
48 # Copyright 1999-2007 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/yaz/yaz-3.0.16.ebuild,v 1.1 2007/12/24 12:32:01 armin76 Exp $
51
52 inherit eutils autotools
53
54 DESCRIPTION="C/C++ programmer's toolkit supporting the development of Z39.50v3 clients and servers"
55 HOMEPAGE="http://www.indexdata.dk/yaz"
56 SRC_URI="http://ftp.indexdata.dk/pub/${PN}/${P}.tar.gz"
57
58 LICENSE="BSD GPL-2"
59 SLOT="0"
60 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
61 IUSE="debug icu tcpd ziffy"
62
63 RDEPEND="dev-libs/libxml2
64 dev-libs/libxslt
65 dev-libs/openssl
66 icu? ( dev-libs/icu )
67 tcpd? ( sys-apps/tcp-wrappers )
68 ziffy? ( net-libs/libpcap )"
69 DEPEND="${RDEPEND}
70 dev-util/pkgconfig
71 dev-lang/tcl"
72
73 src_unpack() {
74 unpack ${A}
75 cd "${S}"
76 epatch "${FILESDIR}"/${P}-icu-automagic.patch
77 AT_M4DIR="m4" eautoreconf
78 }
79
80 src_compile() {
81 econf \
82 --enable-static \
83 --enable-shared \
84 $(use_enable debug memdebug) \
85 $(use_enable icu) \
86 $(use_enable tcpd tcpd /usr) \
87 $(use_with ziffy pcap /usr)
88
89 emake || die "emake failed"
90 }
91
92 src_install() {
93 local docdir="/usr/share/doc/${PF}"
94 emake DESTDIR="${D}" docdir="${docdir}" install || die "install failed"
95
96 dodir ${docdir}/html
97 mv -f "${D}"/${docdir}/*.{html,png} "${D}"/${docdir}/html/ || die "Failed to move HTML docs"
98 mv -f "${D}"/usr/share/doc/${PN}/common "${D}"/${docdir}/html/ || die "Failed to move HTML docs"
99 rm -rf "${D}"/usr/share/doc/${PN}
100
101 dodoc ChangeLog NEWS README TODO
102 if use ziffy ; then
103 for doc in AUTHORS ChangeLog FAQ NEWS README TODO ; do
104 newdoc ziffy/${doc} ${doc}-ziffy
105 done
106 fi
107 }
108
109
110
111 --
112 gentoo-commits@g.o mailing list