You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-ada/gtkada/gtkada-2017-r1.ebuild

61 lines
1.1 KiB

# Copyright 1999-2019 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
ADA_COMPAT=( gnat_201{6,7} )
inherit ada 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/591ae7a8c7a4473fcbb154c9
-> ${MYP}-src.tgz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="+shared static-libs"
RDEPEND="${ADA_DEPS}
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[${ADA_USEDEP}]"
REQUIRED_USE="${ADA_REQUIRED_USE}"
S="${WORKDIR}"/${MYP}-src
PATCHES=( "${FILESDIR}"/${P}-r1-gentoo.patch )
src_prepare() {
default
mv configure.{in,ac}
eautoreconf
}
src_configure() {
econf \
--prefix="${D}/usr" \
$(use_enable static-libs static) \
$(use_enable shared) \
--without-GL
}
src_compile() {
emake -j1 PROCESSORS=$(makeopts_jobs)
}
src_install() {
emake -j1 install
einstalldocs
}