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.
56 lines
1.1 KiB
56 lines
1.1 KiB
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-tcltk/tkzinc/tkzinc-3.3.4.ebuild,v 1.6 2014/08/10 21:26:29 slyfox Exp $
|
|
|
|
EAPI="3"
|
|
|
|
inherit autotools eutils
|
|
|
|
DESCRIPTION="A Tk widget library"
|
|
HOMEPAGE="http://www.tkzinc.org"
|
|
SRC_URI="http://www.tkzinc.org/Packages/zinc-tk_${PV}.tar.gz"
|
|
|
|
LICENSE="LGPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~ppc"
|
|
IUSE="debug doc threads"
|
|
|
|
DEPEND="
|
|
dev-lang/tk
|
|
media-libs/glew
|
|
virtual/opengl
|
|
doc? ( virtual/latex-base )"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
S="${WORKDIR}/Tkzinc"
|
|
|
|
src_prepare() {
|
|
epatch \
|
|
"${FILESDIR}"/${PV}-ldflags.patch \
|
|
"${FILESDIR}"/${P}-latex.patch
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--enable-shared \
|
|
--enable-gl=damage \
|
|
$(use_enable debug symbols) \
|
|
$(use_enable threads)
|
|
}
|
|
|
|
src_compile() {
|
|
emake || die "make failed"
|
|
if use doc ; then
|
|
emake pdf || die "make pdf files failed"
|
|
fi
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "make install failed"
|
|
|
|
dodoc BUGS README || die
|
|
dohtml -r doc/* || die
|
|
use doc && dodoc doc/refman.pdf
|
|
}
|