blob: 164aa17f7b865334f144256b42da9e6e909155f7 (
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
35
36
37
38
39
40
41
|
# $NetBSD: Makefile,v 1.41 2011/11/01 06:01:32 sbd Exp $
DISTNAME= fly-1.6.5
PKGREVISION= 14
CATEGORIES= graphics www
MASTER_SITES= # ftp://www.unimelb.edu.au/pub/www/tools/unix/fly/
MAINTAINER= bouyer@NetBSD.org
HOMEPAGE= http://www.unimelb.edu.au/fly/fly.html
COMMENT= Command-file interface for creating and modifying PNG images
BUILD_DEPENDS+= gif2png>=2.4.2:../../graphics/gif2png
PKG_DESTDIR_SUPPORT= user-destdir
USE_TOOLS+= perl:run
REPLACE_PERL= examples/cgi-perl-example.pl \
examples/fly-tester.pl \
examples/size.pl \
examples/perl.example
INSTALLATION_DIRS= bin
SUBST_CLASSES+= prefix
SUBST_STAGE.prefix= pre-configure
SUBST_FILES.prefix= examples/cgi-perl-example.pl
SUBST_VARS.prefix= PREFIX
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/fly ${DESTDIR}${PREFIX}/bin
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/doc/fly
${INSTALL_DATA_DIR} ${DESTDIR}${PREFIX}/share/examples/fly
cd ${WRKSRC}/doc; ${LOCALBASE}/bin/gif2png *.gif
cd ${WRKSRC}/doc; ${INSTALL_DATA} *.html *.png \
${DESTDIR}${PREFIX}/share/doc/fly
${RM} -f ${WRKSRC}/examples/*.orig
cd ${WRKSRC}/examples; ${INSTALL_DATA} * \
${DESTDIR}${PREFIX}/share/examples/fly
.include "../../graphics/gd/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|