blob: 5e2a467a03c6e171f611c24820947e6d817b5b13 (
plain) (
blame)
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
|
# Created by: Oliver Breuninger <ob@seicom.NET>
# $FreeBSD$
PORTNAME= pstotext
PORTVERSION= 1.9
PORTREVISION= 6
CATEGORIES= print
MASTER_SITES= http://ftp.gwdg.de/pub/ghostscript/contrib/ \
http://ftp.sunet.se/pub/text-processing/postscript/interpreters/ghostscript/contrib/ \
http://gd.tuwien.ac.at/pub/publishing/ghostscript/contrib/ \
http://fossies.org/unix/misc/
MAINTAINER= ports@FreeBSD.org
COMMENT= PostScript to Text converter
LICENSE= EULA
LICENSE_NAME= End User License Agreement
LICENSE_FILE= ${WRKSRC}/pstotext.txt
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
USES= ghostscript:run
SUB_LIST= LICENSE=${LICENSE} \
LICENSE_DIR=${_LICENSE_DIR}
PLIST_FILES= bin/pstotext \
man/man1/pstotext.1.gz
post-patch:
@${REINPLACE_CMD} ${SUB_LIST:S/$/!g/:S/^/ -e s!%%/:S/=/%%!/} \
${WRKSRC}/main.c \
${WRKSRC}/pstotext.1
do-install:
${INSTALL_PROGRAM} ${WRKSRC}/pstotext ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/pstotext.1 ${STAGEDIR}${MAN1PREFIX}/man/man1
.include <bsd.port.mk>
|