7112ba2b40
USE_MOTIF and generates a LIB_DEPENDS to x11-toolkits/open-motif. As before, it implies USE_XPM (and therefore USE_XLIB). Motif-dummy is removed from PKG_IGNORE_DEPENDS, whose sole resident is now XFree86-3. Most of the simple ".if defined(HAVE_MOTIF)"s are removed to always have USE_MOTIF. ftp/moxftp will define USE_MOTIF unless WANT_ATHENA_VERSION (new variable) is defined. I merged the X cases in cad/mars, so USE_MOTIF is used iff WITHOUT_X11 is not defined. I will remove x11-toolkits/Motif-dummy (which has been repo copied to open-motif) in a few days.
42 lines
871 B
Makefile
42 lines
871 B
Makefile
# 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>
|