9938e91b30
(1) Use submitter's full address in Whom: line. (2) Move WRKSRC down to where it belongs. (3) Remove unnecessary ALL_TARGET. (4) Use full pathname for ldconfig. (5) Convert mega-command to compress manpages to a .for loop. Also conditionalize it on NOMANCOMPRESS.
32 lines
726 B
Makefile
32 lines
726 B
Makefile
# New ports collection makefile for: blt
|
|
# Version required: 2.1
|
|
# Date created: 3 August 1996
|
|
# Whom: lukin <lukin@okbmei.msk.su>
|
|
#
|
|
# $Id: Makefile,v 1.7 1996/08/05 04:00:33 jkh Exp $
|
|
#
|
|
|
|
DISTNAME= blt-2.1
|
|
CATEGORIES+= x11
|
|
MASTER_SITES= ftp://ftp.neosoft.com/pub/tcl/NEW/
|
|
DISTFILES= BLT2.1.tar.gz
|
|
|
|
MAINTAINER= lukin@okbmei.msk.su
|
|
|
|
LIB_DEPENDS= tcl75\\.:${PORTSDIR}/lang/tcl75 \
|
|
tk41\\.:${PORTSDIR}/x11/tk41
|
|
|
|
WRKSRC= ${WRKDIR}/blt2.1
|
|
GNU_CONFIGURE= yes
|
|
|
|
post-install:
|
|
/sbin/ldconfig -m ${PREFIX}/lib
|
|
.if !defined(NOMANCOMPRESS)
|
|
.for man in BLT barchart bgexec bitmap bltdebug busy dragdrop graph \
|
|
htext spline table tile vector watch winop
|
|
gzip -9nf ${PREFIX}/man/mann/${man}.n
|
|
.endfor
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|