# Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: /home/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.92.ebuild,v 1.5 2003/12/30 02:46:10 weeve Exp $ DESCRIPTION="graphical scanning frontend" SRC_URI="http://www.xsane.org/download/${P}.tar.gz" HOMEPAGE="http://www.xsane.org/" SLOT="0" LICENSE="GPL-2" KEYWORDS="~x86 ~ppc amd64 ~sparc" IUSE="gtk2 nls jpeg png tiff" DEPEND="media-gfx/sane-backends || ( gtk2? ( >=x11-libs/gtk+-2.0 ) =x11-libs/gtk+-1.2* ) jpeg? ( media-libs/jpeg ) png? ( media-libs/libpng ) tiff? ( media-libs/tiff )" src_compile() { epatch ${FILESDIR}/${P}_gimp2.0.patch econf \ `use_enable nls` \ `use_enable jpeg` \ `use_enable png` \ `use_enable tiff` \ `use_enable gtk2` \ || die emake || die } src_install() { einstall || die dodoc xsane.[A-Z]* dohtml -r doc # link xsane so it is seen as a plugin in gimp for gv in 1.2 2.0; do if [ -d "/usr/lib/gimp/${gv}" ]; then dodir "/usr/lib/gimp/${gv}/plug-ins" dosym /usr/bin/xsane "/usr/lib/gimp/${gv}/plug-ins" fi done }