blob: 7caf94284c7a632d4cb3363d855f16edf9978969 (
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
39
40
41
|
# New ports collection makefile for: tcpillust
# Date created: 14 April 2000
# Whom: nishida@csl.sony.co.jp
#
# $FreeBSD$
#
PORTNAME= tcpillust
PORTVERSION= 1.0a
CATEGORIES= net tk82 tcl82
MASTER_SITES= ftp://ftp.csl.sony.co.jp/CSL/nishida/
MAINTAINER= nishida@csl.sony.co.jp
LIB_DEPENDS= tk82.1:${PORTSDIR}/x11-toolkits/tk82 \
tcl82.1:${PORTSDIR}/lang/tcl82
USE_IMAKE= yes
GNU_CONFIGURE= yes
CONFIGURE_ARGS=
USE_MOTIF= yes
MAN1= tcpillust.1
DOCS= README
SAMPLES= tcpclient.log tcpserver.log
post-install:
.if !defined(NOPORTDOCS)
${MKDIR} ${PREFIX}/share/doc/tcpillust
for i in $(DOCS); do \
${INSTALL_DATA} ${WRKSRC}/$$i ${PREFIX}/share/doc/tcpillust; \
done
${MKDIR} ${PREFIX}/share/doc/tcpillust/sample
for i in $(SAMPLES); do \
${INSTALL_DATA} ${WRKSRC}/sample/$$i ${PREFIX}/share/doc/tcpillust/sample; \
done
.endif
.include <bsd.port.mk>
|