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.8.0.ebuild ChangeLog link-grammar-4.7.12.ebuild
Date: Sat, 26 Oct 2013 19:24:22
Message-Id: 20131026192417.637D120047@flycatcher.gentoo.org
1 pacho 13/10/26 19:24:17
2
3 Modified: ChangeLog
4 Added: link-grammar-4.8.0.ebuild
5 Removed: link-grammar-4.7.12.ebuild
6 Log:
7 Version bump, drop old
8
9 (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
10
11 Revision Changes Path
12 1.65 dev-libs/link-grammar/ChangeLog
13
14 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/ChangeLog?rev=1.65&view=markup
15 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/ChangeLog?rev=1.65&content-type=text/plain
16 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/ChangeLog?r1=1.64&r2=1.65
17
18 Index: ChangeLog
19 ===================================================================
20 RCS file: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/ChangeLog,v
21 retrieving revision 1.64
22 retrieving revision 1.65
23 diff -u -r1.64 -r1.65
24 --- ChangeLog 18 Jun 2013 17:48:09 -0000 1.64
25 +++ ChangeLog 26 Oct 2013 19:24:17 -0000 1.65
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.64 2013/06/18 17:48:09 pacho Exp $
30 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/link-grammar/ChangeLog,v 1.65 2013/10/26 19:24:17 pacho Exp $
31 +
32 +*link-grammar-4.8.0 (26 Oct 2013)
33 +
34 + 26 Oct 2013; Pacho Ramos <pacho@g.o> +link-grammar-4.8.0.ebuild,
35 + -link-grammar-4.7.12.ebuild:
36 + Version bump, drop old
37
38 *link-grammar-4.7.13 (18 Jun 2013)
39
40
41
42
43 1.1 dev-libs/link-grammar/link-grammar-4.8.0.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/link-grammar-4.8.0.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/link-grammar/link-grammar-4.8.0.ebuild?rev=1.1&content-type=text/plain
47
48 Index: link-grammar-4.8.0.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.8.0.ebuild,v 1.1 2013/10/26 19:24:17 pacho Exp $
53
54 EAPI=5
55 GCONF_DEBUG="no"
56
57 inherit gnome2 java-pkg-opt-2 eutils
58
59 DESCRIPTION="A Syntactic English parser"
60 HOMEPAGE="http://www.abisource.com/projects/link-grammar/ http://www.link.cs.cmu.edu/link/"
61 SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz"
62
63 LICENSE="BSD"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
66
67 # Set the same default as used in app-text/enchant
68 IUSE="aspell +hunspell java static-libs threads"
69
70 DEPEND="
71 aspell? ( app-text/aspell )
72 hunspell? ( app-text/hunspell )
73 java? ( >=virtual/jdk-1.5
74 dev-java/ant-core )
75 "
76 RDEPEND="${DEPEND}"
77
78 pkg_setup() {
79 java-pkg-opt-2_pkg_setup
80 if use aspell && use hunspell; then
81 ewarn "You have enabled 'aspell' and 'hunspell' support, but both cannot coexist,"
82 ewarn "only aspell will be build. Press Ctrl+C and set only 'hunspell' USE flag if"
83 ewarn "you want hunspell support."
84 fi
85 }
86
87 src_configure() {
88 local myconf
89
90 use hunspell && myconf="${myconf} --with-hunspell-dictdir=/usr/share/myspell"
91 gnome2_src_configure \
92 --enable-shared \
93 $(use_enable aspell) \
94 $(use_enable hunspell) \
95 $(use_enable java java-bindings) \
96 $(use_enable static-libs static) \
97 $(use_enable threads pthreads) \
98 ${myconf}
99 }