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-libs/vdk/vdk-2.5.1.ebuild

55 lines
1.4 KiB

# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/vdk/vdk-2.5.1.ebuild,v 1.3 2015/02/20 09:25:54 zlogene Exp $
EAPI=5
inherit eutils toolchain-funcs
DESCRIPTION="A Visual Development Kit for RAD"
SRC_URI="mirror://sourceforge/vdklib/${P}.tar.gz"
HOMEPAGE="http://www.mariomotta.it/vdklib/"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="~amd64 ~hppa ppc x86"
IUSE="doc debug"
RDEPEND="x11-libs/gtk+:2"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
src_configure() {
local myconf=""
# gnome and sigc USE flags need to be added later
# when upstream decides to re-support them - ChrisWhite
use doc && \
myconf="${myconf} --enable-doc-html=yes \
--enable-doc-latex=yes \
--enable-doc-man=yes" \
|| myconf="${myconf} --enable-doc-html=no \
--enable-doc-latex=no \
--enable-doc-man=no"
use debug && \
myconf="${myconf} --enable-debug=yes" \
|| myconf="${myconf} --enable-debug=no"
econf \
${myconf} \
--enable-testvdk=no \
|| die "econf failed"
# die non user custom CFLAGS!
sed -e "s/CFLAGS = .*/CFLAGS = ${CFLAGS}/" -i Makefile
sed -e "s/CXXFLAGS = .*/CXXFLAGS = ${CXXFLAGS}/" -i Makefile
sed -e "s/CFLAGS = .*/CFLAGS = ${CFLAGS}/" -i vdk/Makefile
sed -e "s/CXXFLAGS = .*/CXXFLAGS = ${CXXFLAGS}/" -i vdk/Makefile
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS BUGS ChangeLog INSTALL NEWS README TODO
}