blob: 6fc2316cd7708b4f92325ed4a8db145b8bcb5c40 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
# $NetBSD: Makefile,v 1.46 2010/01/17 12:02:21 wiz Exp $
DISTNAME= pstoedit-3.45
PKGREVISION= 5
CATEGORIES= converters graphics print
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=pstoedit/}
MAINTAINER= pkgsrc-users@NetBSD.org
HOMEPAGE= http://www.pstoedit.net/
COMMENT= Convert PostScript / PDF into various vector graphic formats
LICENSE= unclear-license
# man page indicates that there are many licenses and one has to read all
# the source files
RESTRICTED= license is unclear
RESTRICTED?= "The author writes: If you include this program on a CDROM, please send me a copy of the CD, or if it goes with a book, of the book."
NO_SRC_ON_FTP= ${RESTRICTED}
NO_BIN_ON_FTP= ${RESTRICTED}
NO_SRC_ON_CDROM= ${RESTRICTED}
NO_BIN_ON_CDROM= ${RESTRICTED}
PKG_DESTDIR_SUPPORT= user-destdir
MAKE_JOBS_SAFE= no
USE_TOOLS+= gs:run
USE_LIBTOOL= yes
USE_LANGUAGES= c c++
GNU_CONFIGURE= yes
CONFIGURE_ENV+= CXXFLAGS="${CFLAGS} -Dunix"
CONFIGURE_ENV+= ac_cv_path_GS=${LOCALBASE}/bin/gs
# needs libEMF which has build problems on alpha and probably
# other 64-bit systems
CONFIGURE_ARGS+=--without-emf
CONFIGURE_ARGS+=--datadir=${PREFIX}/share
CONFIGURE_ARGS+=--libdir=${PREFIX}/lib/pstoedit # plugin dir -- unused for now
BUILD_TARGET=
LIBS.SunOS+= -ldl
DOCDIR= ${PREFIX}/share/doc/pstoedit
HTMLDIR= ${PREFIX}/share/doc/html/pstoedit
DOCSRC= ${WRKSRC}/doc
INSTALLATION_DIRS= ${DOCDIR} ${HTMLDIR}
post-install:
for f in ${DOCSRC}/*.htm; do \
${INSTALL_DATA} $${f} ${DESTDIR}${HTMLDIR}; \
done
${INSTALL_DATA} ${DOCSRC}/readme.txt ${DESTDIR}${DOCDIR}
.include "../../graphics/gd/buildlink3.mk"
.include "../../graphics/ImageMagick/buildlink3.mk"
.include "../../graphics/plotutils/buildlink3.mk"
.include "../../graphics/png/buildlink3.mk"
.include "../..//multimedia/ming/buildlink3.mk"
.include "../../mk/bsd.pkg.mk"
|