blob: db24126ecbedf8276b25c90e509ce1a851822ea4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-java/antlr/antlr-2.7.7-r1.ebuild,v 1.6 2013/09/05 18:27:44 mgorny Exp $
EAPI="5"
PYTHON_COMPAT=( python2_{6,7} )
DISTUTILS_OPTIONAL="y"
DISTUTILS_SINGLE_IMPL="y"
DISTUTILS_IN_SOURCE_BUILD="y"
inherit base java-pkg-2 mono autotools distutils-r1 multilib
DESCRIPTION="A parser generator for C++, C#, Java, and Python"
HOMEPAGE="http://www.antlr2.org/"
SRC_URI="http://www.antlr2.org/download/${P}.tar.gz"
LICENSE="ANTLR"
SLOT="0"
KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd"
IUSE="doc debug examples mono +cxx +java python script source"
REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
# TODO do we actually need jdk at runtime?
RDEPEND="python? ( ${PYTHON_DEPS} )
>=virtual/jdk-1.3
mono? ( dev-lang/mono )"
DEPEND="${RDEPEND}
script? ( !dev-util/pccts )
source? ( app-arch/zip )"
PATCHES=( "${FILESDIR}/2.7.7-gcc-4.3.patch" "${FILESDIR}/2.7.7-gcc-4.4.patch" "${FILESDIR}/2.7.7-makefixes.patch" )
pkg_setup() {
java-pkg-2_pkg_setup
if use python ; then
python-single-r1_pkg_setup
fi
}
src_prepare() {
base_src_prepare
# See bug #468540, this can be removed once bug #469150 is fixed.
sed -i 's/tlib lib ar/ar/' configure.in || die
eautoreconf
}
src_configure() {
# don't ask why, but this is needed for stuff to get built properly
# across the various JDKs
JAVACFLAGS="+ ${JAVACFLAGS}"
# mcs for https://bugs.gentoo.org/show_bug.cgi?id=172104
CSHARPC="mcs" econf $(use_enable java) \
$(use_enable python) \
$(use_enable mono csharp) \
$(use_enable debug) \
$(use_enable examples) \
$(use_enable cxx) \
--enable-verbose
}
src_compile() {
emake || die "compile failed"
sed -e "s|@prefix@|/usr/|" \
-e 's|@exec_prefix@|${prefix}|' \
-e "s|@libdir@|\$\{exec_prefix\}/$(get_libdir)/antlr|" \
-e 's|@libs@|-r:\$\{libdir\}/antlr.astframe.dll -r:\$\{libdir\}/antlr.runtime.dll|' \
-e "s|@VERSION@|${PV}|" \
"${FILESDIR}"/antlr.pc.in > "${S}"/antlr.pc
}
src_install() {
exeinto /usr/bin
doexe "${S}"/scripts/antlr-config
if use cxx ; then
cd "${S}"/lib/cpp
einstall || die "failed to install C++ files"
fi
if use java ; then
java-pkg_dojar "${S}"/antlr/antlr.jar
use script && java-pkg_dolauncher antlr --main antlr.Tool
use source && java-pkg_dosrc "${S}"/antlr
use doc && java-pkg_dohtml -r "${S}"/doc/*
fi
if use mono ; then
cd "${S}"/lib
dodir /usr/$(get_libdir)/antlr/
insinto /usr/$(get_libdir)/antlr/
doins antlr.astframe.dll
doins antlr.runtime.dll
insinto /usr/$(get_libdir)/pkgconfig
doins "${S}"/antlr.pc
fi
if use python ; then
pushd "${S}"/lib/python > /dev/null
distutils-r1_python_install
popd > /dev/null
fi
if use examples ; then
find "${S}"/examples -iname Makefile\* -exec rm \{\} \;
dodir /usr/share/doc/${PF}/examples
insinto /usr/share/doc/${PF}/examples
use cxx && doins -r "${S}"/examples/cpp
use java && doins -r "${S}"/examples/java
use mono && doins -r "${S}"/examples/csharp
use python && doins -r "${S}"/examples/python
fi
newdoc "${S}"/README.txt README || die
}
|