summaryrefslogtreecommitdiff
blob: e4153e43519c5058ce0dcae7a4389c08697172cc (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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

EAPI="2"

MY_PN="gluas"
MY_P="${MY_PN}-${PV}"

DESCRIPTION="Plug-in adding Lua scripting to the GIMP"
HOMEPAGE="http://pippin.gimp.org/plug-ins/gluas/"
SRC_URI="http://pippin.gimp.org/plug-ins/${MY_PN}/files/${MY_P}.tar.gz"

LICENSE="|| ( GPL-2 GPL-3 )"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

DEPEND="dev-lang/lua
	media-gfx/gimp
	x11-libs/gtk+:2
	|| ( x11-libs/gtksourceview:2.0
		x11-libs/gtksourceview:1.0 )"
RDEPEND="${DEPEND}"

S="${WORKDIR}"/${MY_P}

src_install() {
	emake DESTDIR="${D}" install || die
	dodoc BUGS NEWS HACKING TODO ChangeLog AUTHORS README || die
}