forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
astyle-2.04-r1.ebuild
66 lines (52 loc) · 1.51 KB
/
astyle-2.04-r1.ebuild
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
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils java-pkg-opt-2 multilib toolchain-funcs
DESCRIPTION="Artistic Style is a reindenter and reformatter of C++, C and Java source code"
HOMEPAGE="http://astyle.sourceforge.net/"
SRC_URI="mirror://sourceforge/astyle/astyle_${PV}_linux.tar.gz"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="amd64 ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
IUSE="doc java static-libs"
DEPEND="app-arch/xz-utils
java? ( >=virtual/jdk-1.6:= )"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${PN}
pkg_setup() {
java-pkg-opt-2_pkg_setup
tc-export CXX
}
src_prepare() {
epatch "${FILESDIR}"/${PN}-2.02.1-build_system.patch
java-pkg-opt-2_src_prepare
sed -e "s:^\(JAVAINCS\s*\)=.*$:\1= $(java-pkg_get-jni-cflags):" \
-e "s:ar crs:$(tc-getAR) crs:" \
-i build/gcc/Makefile || die
}
src_compile() {
emake -f ../build/gcc/Makefile -C src \
${PN} \
shared \
$(usex java java '') \
$(usex static-libs static '')
}
src_install() {
insinto /usr/include
doins src/${PN}.h
pushd src/bin &> /dev/null
dobin ${PN}
dolib.so lib${PN}.so.0.0.0
dosym lib${PN}.so.0.0.0 /usr/$(get_libdir)/lib${PN}.so.0
dosym lib${PN}.so.0.0.0 /usr/$(get_libdir)/lib${PN}.so
if use java ; then
dolib.so lib${PN}j.so.0.0.0
dosym lib${PN}j.so.0.0.0 /usr/$(get_libdir)/lib${PN}j.so.0
dosym lib${PN}j.so.0.0.0 /usr/$(get_libdir)/lib${PN}j.so
fi
if use static-libs ; then
dolib lib${PN}.a
fi
popd &> /dev/null
use doc && dohtml doc/*
}