blob: f66b2745586857713852bbd4a0259b123f671532 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
DESCRIPTION="GIMP plugin to generate large textures from a small sample"
HOMEPAGE="http://gimp-texturize.sourceforge.net/"
SRC_URI="mirror://sourceforge/gimp-texturize/texturize-${PV}_src.tgz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=media-gfx/gimp-2.4"
DEPEND="${RDEPEND}"
S="$WORKDIR/gimp-texturize"
src_install() {
emake DESTDIR="${D}" install || die "unable to install"
dodoc AUTHORS bugs ChangeLog NEWS README todo || die "unable to install documentation"
}
|