blob: b42fcec8ed5a457a1dcc9218b539858749fbe180 (
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
|
# Created by: Chris D. Faulhaber <jedgar@fxp.org>
# $FreeBSD$
PORTNAME= code2html
PORTVERSION= 0.9.1
PORTREVISION= 1
CATEGORIES= textproc
MASTER_SITES= SF \
http://www.palfrader.org/code2html/all/
MAINTAINER= ports@FreeBSD.org
COMMENT= Sourcecode to HTML converter
NO_BUILD= yes
USES= perl5 shebangfix
USE_PERL5= run
SHEBANG_FILES= code2html
PLIST_FILES= bin/code2html man/man1/code2html.1.gz
do-configure:
@${REINPLACE_CMD} \
-e 's|/usr/bin/bzip2|${BZIP2_CMD}|' \
-e 's|/bin/gzip|/usr/bin/gzip|' \
-e 's|/etc/|${PREFIX}/etc/|' \
${WRKSRC}/code2html
@${REINPLACE_CMD} -e 's|/etc/|${PREFIX}/etc/|' \
${WRKSRC}/code2html.1
do-install:
${INSTALL_SCRIPT} ${WRKSRC}/code2html ${STAGEDIR}${PREFIX}/bin
${INSTALL_MAN} ${WRKSRC}/code2html.1 ${STAGEDIR}${PREFIX}/man/man1
.include <bsd.port.mk>
|