pkgsrc/graphics/gimp-high-pass-filter/Makefile
wiz c3baf474e3 Import gimp-high-pass-filter-1.2 as graphics/gimp-high-pass-filter.
Packaged for wip by othyro.

A general purpose high-pass filter plugin. It shows up as
Filters->Generic->High Pass Filter. You can select a blur radius that sets the
size of detail to be passed by the filter, a contrast adjustment, as well as an
option to keep the source layer or replace it.

It actually implements 5 different high pass modes:

	1. Colour - I think this is the same as photoshop's high pass filter effect.
	2. Preserve DC - like colour, but adds the average image colour back in.
	3. Greyscale - this desaturates the layer before high pass filtering.
	4. Greyscale, Apply Chroma - as above, but blends it in with the source
		layer colours
	5. Redrobes - (named after the technique described by Redrobes)
2013-01-23 21:53:39 +00:00

32 lines
731 B
Makefile

# $NetBSD: Makefile,v 1.1 2013/01/23 21:53:39 wiz Exp $
#
DISTNAME= high-pass
PKGNAME= gimp-${DISTNAME}-filter-1.2
CATEGORIES= graphics
MASTER_SITES= http://registry.gimp.org/files/
EXTRACT_SUFX= .scm
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://registry.gimp.org/node/7385
COMMENT= General purpose high-pass filter plugin for GIMP
LICENSE= gnu-gpl-v2
WRKSRC= ${WRKDIR}/high-pass.scm
USE_LANGUAGES= # none
DEPENDS+= gimp>=2.0:../../graphics/gimp
WRKSRC= ${WRKDIR}
NO_CONFIGURE= yes
NO_BUILD= yes
DIST_SUBDIR= ${PKGNAME_NOREV}
INSTALLATION_DIRS= share/gimp/2.0/scripts
do-install:
${INSTALL_DATA} ${WRKSRC}/${DISTNAME}${EXTRACT_SUFX} \
${DESTDIR}${PREFIX}/share/gimp/2.0/scripts
.include "../../mk/bsd.pkg.mk"