blob: 92652eb9f43c866ffba7ee525e98d70c5139d184 (
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
|
# $NetBSD: Makefile,v 1.25 2004/04/12 09:17:00 xtraeme Exp $
#
DISTNAME= psiconv-0.8.3
PKGREVISION= 1
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_BUILDLINK3= YES
USE_X11= YES
USE_LIBTOOL= YES
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/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|