# Copyright 1999-2010 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ EAPI="2" inherit versionator DESCRIPTION="A set of scripts for Gimp" HOMEPAGE="http://gimpfx-foundry.sourceforge.net/" MY_PV=$(replace_version_separator 2 '-') MY_P="${PN}-${MY_PV}" SRC_URI="mirror://sourceforge/project/${PN}/${PN}-scriptpack/${MY_P}/${MY_P}.tar.gz" LICENSE="GPL-1" SLOT="0" KEYWORDS="~amd64 ~x86" IUSE="" DEPEND=">=media-gfx/gimp-2.6" RDEPEND="${DEPEND}" src_install() { insinto /usr/share/gimp/2.0/scripts/ doins *.scm || die "doins failed" } pkg_postinst() { elog "All scripts are described in upstream's online documentation:" elog " http://${PN}.sourceforge.net/browse26/" }