blob: a39c05b404da33335f4e61076a3730de7fc34389 (
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
|
# $NetBSD: Makefile,v 1.18 2002/09/10 12:35:07 markd Exp $
#
DISTNAME= psiconv-0.8.2
PKGREVISION= 2
CATEGORIES= converters
MASTER_SITES= http://huizen.dds.nl/~frodol/psiconv/
MAINTAINER= sakamoto@netbsd.org
HOMEPAGE= http://huizen.dds.nl/~frodol/psiconv/
COMMENT= PSION 5 file format data conversion utilities
USE_BUILDLINK2= YES
USE_LIBTOOL= YES
USE_X11= YES
LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig
GNU_CONFIGURE= YES
CPPFLAGS+= -DIMAGEMAGICK
DOCDIR= ${PREFIX}/share/doc/psiconv
post-install:
${INSTALL_DATA_DIR} ${DOCDIR}
cd ${WRKSRC}/docs; for file in ascii html html4; do \
${INSTALL_DATA} $${file} ${DOCDIR}; \
done
.include "../../graphics/ImageMagick/buildlink2.mk"
.include "../../mk/bsd.pkg.mk"
|