diff options
author | Caleb Tennis <caleb@gentoo.org> | 2004-10-14 01:42:32 +0000 |
---|---|---|
committer | Caleb Tennis <caleb@gentoo.org> | 2004-10-14 01:42:32 +0000 |
commit | a69ebbda6b4ae11ad33fe3fe81759f47aad4e167 (patch) | |
tree | 7a178f2e42e794f77e1487857885cfec3fa7ce14 /kde-base/kdegraphics/kdegraphics-3.3.1.ebuild | |
parent | Readd ~sparc as gnokii has been ~sparc'd (diff) | |
download | historical-a69ebbda6b4ae11ad33fe3fe81759f47aad4e167.tar.gz historical-a69ebbda6b4ae11ad33fe3fe81759f47aad4e167.tar.bz2 historical-a69ebbda6b4ae11ad33fe3fe81759f47aad4e167.zip |
Version bump
Diffstat (limited to 'kde-base/kdegraphics/kdegraphics-3.3.1.ebuild')
-rw-r--r-- | kde-base/kdegraphics/kdegraphics-3.3.1.ebuild | 54 |
1 files changed, 54 insertions, 0 deletions
diff --git a/kde-base/kdegraphics/kdegraphics-3.3.1.ebuild b/kde-base/kdegraphics/kdegraphics-3.3.1.ebuild new file mode 100644 index 000000000000..3aca1e02ad89 --- /dev/null +++ b/kde-base/kdegraphics/kdegraphics-3.3.1.ebuild @@ -0,0 +1,54 @@ +# Copyright 1999-2004 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/kde-base/kdegraphics/kdegraphics-3.3.1.ebuild,v 1.1 2004/10/14 01:39:27 caleb Exp $ + +inherit kde-dist eutils + +DESCRIPTION="KDE graphics-related apps" + +KEYWORDS="~x86 ~amd64 ~ppc64 ~sparc ~ppc ~hppa" +IUSE="gphoto2 imlib jpeg2k opengl povray scanner tetex" + +DEPEND="~kde-base/kdebase-${PV} + gphoto2? ( media-gfx/gphoto2 ) + scanner? ( media-gfx/sane-backends ) + dev-libs/fribidi + opengl? ( virtual/glut virtual/opengl ) + imlib? ( media-libs/imlib ) + virtual/ghostscript + media-libs/tiff + x86? ( scanner? sys-libs/libieee1284 ) + povray? ( x86? ( media-gfx/povray ) ) + jpeg2k? ( x86? ( media-libs/jasper ) ) + !media-gfx/kolourpaint" +RDEPEND="${DEPEND} + app-text/xpdf + tetex? ( + || ( >=app-text/tetex-2 + app-text/ptex + app-text/cstetex + app-text/dvipdfm ) + )" + +src_unpack() { + kde_src_unpack +} + +src_compile() { + + use gphoto2 \ + && myconf="$myconf --with-kamera \ + --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" + + use scanner || DO_NOT_COMPILE="$DO_NOT_COMPILE kooka libkscan" + + use imlib \ + && myconf="$myconf --with-imlib --with-imlib-config=/usr/bin" \ + || myconf="$myconf --without-imlib" + + kde_src_compile +} |