summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Sturmlechner <asturm@gentoo.org>2018-04-04 21:15:47 +0200
committerAndreas Sturmlechner <asturm@gentoo.org>2018-04-05 01:42:12 +0200
commitc46578c5e2ff319716a848aed5f14a1fe485b450 (patch)
treed267966552986dba25a530d0954a90ada7aea203 /media-gfx/photivo/photivo-0_pre20131115.ebuild
parentx11-wm/aewm++: update to EAPI6 (diff)
downloadgentoo-c46578c5e2ff319716a848aed5f14a1fe485b450.tar.gz
gentoo-c46578c5e2ff319716a848aed5f14a1fe485b450.tar.bz2
gentoo-c46578c5e2ff319716a848aed5f14a1fe485b450.zip
media-gfx/photivo: Remove last-rited package
Closes: https://bugs.gentoo.org/644396 Closes: https://bugs.gentoo.org/635192 Closes: https://bugs.gentoo.org/598651
Diffstat (limited to 'media-gfx/photivo/photivo-0_pre20131115.ebuild')
-rw-r--r--media-gfx/photivo/photivo-0_pre20131115.ebuild69
1 files changed, 0 insertions, 69 deletions
diff --git a/media-gfx/photivo/photivo-0_pre20131115.ebuild b/media-gfx/photivo/photivo-0_pre20131115.ebuild
deleted file mode 100644
index f258013d4bf7..000000000000
--- a/media-gfx/photivo/photivo-0_pre20131115.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit qt4-r2
-
-DESCRIPTION="Photo processor for RAW and Bitmap images"
-HOMEPAGE="http://www.photivo.org"
-SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gimp"
-
-RDEPEND="dev-qt/qtcore:4
- dev-qt/qtgui:4
- || ( virtual/jpeg:62 media-libs/jpeg:62 )
- media-gfx/exiv2
- media-libs/tiff
- media-libs/libpng
- media-libs/cimg
- media-libs/lcms:2
- >=media-libs/lensfun-0.2.8-r1
- sci-libs/fftw:3.0
- media-libs/liblqr
- media-gfx/graphicsmagick[q16,-lcms]
- gimp? ( media-gfx/gimp )"
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${PN}-${PV/0_pre/}
-
-src_prepare() {
- # remove ccache dependency and fix lensfun header path
- local File
- for File in $(find "${S}" -type f); do
- if grep -sq ccache ${File}; then
- sed -e 's/ccache//' -i "${File}"
- fi
- if grep -sq "lensfun.h" ${File}; then
- sed -e 's/lensfun\.h/lensfun\/lensfun.h/' -i ${File}
- fi
- done
-
- # useless check (no pkgconfig file is provided)
- sed -e "/PKGCONFIG += CImg/d" \
- -i photivoProject/photivoProject.pro || die
- qt4-r2_src_prepare
-}
-
-src_configure() {
- local config="WithSystemCImg"
- if use gimp ; then
- config+=" WithGimp"
- fi
-
- eqmake4 "CONFIG+=${config}"
-}
-
-src_install() {
- qt4-r2_src_install
-
- if use gimp; then
- exeinto $(gimptool-2.0 --gimpplugindir)/plug-ins
- doexe ptGimp
- doexe "mm extern photivo.py"
- fi
-}