Gentoo Archives: gentoo-commits

From: "Michal Gorny (mgorny)" <mgorny@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/libebook: libebook-0.1.2.ebuild ChangeLog
Date: Wed, 04 Feb 2015 09:08:07
Message-Id: 20150204090802.BA5A011068@oystercatcher.gentoo.org
1 mgorny 15/02/04 09:08:02
2
3 Modified: ChangeLog
4 Added: libebook-0.1.2.ebuild
5 Log:
6 Version bump. Bug #538746.
7
8 (Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)
9
10 Revision Changes Path
11 1.9 app-text/libebook/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libebook/ChangeLog?rev=1.9&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libebook/ChangeLog?rev=1.9&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libebook/ChangeLog?r1=1.8&r2=1.9
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/app-text/libebook/ChangeLog,v
20 retrieving revision 1.8
21 retrieving revision 1.9
22 diff -u -r1.8 -r1.9
23 --- ChangeLog 10 Oct 2014 20:16:15 -0000 1.8
24 +++ ChangeLog 4 Feb 2015 09:08:02 -0000 1.9
25 @@ -1,6 +1,11 @@
26 # ChangeLog for app-text/libebook
27 -# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/app-text/libebook/ChangeLog,v 1.8 2014/10/10 20:16:15 maekke Exp $
29 +# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/libebook/ChangeLog,v 1.9 2015/02/04 09:08:02 mgorny Exp $
31 +
32 +*libebook-0.1.2 (04 Feb 2015)
33 +
34 + 04 Feb 2015; Michał Górny <mgorny@g.o> +libebook-0.1.2.ebuild:
35 + Version bump. Bug #538746.
36
37 10 Oct 2014; Markus Meier <maekke@g.o> libebook-0.1.1.ebuild:
38 add ~arm, bug #520692
39
40
41
42 1.1 app-text/libebook/libebook-0.1.2.ebuild
43
44 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libebook/libebook-0.1.2.ebuild?rev=1.1&view=markup
45 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/libebook/libebook-0.1.2.ebuild?rev=1.1&content-type=text/plain
46
47 Index: libebook-0.1.2.ebuild
48 ===================================================================
49 # Copyright 1999-2015 Gentoo Foundation
50 # Distributed under the terms of the GNU General Public License v2
51 # $Header: /var/cvsroot/gentoo-x86/app-text/libebook/libebook-0.1.2.ebuild,v 1.1 2015/02/04 09:08:02 mgorny Exp $
52
53 EAPI=5
54
55 MY_PN="libe-book"
56 MY_P="${MY_PN}-${PV}"
57
58 inherit eutils
59
60 DESCRIPTION="Library parsing various ebook formats"
61 HOMEPAGE="http://www.sourceforge.net/projects/libebook/"
62 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
63
64 LICENSE="MPL-2.0"
65 SLOT="0"
66 KEYWORDS="~amd64 ~arm ~x86"
67 IUSE="doc test"
68
69 RDEPEND="
70 dev-libs/icu:=
71 dev-libs/librevenge
72 dev-libs/libxml2
73 sys-libs/zlib
74 "
75 DEPEND="${RDEPEND}
76 dev-libs/boost:=
77 dev-util/gperf
78 virtual/pkgconfig
79 doc? ( app-doc/doxygen )
80 test? ( dev-util/cppunit )
81 "
82 RDEPEND="${RDEPEND}"
83
84 S="${WORKDIR}/${MY_P}"
85
86 src_configure() {
87 econf \
88 --disable-static \
89 --disable-werror \
90 $(use_with doc docs) \
91 $(use_enable test tests) \
92 --docdir="${EPREFIX}"/usr/share/doc/${PF}
93 }
94
95 src_install() {
96 default
97 prune_libtool_files --all
98 }