You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
947 B
44 lines
947 B
# Copyright 1999-2013 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.6.1.ebuild,v 1.1 2013/07/04 11:20:00 radhermit Exp $
|
|
|
|
EAPI=5
|
|
|
|
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-1.5.2.2-makefile.patch
|
|
}
|
|
|
|
src_compile() {
|
|
emake CC="$(tc-getCXX)" CFLAGS="${CXXFLAGS}" gimp
|
|
}
|
|
|
|
src_install() {
|
|
exeinto $(gimptool-2.0 --gimpplugindir)/plug-ins
|
|
doexe gmic_gimp
|
|
dodoc ../README
|
|
}
|
|
|
|
pkg_postinst() {
|
|
elog "The G'MIC plugin is accessible from the menu:"
|
|
elog "Filters -> G'MIC"
|
|
}
|