blob: 8ce5a14f9f7f9cc6cddee810677eb3ca174f4133 (
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
|
# New ports collection makefile for: epstool
# Date created: 23 October 1999
# Whom: Yuzo FURUKAWA <hurukawa@kuee.kyoto-u.ac.jp>
#
# $FreeBSD$
#
PORTNAME= epstool
PORTVERSION= 3.08
PORTREVISION= 4
CATEGORIES= graphics
MASTER_SITES= ${MASTER_SITE_TEX_CTAN:S/$/:1/} \
ftp://mirror.cs.wisc.edu/pub/mirrors/ghost/ghostgum/:2
MASTER_SITE_SUBDIR= support/ghostscript/ghostgum/:1
DISTFILES= ${DISTNAME}${EXTRACT_SUFX}:1,2
MAINTAINER= bf@FreeBSD.org
COMMENT= Create or extract preview bitmaps in EPS files
USE_GHOSTSCRIPT_RUN= yes
USE_GMAKE= yes
MAKEFILE= makefile
MAKE_ARGS= MAKE="${GMAKE}" GSCDEBUG="" CC="${CC}" CCAUX="${CC}" \
CLINK="${CC} ${LDFLAGS}" LINK="${CC} ${LDFLAGS}" EPSLIB="" \
GTKCFLAGS="" GTKLIBS="" LIBPNGCFLAGS="" LIBPNGLIBS=""
ALL_TARGET= ${PORTNAME}
MAKE_JOBS_UNSAFE= yes
MAN1= epstool.1
PLIST_FILES= bin/epstool
LICENSE= GPLv2
.if !defined(NOPORTDOCS)
PORTDOCS= epstool.htm gsview.css
.endif
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/bin/epstool ${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/doc/epstool.1 ${MANPREFIX}/man/man1
.if !defined(NOPORTDOCS)
@${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/epstool.htm ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/doc/gsview.css ${DOCSDIR}
.endif
.include <bsd.port.mk>
|