Gentoo Archives: gentoo-commits

From: "Patrick Lauer (patrick)" <patrick@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/sword: sword-1.6.0.ebuild ChangeLog
Date: Mon, 01 Jun 2009 11:44:05
Message-Id: E1MB5vv-0001nA-Ve@stork.gentoo.org
1 patrick 09/06/01 11:44:03
2
3 Modified: ChangeLog
4 Added: sword-1.6.0.ebuild
5 Log:
6 Bump to 1.6.0, closes #271965
7 (Portage version: 2.2_rc33/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.52 app-text/sword/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?rev=1.52&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?rev=1.52&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?r1=1.51&r2=1.52
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v
19 retrieving revision 1.51
20 retrieving revision 1.52
21 diff -u -r1.51 -r1.52
22 --- ChangeLog 15 May 2009 05:30:29 -0000 1.51
23 +++ ChangeLog 1 Jun 2009 11:44:03 -0000 1.52
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-text/sword
26 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.51 2009/05/15 05:30:29 dirtyepic Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.52 2009/06/01 11:44:03 patrick Exp $
29 +
30 +*sword-1.6.0 (01 Jun 2009)
31 +
32 + 01 Jun 2009; Patrick Lauer <patrick@g.o> +sword-1.6.0.ebuild:
33 + Bump to 1.6.0, closes #271965
34
35 15 May 2009; Ryan Hill <dirtyepic@g.o> sword-1.5.11.ebuild,
36 +files/sword-1.5.11-gcc44.patch:
37
38
39
40 1.1 app-text/sword/sword-1.6.0.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/sword-1.6.0.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/sword-1.6.0.ebuild?rev=1.1&content-type=text/plain
44
45 Index: sword-1.6.0.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/app-text/sword/sword-1.6.0.ebuild,v 1.1 2009/06/01 11:44:03 patrick Exp $
50
51 inherit flag-o-matic
52
53 DESCRIPTION="Library for Bible reading software."
54 HOMEPAGE="http://www.crosswire.org/sword/"
55 SRC_URI="http://www.crosswire.org/ftpmirror/pub/sword/source/v1.6/${P}.tar.gz"
56 LICENSE="GPL-2"
57
58 SLOT="0"
59 KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
60 IUSE="curl debug doc icu lucene"
61
62 RDEPEND="sys-libs/zlib
63 curl? ( net-misc/curl )
64 icu? ( dev-libs/icu )
65 lucene? ( dev-cpp/clucene )"
66 DEPEND="${RDEPEND}
67 dev-util/pkgconfig"
68
69 src_compile() {
70 strip-flags
71 econf --with-zlib \
72 --with-conf \
73 $(use_enable curl) \
74 $(use_enable debug) \
75 $(use_with icu) \
76 $(use_enable lucene) || die "configure failed"
77 emake || die "make failed"
78 }
79
80 src_install() {
81 make DESTDIR="${D}" install || die "install failed"
82 dodoc AUTHORS CODINGSTYLE ChangeLog INSTALL README
83 if use doc ;then
84 rm -rf examples/.cvsignore
85 rm -rf examples/cmdline/.cvsignore
86 rm -rf examples/cmdline/.deps
87 cp -R samples examples "${D}/usr/share/doc/${PF}/"
88 fi
89 # global configuration file
90 insinto /etc
91 doins "${FILESDIR}/sword.conf"
92 }
93
94 pkg_postinst() {
95 echo
96 elog "Check out http://www.crosswire.org/sword/modules/"
97 elog "to download modules that you would like to use with SWORD."
98 elog "Follow module installation instructions found on"
99 elog "the web or in /usr/share/doc/${PF}/INSTALL.gz."
100 echo
101 }