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