blob: d2e096dd7db06b841df6cd103b149bcce9e922c9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-gmic/gimp-gmic-1.5.0.7.ebuild,v 1.1 2011/12/06 09:39:50 radhermit Exp $
EAPI="4"
inherit eutils toolchain-funcs
DESCRIPTION="G'MIC GIMP plugin"
HOMEPAGE="http://gmic.sourceforge.net/gimp.shtml"
SRC_URI="mirror://sourceforge/gmic/gmic_${PV}.tar.gz"
LICENSE="CeCILL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=media-gfx/gimp-2.4.0
media-libs/libpng
sci-libs/fftw:3.0
sys-libs/zlib"
DEPEND="${RDEPEND}"
S="${WORKDIR}/gmic-${PV}/src"
src_prepare() {
epatch "${FILESDIR}"/gmic-${PV}-makefile.patch
}
src_compile() {
emake CC="$(tc-getCXX)" gimp
}
src_install() {
exeinto $(gimptool-2.0 --gimpplugindir)/plug-ins
doexe gmic_gimp
dodoc ../{AUTHORS,README}
}
pkg_postinst() {
elog "The G'MIC plugin is accessible from the menu:"
elog "Filters -> G'MIC"
}
|