summaryrefslogtreecommitdiff
path: root/Mk
diff options
context:
space:
mode:
authorSatoshi Asami <asami@FreeBSD.org>1999-09-22 01:04:30 +0000
committerSatoshi Asami <asami@FreeBSD.org>1999-09-22 01:04:30 +0000
commitfec28e384a5c32a5760db39245905ad937a63bfa (patch)
treeb0b1aea42376360ae496a5e0f67694a335b6c1fe /Mk
parentCall bothlogs. (diff)
(1) x11-toolkits/qt2 -> x11-toolkits/qt201
Submitted by: many people (2) Surround the perl describe target with an echo ``. We'll see if it will help with the index corruption problems. (3) Manpage handling fix to avoid command line too long errors for ports with a lot of manpages. Submitted by: hoek
Notes
Notes: svn path=/head/; revision=21874
Diffstat (limited to 'Mk')
-rw-r--r--Mk/bsd.port.mk10
1 files changed, 5 insertions, 5 deletions
diff --git a/Mk/bsd.port.mk b/Mk/bsd.port.mk
index 9e840cfb6271..cf77e4dda110 100644
--- a/Mk/bsd.port.mk
+++ b/Mk/bsd.port.mk
@@ -663,7 +663,7 @@ LIB_DEPENDS+= qt.2:${PORTSDIR}/x11-toolkits/qt142
.endif
.if defined(USE_QT2)
-LIB_DEPENDS+= qt2.2:${PORTSDIR}/x11-toolkits/qt2
+LIB_DEPENDS+= qt2.2:${PORTSDIR}/x11-toolkits/qt201
USE_NEWGCC= yes
.endif
@@ -2379,7 +2379,7 @@ package-depends:
.if !target(describe)
describe:
- @perl -e ' \
+ @${ECHO} `perl -e ' \
print "${PKGNAME}|${.CURDIR}|${PREFIX}|"; \
if (open (COMMENT, "${COMMENT}")) { \
$$_ = <COMMENT>; \
@@ -2449,7 +2449,7 @@ describe:
print $$_[1]; \
} \
} \
- print "\n";'
+ print "\n";'`
.endif
www-site:
@@ -2549,10 +2549,10 @@ ${TMPPLIST}:
compress-man:
.if ${MANCOMPRESSED} == yes && defined(NOMANCOMPRESS)
@${ECHO_MSG} "===> Uncompressing manual pages for ${PKGNAME}"
- @[ "${_MANPAGES}" != "" ] && ${GUNZIP_CMD} ${_MANPAGES} || ${TRUE}
+ @_manpages='${_MANPAGES:S/'/'\''/g}' && [ "$${_manpages}" != "" ] && ( eval ${GUNZIP_CMD} $${_manpages} ) || ${TRUE}
.elif ${MANCOMPRESSED} == no && !defined(NOMANCOMPRESS)
@${ECHO_MSG} "===> Compressing manual pages for ${PKGNAME}"
- @[ "${_MANPAGES}" != "" ] && ${GZIP_CMD} ${_MANPAGES} || ${TRUE}
+ @_manpages='${_MANPAGES:S/'/'\''/g}' && [ "$${_manpages}" != "" ] && ( eval ${GZIP_CMD} $${_manpages} ) || ${TRUE}
.endif
.if defined(_MLINKS)
@set ${_MLINKS:S,"",,g:S,//,/,g}; \