Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/link-grammar: link-grammar-4.7.12.ebuild ChangeLog link-grammar-4.7.6.ebuild
Date: Tue, 28 May 2013 19:05:35
Message-Id: 20130528190531.C667D2171D@flycatcher.gentoo.org
1 pacho 13/05/28 19:05:31
2
3 Modified: ChangeLog
4 Added: link-grammar-4.7.12.ebuild
5 Removed: link-grammar-4.7.6.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.1.12.2/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.63 dev-libs/link-grammar/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/ChangeLog?rev=1.63&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/ChangeLog?rev=1.63&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/ChangeLog?r1=1.62&r2=1.63
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/ChangeLog,v
21 retrieving revision 1.62
22 retrieving revision 1.63
23 diff -u -r1.62 -r1.63
24 --- ChangeLog 1 Apr 2013 18:24:10 -0000 1.62
25 +++ ChangeLog 28 May 2013 19:05:31 -0000 1.63
26 @@ -1,6 +1,12 @@
27 # ChangeLog for dev-libs/link-grammar
28 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
29 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/ChangeLog,v 1.62 2013/04/01 18:24:10 ago Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/ChangeLog,v 1.63 2013/05/28 19:05:31 pacho Exp $
31 +
32 +*link-grammar-4.7.12 (28 May 2013)
33 +
34 + 28 May 2013; Pacho Ramos <pacho@g.o> +link-grammar-4.7.12.ebuild,
35 + -link-grammar-4.7.6.ebuild:
36 + Version bump, drop old
37
38 01 Apr 2013; Agostino Sarubbo <ago@g.o> link-grammar-4.7.8.ebuild:
39 Stable for sparc, wrt bug #458984
40
41
42
43 1.1 dev-libs/link-grammar/link-grammar-4.7.12.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/link-grammar-4.7.12.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/link-grammar-4.7.12.ebuild?rev=1.1&content-type=text/plain
47
48 Index: link-grammar-4.7.12.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/link-grammar-4.7.12.ebuild,v 1.1 2013/05/28 19:05:31 pacho Exp $
53
54 EAPI=5
55 inherit java-pkg-opt-2 eutils
56
57 DESCRIPTION="Link Grammar Parser is a syntactic English parser."
58 HOMEPAGE="http://www.abisource.com/projects/link-grammar/ http://www.link.cs.cmu.edu/link/"
59 SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz"
60
61 LICENSE="BSD"
62 SLOT="0"
63 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
64
65 # Set the same default as used in app-text/enchant
66 IUSE="aspell +hunspell java static-libs threads"
67
68 DEPEND="aspell? ( app-text/aspell )
69 hunspell? ( app-text/hunspell )
70 java? ( >=virtual/jdk-1.5
71 dev-java/ant-core )
72 "
73 RDEPEND="${DEPEND}"
74
75 pkg_setup() {
76 java-pkg-opt-2_pkg_setup
77 if use aspell && use hunspell; then
78 ewarn "You have enabled 'aspell' and 'hunspell' support, but both cannot coexist,"
79 ewarn "only aspell will be build. Press Ctrl+C and set only 'hunspell' USE flag if"
80 ewarn "you want hunspell support."
81 fi
82 }
83
84 src_configure() {
85 local myconf
86
87 use hunspell && myconf="${myconf} --with-hunspell-dictdir=/usr/share/myspell"
88 econf \
89 --enable-shared \
90 $(use_enable aspell) \
91 $(use_enable hunspell) \
92 $(use_enable java java-bindings) \
93 $(use_enable static-libs static) \
94 $(use_enable threads pthreads) \
95 ${myconf}
96 }
97
98 src_install() {
99 default
100 prune_libtool_files
101 }