summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Rüger <mrueg@gentoo.org>2015-05-23 01:10:02 +0000
committerManuel Rüger <mrueg@gentoo.org>2015-05-23 01:10:02 +0000
commit6a7738a18ee2dfd5224c1272d2926804be52c1dd (patch)
tree55db1b0203ee0962eacea49e408d451c9b7bc7ea /media-gfx
parentRemove old. (diff)
downloadgentoo-2-6a7738a18ee2dfd5224c1272d2926804be52c1dd.tar.gz
gentoo-2-6a7738a18ee2dfd5224c1272d2926804be52c1dd.tar.bz2
gentoo-2-6a7738a18ee2dfd5224c1272d2926804be52c1dd.zip
Remove old.
(Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key )
Diffstat (limited to 'media-gfx')
-rw-r--r--media-gfx/openclipart/ChangeLog7
-rw-r--r--media-gfx/openclipart/openclipart-0.19.ebuild49
2 files changed, 5 insertions, 51 deletions
diff --git a/media-gfx/openclipart/ChangeLog b/media-gfx/openclipart/ChangeLog
index 9ffd1707132c..237735a9ea13 100644
--- a/media-gfx/openclipart/ChangeLog
+++ b/media-gfx/openclipart/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/openclipart
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/openclipart/ChangeLog,v 1.9 2014/03/05 16:10:25 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/openclipart/ChangeLog,v 1.10 2015/05/23 01:10:02 mrueg Exp $
+
+ 23 May 2015; Manuel Rüger <mrueg@gentoo.org> -openclipart-0.19.ebuild:
+ Remove old.
05 Mar 2014; Agostino Sarubbo <ago@gentoo.org> openclipart-0.20.ebuild:
Stable for ppc, wrt bug #489124
diff --git a/media-gfx/openclipart/openclipart-0.19.ebuild b/media-gfx/openclipart/openclipart-0.19.ebuild
deleted file mode 100644
index edf567f1c27f..000000000000
--- a/media-gfx/openclipart/openclipart-0.19.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/openclipart/openclipart-0.19.ebuild,v 1.4 2009/07/19 13:27:23 nixnut Exp $
-
-EAPI="2"
-
-DESCRIPTION="Open Clip Art Library (openclipart.org)"
-HOMEPAGE="http://www.openclipart.org/"
-
-SRC_URI="http://download.openclipart.org/downloads/${PV}/${P}.tar.bz2"
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE="svg png gzip"
-
-# We don't really need anything to run
-DEPEND=""
-RDEPEND=""
-
-# suggested basedir for cliparts
-CLIPART="/usr/share/clipart/${PN}"
-
-src_compile() {
- local removeext
-
- if ! use svg && ! use png; then
- elog "No image formats specified - defaulting to all (png and svg)"
- else
- ! use png && removeext="${removeext} png"
- ! use svg && removeext="${removeext} svg"
- fi
-
- for ext in ${removeext}; do
- elog "Removing ${ext} files..."
- find -name "*.${ext}" -exec rm -f {} \; \
- || die "Failed - remove"
- done
-
- if use gzip; then
- einfo "Compressing SVG files..."
- find -name "*.svg" -print0 | xargs -L 1 -0 \
- bash -c 'gzip -9c "${1}" > "${1}z"; rm -f "${1}"' --
- fi
-}
-
-src_install() {
- insinto ${CLIPART}
- doins -r .
-}