diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-09-22 01:04:30 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-09-22 01:04:30 +0000 |
commit | fec28e384a5c32a5760db39245905ad937a63bfa (patch) | |
tree | b0b1aea42376360ae496a5e0f67694a335b6c1fe /Mk | |
parent | e8e78d78771f1f430ee8e8b37305ddfce8d1a4cf (diff) | |
download | freebsd-ports-fec28e384a5c32a5760db39245905ad937a63bfa.zip |
(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
Diffstat (limited to 'Mk')
-rw-r--r-- | Mk/bsd.port.mk | 10 |
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}; \ |