Gentoo Archives: gentoo-commits

From: "Matsuu Takuto (matsuu)" <matsuu@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/sary: ChangeLog sary-1.2.0-r1.ebuild sary-1.1.0.ebuild
Date: Fri, 02 Sep 2011 14:51:02
Message-Id: 20110902145052.950C42004C@flycatcher.gentoo.org
1 matsuu 11/09/02 14:50:52
2
3 Modified: ChangeLog
4 Added: sary-1.2.0-r1.ebuild
5 Removed: sary-1.1.0.ebuild
6 Log:
7 Fixed dodoc, bug #375619. Added static-libs USE flag.
8
9 (Portage version: 2.1.10.11/cvs/Linux x86_64)
10
11 Revision Changes Path
12 1.31 app-text/sary/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/sary/ChangeLog?rev=1.31&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/sary/ChangeLog?rev=1.31&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/sary/ChangeLog?r1=1.30&r2=1.31
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/app-text/sary/ChangeLog,v
21 retrieving revision 1.30
22 retrieving revision 1.31
23 diff -u -r1.30 -r1.31
24 --- ChangeLog 12 Apr 2011 22:44:13 -0000 1.30
25 +++ ChangeLog 2 Sep 2011 14:50:52 -0000 1.31
26 @@ -1,6 +1,12 @@
27 # ChangeLog for app-text/sary
28 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/app-text/sary/ChangeLog,v 1.30 2011/04/12 22:44:13 abcd Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/app-text/sary/ChangeLog,v 1.31 2011/09/02 14:50:52 matsuu Exp $
31 +
32 +*sary-1.2.0-r1 (02 Sep 2011)
33 +
34 + 02 Sep 2011; MATSUU Takuto <matsuu@g.o> -sary-1.1.0.ebuild,
35 + +sary-1.2.0-r1.ebuild:
36 + Fixed dodoc, bug #375619. Added static-libs USE flag. Removed old version.
37
38 12 Apr 2011; Jonathan Callen <abcd@g.o> sary-1.2.0.ebuild:
39 Add prefix support, bump EAPI to 3, add prefix keywords
40
41
42
43 1.1 app-text/sary/sary-1.2.0-r1.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/sary/sary-1.2.0-r1.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-text/sary/sary-1.2.0-r1.ebuild?rev=1.1&content-type=text/plain
47
48 Index: sary-1.2.0-r1.ebuild
49 ===================================================================
50 # Copyright 1999-2011 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/app-text/sary/sary-1.2.0-r1.ebuild,v 1.1 2011/09/02 14:50:52 matsuu Exp $
53
54 EAPI=4
55
56 DESCRIPTION="Sary: suffix array library and tools"
57 HOMEPAGE="http://sary.sourceforge.net/"
58 SRC_URI="http://sary.sourceforge.net/${P}.tar.gz"
59 IUSE="static-libs"
60
61 LICENSE="LGPL-2.1"
62 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
63 SLOT="0"
64 RESTRICT="test"
65
66 RDEPEND="dev-libs/glib:2"
67 DEPEND="${RDEPEND}
68 dev-util/pkgconfig"
69
70 src_configure() {
71 econf $(use_enable static-libs static)
72 }
73
74 src_install() {
75
76 emake DESTDIR="${D}" \
77 docsdir="${EPREFIX}"/usr/share/doc/${PF}/html \
78 install || die
79
80 dodoc AUTHORS ChangeLog NEWS README TODO
81
82 if ! use static-libs ; then
83 find "${ED}" -name '*.la' -delete
84 fi
85
86 }