blob: 803b271c821d48e497beb4030b8e34d343f5c937 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/gimp-lensfun/gimp-lensfun-0.2.2.ebuild,v 1.1 2012/09/30 10:35:57 hwoarang Exp $
EAPI="4"
MY_PN="gimplensfun"
MY_P="${MY_PN}-${PV}"
DESCRIPTION="Lensfun plugin for GIMP"
HOMEPAGE="http://lensfun.sebastiankraft.net/"
SRC_URI="http://lensfun.sebastiankraft.net/${MY_P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
RDEPEND="media-gfx/gimp
media-gfx/exiv2
media-libs/lensfun"
DEPEND="${RDEPEND}"
S="${WORKDIR}/${MY_P}"
src_install() {
exeinto $(gimptool-2.0 --gimpplugindir)/plug-ins
doexe ${MY_PN}
}
|