Gentoo Archives: gentoo-commits

From: "Tim Harder (radhermit)" <radhermit@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libzen: ChangeLog libzen-0.4.24.ebuild
Date: Sat, 04 Feb 2012 23:22:33
Message-Id: 20120204232223.111CD2004B@flycatcher.gentoo.org
1 radhermit 12/02/04 23:22:23
2
3 Modified: ChangeLog
4 Added: libzen-0.4.24.ebuild
5 Log:
6 Version bump.
7
8 (Portage version: 2.2.0_alpha84/cvs/Linux x86_64)
9
10 Revision Changes Path
11 1.30 media-libs/libzen/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libzen/ChangeLog?rev=1.30&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libzen/ChangeLog?rev=1.30&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libzen/ChangeLog?r1=1.29&r2=1.30
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/media-libs/libzen/ChangeLog,v
20 retrieving revision 1.29
21 retrieving revision 1.30
22 diff -u -r1.29 -r1.30
23 --- ChangeLog 15 Dec 2011 13:21:44 -0000 1.29
24 +++ ChangeLog 4 Feb 2012 23:22:22 -0000 1.30
25 @@ -1,6 +1,11 @@
26 # ChangeLog for media-libs/libzen
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libzen/ChangeLog,v 1.29 2011/12/15 13:21:44 ago Exp $
29 +# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libzen/ChangeLog,v 1.30 2012/02/04 23:22:22 radhermit Exp $
31 +
32 +*libzen-0.4.24 (04 Feb 2012)
33 +
34 + 04 Feb 2012; Tim Harder <radhermit@g.o> +libzen-0.4.24.ebuild:
35 + Version bump.
36
37 15 Dec 2011; Agostino Sarubbo <ago@g.o> libzen-0.4.23.ebuild:
38 Stable for AMD64, wrt bug #394617
39
40
41
42 1.1 media-libs/libzen/libzen-0.4.24.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libzen/libzen-0.4.24.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libzen/libzen-0.4.24.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libzen-0.4.24.ebuild
48 ===================================================================
49 # Copyright 1999-2012 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/media-libs/libzen/libzen-0.4.24.ebuild,v 1.1 2012/02/04 23:22:22 radhermit Exp $
52
53 EAPI="4"
54
55 inherit autotools-utils multilib
56
57 MY_PN="ZenLib"
58 DESCRIPTION="Shared library for libmediainfo and mediainfo"
59 HOMEPAGE="http://sourceforge.net/projects/zenlib"
60 SRC_URI="mirror://sourceforge/zenlib/${MY_PN}%20-%20Sources/${PV}/${PN}_${PV}.tar.bz2"
61
62 LICENSE="as-is ZLIB"
63 SLOT="0"
64 KEYWORDS="~amd64 ~x86"
65 IUSE="doc static-libs"
66
67 RDEPEND="sys-libs/zlib"
68 DEPEND="${RDEPEND}
69 doc? ( app-doc/doxygen )"
70
71 S="${WORKDIR}/${MY_PN}/Project/GNU/Library"
72
73 AUTOTOOLS_IN_SOURCE_BUILD=1
74
75 src_prepare() {
76 autotools-utils_src_prepare
77 sed -i -e "s:-O2::" configure.ac
78 eautoreconf
79 }
80
81 src_configure() {
82 local myeconfargs=(
83 --enable-unicode
84 )
85 autotools-utils_src_configure
86 }
87
88 src_compile() {
89 autotools-utils_src_compile
90
91 if use doc ; then
92 cd "${WORKDIR}"/${MY_PN}/Source/Doc
93 doxygen Doxyfile || die
94 fi
95 }
96
97 src_install() {
98 autotools-utils_src_install
99
100 insinto /usr/$(get_libdir)/pkgconfig
101 doins "${AUTOTOOLS_BUILD_DIR}"/${PN}.pc
102
103 for x in ./ Format/Html Format/Http HTTP_Client ; do
104 insinto /usr/include/${MY_PN}/${x}
105 doins "${WORKDIR}"/${MY_PN}/Source/${MY_PN}/${x}/*.h
106 done
107
108 dodoc "${WORKDIR}"/${MY_PN}/History.txt
109 if use doc ; then
110 dohtml "${WORKDIR}"/${MY_PN}/Doc/*
111 fi
112 }