blob: 49bb278d50853d13ada755117fe0c3d7220b8fea (
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
32
33
34
|
# $NetBSD: Makefile,v 1.30 2011/01/13 13:38:05 wiz Exp $
#
DISTNAME= wideangle
PKGNAME= gimp2-wideangle-1.0
PKGREVISION= 20
CATEGORIES= graphics
MASTER_SITES= http://members.ozemail.com.au/~hodsond/
EXTRACT_SUFX= .c
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://members.ozemail.com.au/~hodsond/wideangle.html
COMMENT= GIMP plugin for wideangle lens distortions
PKG_DESTDIR_SUPPORT= user-destdir
USE_TOOLS+= pkg-config
DIST_SUBDIR= ${PKGNAME_NOREV}
WRKSRC= ${WRKDIR}
LINK_PTHREAD= ${PTHREAD_LDFLAGS} ${PTHREAD_LIBS}
do-build:
(cd ${WRKSRC} && LIBS=${LINK_PTHREAD:Q} gimptool-2.0 --build wideangle.c)
do-install:
plugindir=`gimptool-2.0 --gimpplugindir` && \
${INSTALL_DATA_DIR} ${DESTDIR}$${plugindir}/plug-ins && \
${INSTALL_PROGRAM} ${WRKSRC}/wideangle ${DESTDIR}$${plugindir}/plug-ins
.include "../../graphics/gimp/buildlink3.mk"
.include "../../mk/pthread.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|