Gentoo Archives: gentoo-commits

From: "Steve Dibb (beandog)" <beandog@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-text/sword: ChangeLog sword-1.5.11.ebuild
Date: Tue, 29 Jul 2008 02:17:23
Message-Id: E1KNem9-0000xJ-2o@stork.gentoo.org
1 beandog 08/07/29 02:17:21
2
3 Modified: ChangeLog
4 Added: sword-1.5.11.ebuild
5 Log:
6 Version bump, bug 232375
7 (Portage version: 2.2_rc3/cvs/Linux 2.6.25-tuxonice-r6 x86_64)
8
9 Revision Changes Path
10 1.43 app-text/sword/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?rev=1.43&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?rev=1.43&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/ChangeLog?r1=1.42&r2=1.43
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v
19 retrieving revision 1.42
20 retrieving revision 1.43
21 diff -u -r1.42 -r1.43
22 --- ChangeLog 9 Jun 2008 12:53:11 -0000 1.42
23 +++ ChangeLog 29 Jul 2008 02:17:20 -0000 1.43
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-text/sword
26 # Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.42 2008/06/09 12:53:11 flameeyes Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/app-text/sword/ChangeLog,v 1.43 2008/07/29 02:17:20 beandog Exp $
29 +
30 +*sword-1.5.11 (29 Jul 2008)
31 +
32 + 29 Jul 2008; Steve Dibb <beandog@g.o> +sword-1.5.11.ebuild:
33 + Version bump, bug 232375
34
35 09 Jun 2008; Diego Pettenò <flameeyes@g.o>
36 +files/sword-1.5.10+gcc-4.3.patch, sword-1.5.10-r2.ebuild:
37
38
39
40 1.1 app-text/sword/sword-1.5.11.ebuild
41
42 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/sword-1.5.11.ebuild?rev=1.1&view=markup
43 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-text/sword/sword-1.5.11.ebuild?rev=1.1&content-type=text/plain
44
45 Index: sword-1.5.11.ebuild
46 ===================================================================
47 # Copyright 1999-2008 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.5.11.ebuild,v 1.1 2008/07/29 02:17:20 beandog 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.5/${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 }