mirror of
https://git.freebsd.org/ports.git
synced 2025-07-18 01:39:16 -04:00
Makefile cleanup, i.e.,
(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.
This commit is contained in:
parent
74e2c4c84c
commit
9938e91b30
Notes:
svn2git
2021-03-31 03:12:20 +00:00
svn path=/head/; revision=3532
1 changed files with 10 additions and 6 deletions
|
@ -1,27 +1,31 @@
|
||||||
# New ports collection makefile for: blt
|
# New ports collection makefile for: blt
|
||||||
# Version required: 2.1
|
# Version required: 2.1
|
||||||
# Date created: 3 August 1996
|
# Date created: 3 August 1996
|
||||||
# Whom: lukin
|
# Whom: lukin <lukin@okbmei.msk.su>
|
||||||
#
|
#
|
||||||
# $Id: Makefile,v 1.1 1996/07/07 00:21:03 lukin Exp $
|
# $Id: Makefile,v 1.7 1996/08/05 04:00:33 jkh Exp $
|
||||||
#
|
#
|
||||||
|
|
||||||
DISTNAME= blt-2.1
|
DISTNAME= blt-2.1
|
||||||
CATEGORIES+= x11
|
CATEGORIES+= x11
|
||||||
MASTER_SITES= ftp://ftp.neosoft.com/pub/tcl/NEW/
|
MASTER_SITES= ftp://ftp.neosoft.com/pub/tcl/NEW/
|
||||||
DISTFILES= BLT2.1.tar.gz
|
DISTFILES= BLT2.1.tar.gz
|
||||||
WRKSRC= ${WRKDIR}/blt2.1
|
|
||||||
|
|
||||||
MAINTAINER= lukin@okbmei.msk.su
|
MAINTAINER= lukin@okbmei.msk.su
|
||||||
|
|
||||||
LIB_DEPENDS= tcl75\\.:${PORTSDIR}/lang/tcl75 \
|
LIB_DEPENDS= tcl75\\.:${PORTSDIR}/lang/tcl75 \
|
||||||
tk41\\.:${PORTSDIR}/x11/tk41
|
tk41\\.:${PORTSDIR}/x11/tk41
|
||||||
|
|
||||||
|
WRKSRC= ${WRKDIR}/blt2.1
|
||||||
GNU_CONFIGURE= yes
|
GNU_CONFIGURE= yes
|
||||||
ALL_TARGET= all
|
|
||||||
|
|
||||||
post-install:
|
post-install:
|
||||||
ldconfig -m ${PREFIX}/lib
|
/sbin/ldconfig -m ${PREFIX}/lib
|
||||||
gzip -9nf ${PREFIX}/man/mann/BLT.n ${PREFIX}/man/mann/barchart.n ${PREFIX}/man/mann/bgexec.n ${PREFIX}/man/mann/bitmap.n ${PREFIX}/man/mann/bltdebug.n ${PREFIX}/man/mann/busy.n ${PREFIX}/man/mann/dragdrop.n ${PREFIX}/man/mann/graph.n ${PREFIX}/man/mann/htext.n ${PREFIX}/man/mann/spline.n ${PREFIX}/man/mann/table.n ${PREFIX}/man/mann/tile.n ${PREFIX}/man/mann/vector.n ${PREFIX}/man/mann/watch.n ${PREFIX}/man/mann/winop.n
|
.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>
|
.include <bsd.port.mk>
|
||||||
|
|
Loading…
Add table
Reference in a new issue