summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2014-12-04 09:50:42 +0000
committerManuel Rüger <mrueg@gentoo.org>2014-12-04 09:50:42 +0000
commit85a7cefafc23889c622ced07144073b3ee000c73 (patch)
tree4e3356b365ec48c9026d3efda67faea20bc9588e /media-gfx/xsane
parentVersion bump. (diff)
downloadgentoo-2-85a7cefafc23889c622ced07144073b3ee000c73.tar.gz
gentoo-2-85a7cefafc23889c622ced07144073b3ee000c73.tar.bz2
gentoo-2-85a7cefafc23889c622ced07144073b3ee000c73.zip
Cleanup old. Fixes bug #526858.
(Portage version: 2.2.15/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'media-gfx/xsane')
-rw-r--r--media-gfx/xsane/ChangeLog5
-rw-r--r--media-gfx/xsane/xsane-0.999.ebuild80
2 files changed, 4 insertions, 81 deletions
diff --git a/media-gfx/xsane/ChangeLog b/media-gfx/xsane/ChangeLog
index 125f573da72b..2f6ee237596e 100644
--- a/media-gfx/xsane/ChangeLog
+++ b/media-gfx/xsane/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/xsane
# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/ChangeLog,v 1.119 2014/12/04 08:36:58 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/ChangeLog,v 1.120 2014/12/04 09:50:42 mrueg Exp $
+
+ 04 Dec 2014; Manuel Rüger <mrueg@gentoo.org> -xsane-0.999.ebuild:
+ Cleanup old. Fixes bug #526858.
04 Dec 2014; Agostino Sarubbo <ago@gentoo.org> xsane-0.999-r1.ebuild:
Stable for ppc64, wrt bug #526922
diff --git a/media-gfx/xsane/xsane-0.999.ebuild b/media-gfx/xsane/xsane-0.999.ebuild
deleted file mode 100644
index d0e8e63ec730..000000000000
--- a/media-gfx/xsane/xsane-0.999.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/xsane/xsane-0.999.ebuild,v 1.7 2014/01/18 19:55:52 ago Exp $
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="graphical scanning frontend"
-HOMEPAGE="http://www.xsane.org/"
-SRC_URI="http://www.xsane.org/download/${P}.tar.gz
- http://dev.gentoo.org/~dilfridge/distfiles/${PN}-0.998-patches-2.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ppc ppc64 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE="nls jpeg png tiff gimp lcms ocr"
-
-RDEPEND="media-gfx/sane-backends
- x11-libs/gtk+:2
- x11-misc/xdg-utils
- jpeg? ( virtual/jpeg )
- png? ( media-libs/libpng )
- tiff? ( media-libs/tiff )
- gimp? ( media-gfx/gimp )
- lcms? ( =media-libs/lcms-1* )"
-
-PDEPEND="ocr? ( app-text/gocr )"
-
-DEPEND="${RDEPEND}
- virtual/pkgconfig"
-
-src_prepare() {
- # Apply multiple fixes from different distributions
- # Drop included patch and reuse patchset from prior version
- rm "${WORKDIR}/${PN}-0.998-patches-2"/005-update-param-crash.patch || die
- epatch "${WORKDIR}/${PN}-0.998-patches-2"/*.patch
-
- # Fix compability with libpng15 wrt #377363
- sed -i -e 's:png_ptr->jmpbuf:png_jmpbuf(png_ptr):' src/xsane-save.c || die
-
- # Fix AR calling directly (bug #442606)
- sed -i -e 's:ar r:$(AR) r:' lib/Makefile.in || die
- tc-export AR
-}
-
-src_configure() {
- local extraCPPflags
- if use lcms; then
- extraCPPflags="-I ${EPREFIX}/usr/include/lcms"
- fi
- CPPFLAGS="${CPPFLAGS} ${extraCPPflags}" econf --enable-gtk2 \
- $(use_enable nls) \
- $(use_enable jpeg) \
- $(use_enable png) \
- $(use_enable tiff) \
- $(use_enable gimp) \
- $(use_enable lcms)
-}
-
-src_install() {
- emake DESTDIR="${D}" install
- dodoc xsane.*
-
- # link xsane so it is seen as a plugin in gimp
- if use gimp; then
- local plugindir
- if [ -x "${EPREFIX}"/usr/bin/gimptool ]; then
- plugindir="$(gimptool --gimpplugindir)/plug-ins"
- elif [ -x "${EPREFIX}"/usr/bin/gimptool-2.0 ]; then
- plugindir="$(gimptool-2.0 --gimpplugindir)/plug-ins"
- else
- die "Can't find GIMP plugin directory."
- fi
- dodir "${plugindir#${EPREFIX}}"
- dosym /usr/bin/xsane "${plugindir#${EPREFIX}}"/xsane
- fi
-
- newicon src/xsane-48x48.png ${PN}.png
-}