blob: e6ae6971d694a2a885fa133e8543a58ce8b03e5c (
plain)
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Dan Armak <danarmak@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegraphics/kdegraphics-2.2.2.ebuild,v 1.4 2002/04/12 17:01:59 seemant Exp $
. /usr/portage/eclass/inherit.eclass || die
inherit kde-dist || die
DESCRIPTION="${DESCRIPTION}Graphics"
DEPEND="$DEPEND sys-devel/perl
media-gfx/sane-backends
tetex? ( >=app-text/tetex-1.0.7 )"
newdepend "gphoto2? ( >=media-gfx/gphoto2-2.0_beta1 >=media-libs/libgpio-20010607 )"
src_compile() {
kde_src_compile myconf
use gphoto2 && myconf="$myconf --with-gphoto2-includes=/usr/include/gphoto2 --with-gphoto2-libraries=/usr/lib/gphoto2" || myconf="$myconf --without-kamera"
use tetex && myconf="$myconf --with-system-kpathsea --with-tex-datadir=/usr/share"
kde_src_compile configure make
}
|