Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/zziplib: ChangeLog zziplib-0.13.58.ebuild
Date: Sat, 26 Dec 2009 18:07:34
Message-Id: E1NOb2p-0003vJ-Ve@stork.gentoo.org
1 vapier 09/12/26 18:07:15
2
3 Modified: ChangeLog
4 Added: zziplib-0.13.58.ebuild
5 Log:
6 Version bump #298443 by Rafał Mużyło.
7 (Portage version: 2.2_rc61/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.70 dev-libs/zziplib/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?rev=1.70&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?rev=1.70&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/ChangeLog?r1=1.69&r2=1.70
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v
19 retrieving revision 1.69
20 retrieving revision 1.70
21 diff -u -r1.69 -r1.70
22 --- ChangeLog 27 Aug 2009 10:38:48 -0000 1.69
23 +++ ChangeLog 26 Dec 2009 18:07:15 -0000 1.70
24 @@ -1,6 +1,11 @@
25 # ChangeLog for dev-libs/zziplib
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v 1.69 2009/08/27 10:38:48 alexxy Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/ChangeLog,v 1.70 2009/12/26 18:07:15 vapier Exp $
29 +
30 +*zziplib-0.13.58 (26 Dec 2009)
31 +
32 + 26 Dec 2009; Mike Frysinger <vapier@g.o> +zziplib-0.13.58.ebuild:
33 + Version bump #298443 by Rafał Mużyło.
34
35 27 Aug 2009; Alexey Shvetsov <alexxy@g.o> zziplib-0.13.56.ebuild:
36 Add ~mips keyword
37
38
39
40 1.1 dev-libs/zziplib/zziplib-0.13.58.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/zziplib-0.13.58.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-libs/zziplib/zziplib-0.13.58.ebuild?rev=1.1&content-type=text/plain
44
45 Index: zziplib-0.13.58.ebuild
46 ===================================================================
47 # Copyright 1999-2009 Gentoo Foundation
48 # Distributed under the terms of the GNU General Public License v2
49 # $Header: /var/cvsroot/gentoo-x86/dev-libs/zziplib/zziplib-0.13.58.ebuild,v 1.1 2009/12/26 18:07:15 vapier Exp $
50
51 EAPI="2"
52
53 inherit libtool eutils flag-o-matic
54
55 DESCRIPTION="Lightweight library used to easily extract data from files archived in a single zip file"
56 HOMEPAGE="http://zziplib.sourceforge.net/"
57 SRC_URI="mirror://sourceforge/zziplib/${P}.tar.bz2"
58
59 LICENSE="|| ( LGPL-2.1 MPL-1.1 )"
60 SLOT="0"
61 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
62 IUSE="sdl test"
63
64 RDEPEND=">=dev-lang/python-2.4
65 sys-libs/zlib
66 sdl? ( >=media-libs/libsdl-1.2.6 )"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig
69 test? ( app-arch/zip )"
70
71 src_prepare() {
72 epatch "${FILESDIR}"/${PN}-0.13.49-SDL-test.patch
73 # zziplib tries to install backwards compat symlinks we dont want
74 sed -i -e '/^zzip-postinstall:/s|$|\ndisable-this:|' Makefile.in || die
75 sed -i -e '/^install-exec-local:/s|$|\ndisable-this:|' zzip/Makefile.in || die
76 elibtoolize
77 }
78
79 src_configure() {
80 append-flags -fno-strict-aliasing # bug reported upstream
81 econf $(use_enable sdl)
82 }
83
84 src_test() {
85 # need this because `make test` will always return true
86 # tests fail with -j > 1 (bug #241186)
87 emake -j1 check || die "make check failed"
88 }
89
90 src_install() {
91 emake DESTDIR="${D}" install install-man3 || die "make install failed"
92 dodoc ChangeLog README TODO
93 dohtml docs/*
94 }