forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gtkada-2016.ebuild
69 lines (56 loc) · 1.41 KB
/
gtkada-2016.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
67
68
69
# Copyright 1999-2017 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=6
inherit autotools multiprocessing
MYP=${PN}-gpl-${PV}
DESCRIPTION="A complete Ada graphical toolkit"
HOMEPAGE="http://libre.adacore.com//tools/gtkada/"
SRC_URI="http://mirrors.cdn.adacore.com/art/5739985fc7a447658e0affae
-> ${MYP}-src.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE="+shared static"
RDEPEND="dev-lang/gnat-gpl
dev-libs/atk
dev-libs/glib:2
media-libs/fontconfig
media-libs/freetype
x11-libs/cairo
x11-libs/gdk-pixbuf:2
x11-libs/gtk+:3
x11-libs/pango"
DEPEND="${RDEPEND}
dev-ada/gprbuild"
S="${WORKDIR}"/${MYP}-src
PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
pkg_setup() {
GCC=${ADA:-$(tc-getCC)}
export GNATPREP="${GCC/gcc/gnatprep}"
if [[ -z "$(type ${GNATPREP} 2>/dev/null)" ]] ; then
eerror "You need a gcc compiler that provides the Ada Compiler:"
eerror "1) use gcc-config to select the right compiler or"
eerror "2) set ADA=gcc-4.9.4 in make.conf"
die "ada compiler not available"
fi
}
src_prepare() {
default
mv configure.{in,ac}
eautoreconf
}
src_configure() {
econf \
$(use_enable static) \
$(use_enable shared) \
--without-GL
}
src_compile() {
emake -j1 PROCESSORS=$(makeopts_jobs)
}
src_install() {
emake -j1 DESTDIR="${D}" install
einstalldocs
mv "${D}"usr/share/doc/${PN}/* "${D}"usr/share/doc/${PF} || die
rmdir "${D}"usr/share/doc/${PN}
}