summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPatrick Kursawe <phosphan@gentoo.org>2008-01-19 20:56:19 +0000
committerPatrick Kursawe <phosphan@gentoo.org>2008-01-19 20:56:19 +0000
commit203a4617d82d03ffc0ea00799889837b219364a2 (patch)
treeb561dee1d597c3baa18755d49fc91fa3af0777cc /media-gfx/xsane
parentVersion bump, bug #201432 (diff)
downloadgentoo-2-203a4617d82d03ffc0ea00799889837b219364a2.tar.gz
gentoo-2-203a4617d82d03ffc0ea00799889837b219364a2.tar.bz2
gentoo-2-203a4617d82d03ffc0ea00799889837b219364a2.zip
Cleanup
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-gfx/xsane')
-rw-r--r--media-gfx/xsane/ChangeLog5
-rw-r--r--media-gfx/xsane/files/digest-xsane-0.9913
-rw-r--r--media-gfx/xsane/xsane-0.991.ebuild74
3 files changed, 4 insertions, 78 deletions
diff --git a/media-gfx/xsane/ChangeLog b/media-gfx/xsane/ChangeLog
index 7bb790fad454..f1de27809e93 100644
--- a/media-gfx/xsane/ChangeLog
+++ b/media-gfx/xsane/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/xsane
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/ChangeLog,v 1.64 2008/01/19 20:51:20 phosphan Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/ChangeLog,v 1.65 2008/01/19 20:56:18 phosphan Exp $
+
+ 19 Jan 2008; Patrick Kursawe <phosphan@gentoo.org> -xsane-0.991.ebuild:
+ Cleanup
*xsane-0.995 (19 Jan 2008)
diff --git a/media-gfx/xsane/files/digest-xsane-0.991 b/media-gfx/xsane/files/digest-xsane-0.991
deleted file mode 100644
index 198b69f75675..000000000000
--- a/media-gfx/xsane/files/digest-xsane-0.991
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 cded872f2e7041f4a0f2dc4f0bbc5a77 xsane-0.991.tar.gz 2930784
-RMD160 a1ef5315914e6525c0667bf253aff25d01ccb644 xsane-0.991.tar.gz 2930784
-SHA256 e239286b5a934267ad55c481b697013cec51b9428022454d424abd994341cbee xsane-0.991.tar.gz 2930784
diff --git a/media-gfx/xsane/xsane-0.991.ebuild b/media-gfx/xsane/xsane-0.991.ebuild
deleted file mode 100644
index 9f45f614d498..000000000000
--- a/media-gfx/xsane/xsane-0.991.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.991.ebuild,v 1.12 2007/06/07 11:02:58 armin76 Exp $
-
-inherit eutils
-
-DESCRIPTION="graphical scanning frontend"
-HOMEPAGE="http://www.xsane.org/"
-SRC_URI="http://www.xsane.org/download/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~ia64 ppc ppc64 sparc x86"
-IUSE="nls jpeg png tiff gimp"
-
-RDEPEND="media-gfx/sane-backends
- >=x11-libs/gtk+-2.0
- jpeg? ( media-libs/jpeg )
- png? ( media-libs/libpng )
- tiff? ( media-libs/tiff )
- gimp? ( media-gfx/gimp )"
-
-DEPEND="${RDEPEND}
- dev-util/pkgconfig"
-
-pkg_setup() {
- export OLDXSANE
- if has_version '<=media-gfx/xsane-0.93'; then
- OLDXSANE="yes"
- else
- OLDXSANE="no"
- fi
-}
-
-src_compile() {
- econf --enable-gtk2 \
- $(use_enable nls) \
- $(use_enable jpeg) \
- $(use_enable png) \
- $(use_enable tiff) \
- $(use_enable gimp) \
- || 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
- if use gimp; then
- local plugindir
- if [ -x /usr/bin/gimptool ]; then
- plugindir="$(gimptool --gimpplugindir)/plug-ins"
- elif [ -x /usr/bin/gimptool-2.0 ]; then
- plugindir="$(gimptool-2.0 --gimpplugindir)/plug-ins"
- else
- die "Can't find GIMP plugin directory."
- fi
- dodir "${plugindir}"
- dosym /usr/bin/xsane "${plugindir}"
- fi
- newicon src/xsane-48x48.png ${PN}.png
- make_desktop_entry xsane "X-Sane" ${PN}
-}
-
-pkg_postinst() {
- if [ x${OLDXSANE} = 'xyes' ]; then
- ewarn "If you are upgrading from <=xsane-0.93, please make sure to"
- ewarn "remove ~/.sane/xsane/xsane.rc _before_ you start xsane for"
- ewarn "the first time."
- fi
-}