summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Packages.txt7
-rw-r--r--audio/gsm/Makefile4
-rw-r--r--devel/libslang/Makefile4
-rw-r--r--devel/ncurses/Makefile4
-rw-r--r--emulators/linux_lib/Makefile4
-rw-r--r--graphics/ImageMagick/Makefile4
-rw-r--r--graphics/Mesa/Makefile4
-rw-r--r--graphics/giflib/Makefile4
-rw-r--r--graphics/jpeg/Makefile4
-rw-r--r--graphics/mpeg-lib/Makefile4
-rw-r--r--graphics/png/Makefile4
-rw-r--r--graphics/tiff/Makefile4
-rw-r--r--graphics/xpm/Makefile4
-rw-r--r--lang/expect/Makefile4
-rw-r--r--lang/kaffe/Makefile4
-rw-r--r--lang/tcl80/Makefile4
-rw-r--r--mk/bsd.pkg.mk13
-rw-r--r--mk/bsd.port.mk13
-rw-r--r--net/socks5/Makefile4
-rw-r--r--x11/Xaw3d/Makefile4
-rw-r--r--x11/lesstif/Makefile4
-rw-r--r--x11/qt/Makefile4
-rw-r--r--x11/tk80/Makefile4
23 files changed, 57 insertions, 56 deletions
diff --git a/Packages.txt b/Packages.txt
index 453e3dad87a..7b1bd856675 100644
--- a/Packages.txt
+++ b/Packages.txt
@@ -1,4 +1,4 @@
-# $NetBSD: Packages.txt,v 1.14 1998/01/30 13:15:05 hubertf Exp $
+# $NetBSD: Packages.txt,v 1.15 1998/02/02 08:10:41 hubertf Exp $
###########################################################################
==========================
@@ -284,9 +284,8 @@ port from the FreeBSD ports collection:
- Add MANCOMPRESSED (if not already there) if manpages are installed in
compressed form by the package; see comment in bsd.port.mk
- Replace /usr/local by ${PREFIX} in all files (see patches below)
- - Rewrite any ldconfig commands as "ldconfig ... || /usr/bin/true", as
- there isn't a ldconfig command on all platforms NetBSD runs on (e.g.
- alpha).
+ - Rewrite any ldconfig commands as "ldconfig ... || ${TRUE}", as there
+ isn't a ldconfig command on all platforms NetBSD runs on (e.g. alpha).
- If modifying a package from the FreeBSD ports collection, preserve
their RCS ID: remove the '$'s around the FreeBSD RCS Id, and insert the
word FreeBSD, then add a <$>NetBSD<$> (Without the <>s, please remember
diff --git a/audio/gsm/Makefile b/audio/gsm/Makefile
index 818b582cedf..6d63c62f86e 100644
--- a/audio/gsm/Makefile
+++ b/audio/gsm/Makefile
@@ -3,7 +3,7 @@
# Date created: 5 January 1995
# Whom: pst
#
-# $NetBSD: Makefile,v 1.4 1998/01/19 00:54:27 hubertf Exp $
+# $NetBSD: Makefile,v 1.5 1998/02/02 08:10:44 hubertf Exp $
# FreeBSD Id: Makefile,v 1.10 1997/07/17 15:12:39 max Exp
#
@@ -21,6 +21,6 @@ MAN1= toast.1
MAN3= gsm.3 gsm_explode.3 gsm_option.3 gsm_print.3
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/devel/libslang/Makefile b/devel/libslang/Makefile
index a0a4cbcd6f8..0b4205e58e1 100644
--- a/devel/libslang/Makefile
+++ b/devel/libslang/Makefile
@@ -3,7 +3,7 @@
# Date created: 11 July 1996
# Whom: ache
#
-# $NetBSD: Makefile,v 1.3 1998/01/24 04:17:42 hubertf Exp $
+# $NetBSD: Makefile,v 1.4 1998/02/02 08:10:46 hubertf Exp $
# FreeBSD Id: Makefile,v 1.10 1997/07/17 15:12:41 max Exp
#
@@ -21,6 +21,6 @@ WRKSRC= ${WRKDIR}/slang
post-install:
@rm -f ${PREFIX}/lib/libslang.so.99.3[348]
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/devel/ncurses/Makefile b/devel/ncurses/Makefile
index f522d178201..b1c437113ca 100644
--- a/devel/ncurses/Makefile
+++ b/devel/ncurses/Makefile
@@ -3,7 +3,7 @@
# Date created: Tue Oct 28 00:12:41 CET 1997
# Whom: Hubert Feyrer (hubertf@netbsd.org)
#
-# $NetBSD: Makefile,v 1.8 1998/01/24 04:26:58 hubertf Exp $
+# $NetBSD: Makefile,v 1.9 1998/02/02 08:10:48 hubertf Exp $
DISTNAME= ncurses-1.9.9g
CATEGORIES= devel
@@ -61,6 +61,6 @@ post-install:
( cd ${PREFIX}/include ; for i in form.h menu.h panel.h ; do \
${SED} '/#include/s|curses.h|ncurses.h|g' $$i >$$i.BAK ; \
${MV} $$i.BAK $$i ; done )
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/emulators/linux_lib/Makefile b/emulators/linux_lib/Makefile
index 15fddd8cdd7..c20bfd48251 100644
--- a/emulators/linux_lib/Makefile
+++ b/emulators/linux_lib/Makefile
@@ -3,7 +3,7 @@
# Date created: 1997/12/04
# Whom: erich@FreeBSD.org
#
-# $NetBSD: Makefile,v 1.4 1998/01/24 05:05:00 hubertf Exp $
+# $NetBSD: Makefile,v 1.5 1998/02/02 08:10:49 hubertf Exp $
# FreeBSD Id: Makefile,v 1.19 1997/12/04 17:34:28 asami Exp
#
@@ -32,7 +32,7 @@ do-install:
@zcat ${DISTDIR}/${DISTNAME}.tar.gz |(cd ${PREFIX}; pax -r)
post-install:
- -${LDCONFIG} || /usr/bin/true
+ -${LDCONFIG} || ${TRUE}
${MKDIR} ${PREFIX}/usr/lib/zoneinfo
ln -sf /etc/localtime ${PREFIX}/usr/lib/zoneinfo/localtime
diff --git a/graphics/ImageMagick/Makefile b/graphics/ImageMagick/Makefile
index 321cf56bf40..efc8e7c0b03 100644
--- a/graphics/ImageMagick/Makefile
+++ b/graphics/ImageMagick/Makefile
@@ -3,7 +3,7 @@
# Date created: 11th December 1997
# Whom: tron
#
-# $NetBSD: Makefile,v 1.8 1998/02/01 01:52:42 hubertf Exp $
+# $NetBSD: Makefile,v 1.9 1998/02/02 08:10:50 hubertf Exp $
#
DISTNAME= ImageMagick-4.0
@@ -43,6 +43,6 @@ post-extract:
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/graphics/Mesa/Makefile b/graphics/Mesa/Makefile
index d2e236dc992..306d3fd6804 100644
--- a/graphics/Mesa/Makefile
+++ b/graphics/Mesa/Makefile
@@ -3,7 +3,7 @@
# Date created: Tue Feb 7 12:02:49 1995
# Whom: hsu
#
-# $NetBSD: Makefile,v 1.6 1998/01/24 05:19:15 hubertf Exp $
+# $NetBSD: Makefile,v 1.7 1998/02/02 08:10:51 hubertf Exp $
# FreeBSD Id: Makefile,v 1.19 1997/09/30 19:21:40 max Exp
#
@@ -40,6 +40,6 @@ do-install:
${CP} -Rp ${WRKSRC}/demos ${PREFIX}/share/examples/Mesa
${CP} -Rp ${WRKSRC}/book ${PREFIX}/share/examples/Mesa
${CP} -Rp ${WRKSRC}/widgets-sgi ${PREFIX}/share/examples/Mesa
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/graphics/giflib/Makefile b/graphics/giflib/Makefile
index 5427be3a262..d59c3962d12 100644
--- a/graphics/giflib/Makefile
+++ b/graphics/giflib/Makefile
@@ -3,7 +3,7 @@
# Date created: 03 May 1997
# Whom: Thomas Gellekum <tg@FreeBSD.ORG>
#
-# $NetBSD: Makefile,v 1.3 1998/01/24 05:20:59 hubertf Exp $
+# $NetBSD: Makefile,v 1.4 1998/02/02 08:10:52 hubertf Exp $
# FreeBSD Id: Makefile,v 1.2 1997/09/24 06:55:01 tg Exp
#
@@ -18,6 +18,6 @@ post-install:
@${MKDIR} ${PREFIX}/share/doc/giflib
@${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/giflib
.endif
- @${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ @${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/graphics/jpeg/Makefile b/graphics/jpeg/Makefile
index 66090a577f5..28824fd3ba3 100644
--- a/graphics/jpeg/Makefile
+++ b/graphics/jpeg/Makefile
@@ -3,7 +3,7 @@
# Date created: 6 November 1994
# Whom: smace
#
-# $NetBSD: Makefile,v 1.3 1998/01/24 05:22:28 hubertf Exp $
+# $NetBSD: Makefile,v 1.4 1998/02/02 08:10:53 hubertf Exp $
# FreeBSD Id: Makefile,v 1.14 1997/07/17 15:12:43 max Exp
#
@@ -20,6 +20,6 @@ INSTALL_TARGET= install install-lib
MAN1= cjpeg.1 djpeg.1 jpegtran.1 rdjpgcom.1 wrjpgcom.1
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/graphics/mpeg-lib/Makefile b/graphics/mpeg-lib/Makefile
index 86c99a429f5..299f4ac05b1 100644
--- a/graphics/mpeg-lib/Makefile
+++ b/graphics/mpeg-lib/Makefile
@@ -3,7 +3,7 @@
# Date created: 07 December 1997
# Whom: tron@lyssa.owl.de
#
-# $NetBSD: Makefile,v 1.3 1998/01/29 16:56:20 tron Exp $
+# $NetBSD: Makefile,v 1.4 1998/02/02 08:10:55 hubertf Exp $
DISTNAME= mpeg_lib-1.2.1
PKGNAME= mpeg-1.2.1
@@ -24,6 +24,6 @@ post-configure:
post-install:
(cd ${WRKSRC};make PREFIX=${PREFIX} includes)
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/graphics/png/Makefile b/graphics/png/Makefile
index fe2dde154a5..024cb16bf31 100644
--- a/graphics/png/Makefile
+++ b/graphics/png/Makefile
@@ -3,7 +3,7 @@
# Date created: 5 Dec 1995
# Whom: ache
#
-# $NetBSD: Makefile,v 1.3 1998/01/24 05:27:26 hubertf Exp $
+# $NetBSD: Makefile,v 1.4 1998/02/02 08:10:56 hubertf Exp $
# FreeBSD Id: Makefile,v 1.10 1997/07/17 15:12:44 max Exp
#
@@ -18,6 +18,6 @@ MAINTAINER= ache@FreeBSD.org
MAKEFILE= makefile
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/graphics/tiff/Makefile b/graphics/tiff/Makefile
index a7dcb7516da..2479e833116 100644
--- a/graphics/tiff/Makefile
+++ b/graphics/tiff/Makefile
@@ -3,7 +3,7 @@
# Date created: 27 November 1997
# Whom: tron
#
-# $NetBSD: Makefile,v 1.6 1998/01/30 13:57:07 agc Exp $
+# $NetBSD: Makefile,v 1.7 1998/02/02 08:10:57 hubertf Exp $
DISTNAME= tiff-v3.4beta037
PKGNAME= tiff-3.4
@@ -52,6 +52,6 @@ CONFIGURE_ARGS+= --noninteractive --site ${FILESDIR}
CONFIGURE_ENV+= PREFIX=${PREFIX}
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/graphics/xpm/Makefile b/graphics/xpm/Makefile
index 65e61ee743c..6c5ac8e8203 100644
--- a/graphics/xpm/Makefile
+++ b/graphics/xpm/Makefile
@@ -3,7 +3,7 @@
# Date created: 14 September 1994
# Whom: jkh
#
-# $NetBSD: Makefile,v 1.5 1998/01/24 05:30:35 hubertf Exp $
+# $NetBSD: Makefile,v 1.6 1998/02/02 08:10:58 hubertf Exp $
# FreeBSD Id: Makefile,v 1.14 1997/07/17 15:12:45 max Exp
#
@@ -18,6 +18,6 @@ USE_IMAKE= yes
CAT1= sxpm.0
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/lang/expect/Makefile b/lang/expect/Makefile
index 20eb6e27152..a283639d556 100644
--- a/lang/expect/Makefile
+++ b/lang/expect/Makefile
@@ -3,7 +3,7 @@
# Whom: pst
# Version required: 5.25
#
-# $NetBSD: Makefile,v 1.5 1998/02/01 01:58:08 hubertf Exp $
+# $NetBSD: Makefile,v 1.6 1998/02/02 08:11:00 hubertf Exp $
# FreeBSD Id: Makefile,v 1.29 1998/01/27 01:11:47 fenner Exp
#
@@ -39,6 +39,6 @@ test:
@(cd ${WRKSRC}; make test)
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/lang/kaffe/Makefile b/lang/kaffe/Makefile
index d47628916a5..2cdf9bea1bd 100644
--- a/lang/kaffe/Makefile
+++ b/lang/kaffe/Makefile
@@ -3,7 +3,7 @@
# Date created: 20 February 1995
# Whom: Tim Wilkinson <tim@sarc.city.ac.uk>
#
-# $NetBSD: Makefile,v 1.3 1998/02/01 01:59:50 hubertf Exp $
+# $NetBSD: Makefile,v 1.4 1998/02/02 08:11:01 hubertf Exp $
# FreeBSD Id: Makefile,v 1.30 1997/12/08 09:37:16 obrien Exp
#
@@ -28,6 +28,6 @@ MAN1= kaffe.1
post-install:
${MKDIR} ${PREFIX}/share/kaffe
${INSTALL_DATA} ${WRKSRC}/ENVIRONMENT ${WRKSRC}/license.terms ${PREFIX}/share/kaffe
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/lang/tcl80/Makefile b/lang/tcl80/Makefile
index 0e49b51c857..cb7836c4b89 100644
--- a/lang/tcl80/Makefile
+++ b/lang/tcl80/Makefile
@@ -3,7 +3,7 @@
# Date created: 19 August 1997
# Whom: jkh
#
-# $NetBSD: Makefile,v 1.5 1998/01/24 20:26:24 hubertf Exp $
+# $NetBSD: Makefile,v 1.6 1998/02/02 08:11:02 hubertf Exp $
# FreeBSD Id: Makefile,v 1.1.1.1 1997/08/20 10:33:35 jkh Exp
#
@@ -24,7 +24,7 @@ MAN3= Alloc.3 AddErrInfo.3 AllowExc.3 AppInit.3 AssocData.3 Async.3 BackgdErr.3
MANN= Tcl.n after.n append.n array.n bgerror.n binary.n break.n case.n catch.n cd.n clock.n close.n concat.n continue.n eof.n error.n eval.n exec.n exit.n expr.n fblocked.n fconfigure.n fcopy.n if.n file.n fileevent.n filename.n flush.n for.n foreach.n format.n gets.n glob.n global.n history.n http.n incr.n info.n interp.n join.n lappend.n library.n lindex.n linsert.n list.n llength.n load.n lrange.n lreplace.n lsearch.n lsort.n namespace.n open.n package.n pid.n pkgMkIndex.n proc.n puts.n pwd.n read.n regexp.n registry.n regsub.n rename.n resource.n return.n safe.n scan.n seek.n set.n socket.n source.n split.n string.n subst.n switch.n tclvars.n tell.n time.n trace.n unknown.n unset.n update.n uplevel.n upvar.n variable.n vwait.n while.n Base.n Http.n Safe.n pkg_mkIndex.n
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
test:
cd ${WRKSRC} && ${MAKE} test
diff --git a/mk/bsd.pkg.mk b/mk/bsd.pkg.mk
index 7e26fea1617..4169bb00adb 100644
--- a/mk/bsd.pkg.mk
+++ b/mk/bsd.pkg.mk
@@ -1,7 +1,7 @@
#-*- mode: Fundamental; tab-width: 4; -*-
# ex:ts=4
#
-# $NetBSD: bsd.pkg.mk,v 1.42 1998/01/30 13:53:53 agc Exp $
+# $NetBSD: bsd.pkg.mk,v 1.43 1998/02/02 08:11:49 hubertf Exp $
#
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
@@ -457,10 +457,6 @@ BUILD_COOKIE?= ${WRKDIR}/.build_done
PATCH_COOKIE?= ${WRKDIR}/.patch_done
PACKAGE_COOKIE?= ${WRKDIR}/.package_done
-# How to do nothing. Override if you, for some strange reason, would rather
-# do something.
-DO_NADA?= /usr/bin/true
-
# Miscellaneous overridable commands:
GMAKE?= gmake
XMKMF?= xmkmf -a
@@ -633,10 +629,15 @@ SED?= /usr/bin/sed
SETENV?= /usr/bin/env
SH?= /bin/sh
TR?= /usr/bin/tr
+TRUE?= /usr/bin/true
# Used to print all the '===>' style prompts - override this to turn them off.
ECHO_MSG?= ${ECHO}
+# How to do nothing. Override if you, for some strange reason, would rather
+# do something.
+DO_NADA?= ${TRUE}
+
ALL_TARGET?= all
INSTALL_TARGET?= install
@@ -1871,7 +1872,7 @@ fake-pkg: ${PLIST}
if [ -f ${PKGDIR}/MESSAGE ]; then \
${CP} ${PKGDIR}/MESSAGE ${PKG_DBDIR}/${PKGNAME}/+DISPLAY; \
fi; \
- for dep in `make package-depends ECHO_MSG=/usr/bin/true | sort -u`; do \
+ for dep in `make package-depends ECHO_MSG=${TRUE} | sort -u`; do \
if [ -d ${PKG_DBDIR}/$$dep ]; then \
if ! ${GREP} ^${PKGNAME}$$ ${PKG_DBDIR}/$$dep/+REQUIRED_BY \
>/dev/null 2>&1; then \
diff --git a/mk/bsd.port.mk b/mk/bsd.port.mk
index db8856ee97e..006b00ed564 100644
--- a/mk/bsd.port.mk
+++ b/mk/bsd.port.mk
@@ -1,7 +1,7 @@
#-*- mode: Fundamental; tab-width: 4; -*-
# ex:ts=4
#
-# $NetBSD: bsd.port.mk,v 1.42 1998/01/30 13:53:53 agc Exp $
+# $NetBSD: bsd.port.mk,v 1.43 1998/02/02 08:11:49 hubertf Exp $
#
# bsd.port.mk - 940820 Jordan K. Hubbard.
# This file is in the public domain.
@@ -457,10 +457,6 @@ BUILD_COOKIE?= ${WRKDIR}/.build_done
PATCH_COOKIE?= ${WRKDIR}/.patch_done
PACKAGE_COOKIE?= ${WRKDIR}/.package_done
-# How to do nothing. Override if you, for some strange reason, would rather
-# do something.
-DO_NADA?= /usr/bin/true
-
# Miscellaneous overridable commands:
GMAKE?= gmake
XMKMF?= xmkmf -a
@@ -633,10 +629,15 @@ SED?= /usr/bin/sed
SETENV?= /usr/bin/env
SH?= /bin/sh
TR?= /usr/bin/tr
+TRUE?= /usr/bin/true
# Used to print all the '===>' style prompts - override this to turn them off.
ECHO_MSG?= ${ECHO}
+# How to do nothing. Override if you, for some strange reason, would rather
+# do something.
+DO_NADA?= ${TRUE}
+
ALL_TARGET?= all
INSTALL_TARGET?= install
@@ -1871,7 +1872,7 @@ fake-pkg: ${PLIST}
if [ -f ${PKGDIR}/MESSAGE ]; then \
${CP} ${PKGDIR}/MESSAGE ${PKG_DBDIR}/${PKGNAME}/+DISPLAY; \
fi; \
- for dep in `make package-depends ECHO_MSG=/usr/bin/true | sort -u`; do \
+ for dep in `make package-depends ECHO_MSG=${TRUE} | sort -u`; do \
if [ -d ${PKG_DBDIR}/$$dep ]; then \
if ! ${GREP} ^${PKGNAME}$$ ${PKG_DBDIR}/$$dep/+REQUIRED_BY \
>/dev/null 2>&1; then \
diff --git a/net/socks5/Makefile b/net/socks5/Makefile
index 8a2ab6c649a..e28d85adf20 100644
--- a/net/socks5/Makefile
+++ b/net/socks5/Makefile
@@ -3,7 +3,7 @@
# Date created: 24 Apr 1996
# Whom: pst
#
-# $NetBSD: Makefile,v 1.6 1998/01/24 21:45:15 hubertf Exp $
+# $NetBSD: Makefile,v 1.7 1998/02/02 08:11:03 hubertf Exp $
# FreeBSD Id: Makefile,v 1.14 1997/08/28 06:49:06 obrien Exp
#
@@ -40,6 +40,6 @@ MAN5= libsocks5.conf.5 socks5.conf.5 socks5.passwd.5
post-install:
ln -fs ${PREFIX}/lib/libsocks5_sh.so ${PREFIX}/lib/libsocks5_sh.so.0.0
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/x11/Xaw3d/Makefile b/x11/Xaw3d/Makefile
index 7d281745c06..9114a45ba34 100644
--- a/x11/Xaw3d/Makefile
+++ b/x11/Xaw3d/Makefile
@@ -3,7 +3,7 @@
# Date created: 30th November 1997
# Whom: tron@lyssa.owl.de, soren@t.dk
#
-# $NetBSD: Makefile,v 1.8 1998/01/29 16:52:14 tron Exp $
+# $NetBSD: Makefile,v 1.9 1998/02/02 08:11:04 hubertf Exp $
# FreeBSD Id: Makefile,v 1.14 1997/06/19 09:33:26 asami Exp
#
@@ -21,7 +21,7 @@ post-extract:
@(cd ${WRKSRC};ln -s .. X11)
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
${MKDIR} ${PREFIX}/share/doc/Xaw3d
${CP} ${WRKSRC}/README.XAW3D ${PREFIX}/share/doc/Xaw3d
diff --git a/x11/lesstif/Makefile b/x11/lesstif/Makefile
index b305db50711..1aaee415345 100644
--- a/x11/lesstif/Makefile
+++ b/x11/lesstif/Makefile
@@ -3,7 +3,7 @@
# Date created: December 10, 1996
# Whom: 1wardd@airmail.net
#
-# $NetBSD: Makefile,v 1.6 1998/01/25 00:05:20 hubertf Exp $
+# $NetBSD: Makefile,v 1.7 1998/02/02 08:11:05 hubertf Exp $
# FreeBSD Id: Makefile,v 1.13 1997/09/08 08:34:13 tg Exp
#
@@ -54,6 +54,6 @@ post-install:
${INSTALL_DATA} ${WRKSRC}/clients/Motif-1.2/mwm/Mwm \
${PREFIX}/lib/X11/app-defaults/Mwm
/usr/bin/strip ${PREFIX}/lib/libXm.so.0.1 ${PREFIX}/lib/libMrm.so.0.1
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
.include <bsd.port.mk>
diff --git a/x11/qt/Makefile b/x11/qt/Makefile
index 56924a4ad16..bc481215e47 100644
--- a/x11/qt/Makefile
+++ b/x11/qt/Makefile
@@ -3,7 +3,7 @@
# Date created: 30 Jul 1996
# Whom: searle@longacre.demon.co.uk
#
-# $NetBSD: Makefile,v 1.3 1998/01/25 00:09:43 hubertf Exp $
+# $NetBSD: Makefile,v 1.4 1998/02/02 08:11:07 hubertf Exp $
# FreeBSD Id: Makefile,v 1.14 1997/10/30 05:15:19 jkh Exp
#
@@ -102,7 +102,7 @@ post-configure:
do-install:
${INSTALL_PROGRAM} ${WRKDIR}/qt-1.31/bin/moc ${QTDIR}/bin
${INSTALL_DATA} ${WRKDIR}/qt-1.31/lib/libqt.so.1.31 ${QTDIR}/lib
- ${LDCONFIG} -m ${QTDIR}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${QTDIR}/lib || ${TRUE}
${MKDIR} ${QTDIR}/include/qt
${INSTALL_DATA} ${WRKDIR}/qt-1.31/include/* ${QTDIR}/include/qt
${INSTALL_MAN} ${WRKDIR}/qt-1.31/man/man1/* ${QTDIR}/man/man1
diff --git a/x11/tk80/Makefile b/x11/tk80/Makefile
index 804de4d4d9e..c98574d0c13 100644
--- a/x11/tk80/Makefile
+++ b/x11/tk80/Makefile
@@ -3,7 +3,7 @@
# Date created: 19 August 1997
# Whom: jkh
#
-# $NetBSD: Makefile,v 1.7 1998/01/30 14:00:13 agc Exp $
+# $NetBSD: Makefile,v 1.8 1998/02/02 08:11:11 hubertf Exp $
# FreeBSD Id: Makefile,v 1.4 1997/10/01 09:20:31 tg Exp
#
@@ -54,7 +54,7 @@ MANN= bell.n bind.n bindtags.n bitmap.n button.n canvas.n \
tkerror.n tkvars.n tkwait.n toplevel.n winfo.n wm.n
post-install:
- ${LDCONFIG} -m ${PREFIX}/lib || /usr/bin/true
+ ${LDCONFIG} -m ${PREFIX}/lib || ${TRUE}
test:
cd ${WRKSRC}; make test