blob: b1e9106091ff91481d317336f3d3ae117e9a6599 (
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
|
# New ports collection makefile for: noweb
# Version required: noweb-2.7a
# Date created: 29 July 1995
# Whom: thomas@ghpc8.ihf.rwth-aachen.de
#
# $Id$
#
DISTNAME= noweb-2.7a
CATEGORIES+= development documentation
KEYWORDS+= development documentation "literate programming"
MASTER_SITES= ftp://bellcore.com/pub/norman/
EXTRACT_SUFX= .tgz
MAINTAINER= thomas@ghpc8.ihf.rwth-aachen.de
EXEC_DEPENDS= icont:${PORTSDIR}/lang/icon
WRKSRC= ${WRKDIR}/src
.if !defined(NOMANCOMPRESS)
post-install:
for i in nodefs noindex noroots notangle noweb cpif sl2h nowebstyle nuweb2noweb nowebfilters; \
do \
gzip -9nf ${PREFIX}/man/man1/$$i.1; \
done
@rm ${PREFIX}/man/man1/noweave.1*
@rm ${PREFIX}/man/man1/nountangle.1*
ln ${PREFIX}/man/man1/notangle.1.gz ${PREFIX}/man/man1/noweave.1.gz
ln ${PREFIX}/man/man1/notangle.1.gz ${PREFIX}/man/man1/nountangle.1.gz
.endif
.include <bsd.port.mk>
|