diff options
author | asami <asami@FreeBSD.org> | 1999-09-22 09:04:30 +0800 |
---|---|---|
committer | asami <asami@FreeBSD.org> | 1999-09-22 09:04:30 +0800 |
commit | e916a7f8c08e5c614b4d9e93cff62aa3a4caba53 (patch) | |
tree | de53e9a2db4bd9d366f8baf7ce7bdc6a9ea08c8f /Mk | |
parent | 69db0ba42cb2d3ad0928762c76fd816ec508405c (diff) | |
download | freebsd-ports-gnome-e916a7f8c08e5c614b4d9e93cff62aa3a4caba53.tar.gz freebsd-ports-gnome-e916a7f8c08e5c614b4d9e93cff62aa3a4caba53.tar.zst freebsd-ports-gnome-e916a7f8c08e5c614b4d9e93cff62aa3a4caba53.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}; \ |