Revision: 32256 http://trac.macosforge.org/projects/macports/changeset/32256 Author: ryandesign@macports.org Date: 2007-12-23 01:18:47 -0800 (Sun, 23 Dec 2007) Log Message: ----------- All nomaintainer ports: ${prefix} already begins with a slash, so there's no reason to put a slash before the ${prefix} variable when using it. Modified Paths: -------------- trunk/dports/audio/ccaudio/Portfile trunk/dports/audio/daapd/Portfile trunk/dports/audio/flac2mp3/Portfile trunk/dports/audio/mpg123/Portfile trunk/dports/cross/wxmsw/Portfile trunk/dports/devel/cryptlib/Portfile trunk/dports/devel/cvsdiff2patch/Portfile trunk/dports/devel/hat/Portfile trunk/dports/devel/hs-plugins/Portfile trunk/dports/devel/libuninameslist/Portfile trunk/dports/devel/slib-guile/Portfile trunk/dports/devel/slib-guile16/Portfile trunk/dports/gnome/devhelp/Portfile trunk/dports/gnome/epiphany/Portfile trunk/dports/gnome/galeon/Portfile trunk/dports/gnome/gnome-panel/Portfile trunk/dports/gnome/gnome-terminal/Portfile trunk/dports/gnome/gnucash-docs/Portfile trunk/dports/gnome/mlview/Portfile trunk/dports/graphics/autotrace/Portfile trunk/dports/graphics/fontforge/Portfile trunk/dports/graphics/glut/Portfile trunk/dports/graphics/jasper/Portfile trunk/dports/graphics/jbigkit/Portfile trunk/dports/graphics/pgplot/Portfile trunk/dports/graphics/potrace/Portfile trunk/dports/iphone/iphone-libwrap/Portfile trunk/dports/java/unicodeconverter-java/Portfile trunk/dports/lang/cm3/Portfile trunk/dports/lang/gcj34/Portfile trunk/dports/lang/lisp-hyperspec/Portfile trunk/dports/lang/nhc98/Portfile trunk/dports/lang/odgcc40/Portfile trunk/dports/lang/perl5.8/Portfile trunk/dports/mail/hypermail/Portfile trunk/dports/math/djbfft/Portfile trunk/dports/math/maxima/Portfile trunk/dports/math/oleo/Portfile trunk/dports/multimedia/vcdimager/Portfile trunk/dports/net/cvsup/Portfile trunk/dports/net/gtk-gnutella/Portfile trunk/dports/net/lambdamoo/Portfile trunk/dports/net/madflute/Portfile trunk/dports/net/tcp_wrappers/Portfile trunk/dports/net/traceroute/Portfile trunk/dports/perl/p5-template-toolkit/Portfile trunk/dports/print/espgs/Portfile trunk/dports/print/freetype1/Portfile trunk/dports/python/py-apsw/Portfile trunk/dports/python/py-atox/Portfile trunk/dports/python/py-cssutils/Portfile trunk/dports/python/py-dsv/Portfile trunk/dports/python/py-google/Portfile trunk/dports/python/py-harvestman/Portfile trunk/dports/python/py-m2crypto/Portfile trunk/dports/python/py-pcapy/Portfile trunk/dports/python/py-pyb/Portfile trunk/dports/python/py-pyqt3/Portfile trunk/dports/python/py-pythoncad/Portfile trunk/dports/python/py-repl/Portfile trunk/dports/python/py-roundup/Portfile trunk/dports/python/py-sgmlop/Portfile trunk/dports/python/py-tconfpy/Portfile trunk/dports/python/py-texml/Portfile trunk/dports/python/py-timeformat/Portfile trunk/dports/python/py-tlslite/Portfile trunk/dports/science/gplcver/Portfile trunk/dports/science/mpich/Portfile trunk/dports/security/prelude-manager/Portfile trunk/dports/sysutils/macutil/Portfile trunk/dports/textproc/pstotext/Portfile trunk/dports/textproc/tth/Portfile trunk/dports/www/analog/Portfile trunk/dports/www/wml/Portfile trunk/dports/x11/gtk2/Portfile trunk/dports/x11/gtk28/Portfile trunk/dports/x11/mlterm/Portfile trunk/dports/x11/wxgtk/Portfile Modified: trunk/dports/audio/ccaudio/Portfile =================================================================== --- trunk/dports/audio/ccaudio/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/audio/ccaudio/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -24,8 +24,8 @@ depends_lib lib:libccgnu2:commoncpp2 post-destroot { - file mkdir ${destroot}/${prefix}/share/man/man3 + file mkdir ${destroot}${prefix}/share/man/man3 eval file copy [glob ${worksrcpath}/doc/man3/*] \ - ${destroot}/${prefix}/share/man/man3 + ${destroot}${prefix}/share/man/man3 } Modified: trunk/dports/audio/daapd/Portfile =================================================================== --- trunk/dports/audio/daapd/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/audio/daapd/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -31,9 +31,9 @@ } destroot { - xinstall -m 755 ${worksrcpath}/daapd ${destroot}/${prefix}/sbin/ - xinstall -m 644 ${worksrcpath}/daapd.conf ${destroot}/${prefix}/etc/daapd.conf.dist - xinstall -m 644 ${worksrcpath}/daapd.8 ${destroot}/${prefix}/share/man/man8/ + xinstall -m 755 ${worksrcpath}/daapd ${destroot}${prefix}/sbin/ + xinstall -m 644 ${worksrcpath}/daapd.conf ${destroot}${prefix}/etc/daapd.conf.dist + xinstall -m 644 ${worksrcpath}/daapd.8 ${destroot}${prefix}/share/man/man8/ } use_configure no Modified: trunk/dports/audio/flac2mp3/Portfile =================================================================== --- trunk/dports/audio/flac2mp3/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/audio/flac2mp3/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -20,7 +20,7 @@ destroot { xinstall ${distpath}/${name}${extract.suffix} ${destroot}${prefix}/bin reinplace "s|#!/usr/bin/perl|#!${prefix}/bin/perl|g" \ - "${destroot}/${prefix}/bin/${name}${extract.suffix}" + "${destroot}${prefix}/bin/${name}${extract.suffix}" } depends_lib port:lame port:flac port:p5-MP3-Info Modified: trunk/dports/audio/mpg123/Portfile =================================================================== --- trunk/dports/audio/mpg123/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/audio/mpg123/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -29,8 +29,8 @@ configure {} build.args LDFLAGS=-L${prefix}/lib \ CPPFLAGS=-I${prefix}/include -destroot.destdir PREFIX=${destroot}/${prefix} \ - MANDIR=${destroot}/${prefix}/share/man +destroot.destdir PREFIX=${destroot}${prefix} \ + MANDIR=${destroot}${prefix}/share/man platform puredarwin { depends_lib-append \ Modified: trunk/dports/cross/wxmsw/Portfile =================================================================== --- trunk/dports/cross/wxmsw/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/cross/wxmsw/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -43,9 +43,9 @@ } post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} eval xinstall -m 644 [glob ${worksrcpath}/*.txt] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } variant opengl { @@ -53,11 +53,11 @@ } post-destroot { - system "dos2unix ${destroot}/${prefix}/${crossgcc-target}/lib/wx/config/*" - system "chmod +x ${destroot}/${prefix}/${crossgcc-target}/lib/wx/config/*" + system "dos2unix ${destroot}${prefix}/${crossgcc-target}/lib/wx/config/*" + system "chmod +x ${destroot}${prefix}/${crossgcc-target}/lib/wx/config/*" - xinstall -m 755 -d ${destroot}/${prefix}/bin - file rename ${destroot}/${prefix}/${crossgcc-target}/bin/wx-config \ - ${destroot}/${prefix}/bin/wx-config + xinstall -m 755 -d ${destroot}${prefix}/bin + file rename ${destroot}${prefix}/${crossgcc-target}/bin/wx-config \ + ${destroot}${prefix}/bin/wx-config } Modified: trunk/dports/devel/cryptlib/Portfile =================================================================== --- trunk/dports/devel/cryptlib/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/devel/cryptlib/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -46,7 +46,7 @@ build.args LIBDIR=${prefix}/lib destroot { - set drprefix ${destroot}/${prefix} + set drprefix ${destroot}${prefix} file mkdir "${drprefix}/lib" "${drprefix}/include" \ "${drprefix}/share/doc/${name}" xinstall -m 644 ${worksrcpath}/libcl.a ${worksrcpath}/${cryptlibDylib} \ Modified: trunk/dports/devel/cvsdiff2patch/Portfile =================================================================== --- trunk/dports/devel/cvsdiff2patch/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/devel/cvsdiff2patch/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -20,5 +20,5 @@ # Override Makefile destroot target destroot { - system "install -c -s -m 555 ${worksrcpath}/cvsdiff2patch ${destroot}/${prefix}/bin" + system "install -c -s -m 555 ${worksrcpath}/cvsdiff2patch ${destroot}${prefix}/bin" } Modified: trunk/dports/devel/hat/Portfile =================================================================== --- trunk/dports/devel/hat/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/devel/hat/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -41,7 +41,7 @@ configure.args --mandir=${prefix}/share/man/man1 -post-destroot { file delete ${destroot}/${prefix}/bin/harch } +post-destroot { file delete ${destroot}${prefix}/bin/harch } post-activate { set ghcversion [ exec ghc --version | sed "s|^.*version ||" ] Modified: trunk/dports/devel/hs-plugins/Portfile =================================================================== --- trunk/dports/devel/hs-plugins/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/devel/hs-plugins/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -32,7 +32,7 @@ use_autoconf yes -destroot.destdir PREFIX=${destroot}/${prefix} +destroot.destdir PREFIX=${destroot}${prefix} post-activate { cd ${worksrcpath} Modified: trunk/dports/devel/libuninameslist/Portfile =================================================================== --- trunk/dports/devel/libuninameslist/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/devel/libuninameslist/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -26,11 +26,11 @@ build.target -destroot.destdir prefix=${destroot}/${prefix} +destroot.destdir prefix=${destroot}${prefix} post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} COPYING LICENSE \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/devel/slib-guile/Portfile =================================================================== --- trunk/dports/devel/slib-guile/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/devel/slib-guile/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -18,10 +18,10 @@ build {} destroot { - system "mkdir -p ${workpath}/destroot/${prefix}/share/guile" - system "mkdir -p ${workpath}/destroot/${prefix}/share/guile/`guile-config info guileversion | cut -d . -f 1-2`" - system "ln -s ${prefix}/lib/slib ${workpath}/destroot/${prefix}/share/guile/`guile-config info guileversion | cut -d . -f 1-2`/slib" - file link -s ${workpath}/destroot/${prefix}/share/guile/slib ${prefix}/lib/slib + system "mkdir -p ${workpath}/destroot${prefix}/share/guile" + system "mkdir -p ${workpath}/destroot${prefix}/share/guile/`guile-config info guileversion | cut -d . -f 1-2`" + system "ln -s ${prefix}/lib/slib ${workpath}/destroot${prefix}/share/guile/`guile-config info guileversion | cut -d . -f 1-2`/slib" + file link -s ${workpath}/destroot${prefix}/share/guile/slib ${prefix}/lib/slib } post-activate { Modified: trunk/dports/devel/slib-guile16/Portfile =================================================================== --- trunk/dports/devel/slib-guile16/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/devel/slib-guile16/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -22,10 +22,10 @@ destroot { set guile-branch [join [lrange [split [exec ${guile-config} info guileversion] .] 0 1] .] - system "mkdir -p ${workpath}/destroot/${prefix}/share/guile" - system "mkdir -p ${workpath}/destroot/${prefix}/share/guile/${guile-branch}" - system "ln -s ${prefix}/lib/slib ${workpath}/destroot/${prefix}/share/guile/${guile-branch}/slib" - file link -s ${workpath}/destroot/${prefix}/share/guile/slib ${prefix}/lib/slib + system "mkdir -p ${workpath}/destroot${prefix}/share/guile" + system "mkdir -p ${workpath}/destroot${prefix}/share/guile/${guile-branch}" + system "ln -s ${prefix}/lib/slib ${workpath}/destroot${prefix}/share/guile/${guile-branch}/slib" + file link -s ${workpath}/destroot${prefix}/share/guile/slib ${prefix}/lib/slib } post-activate { Modified: trunk/dports/gnome/devhelp/Portfile =================================================================== --- trunk/dports/gnome/devhelp/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/gnome/devhelp/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -18,5 +18,5 @@ configure.cppflags-append "-L${prefix}/lib" configure.cflags-append "-no-cpp-precomp -flat_namespace -undefined suppress" post-destroot { - reinplace "s|export LD_LIBRARY_PATH|export DYLD_FALLBACK_LIBRARY_PATH=\$DYLD_FALLBACK_LIBRARY_PATH:${prefix}/lib/mozilla-1.7.3/|g" ${destroot}/${prefix}/bin/devhelp + reinplace "s|export LD_LIBRARY_PATH|export DYLD_FALLBACK_LIBRARY_PATH=\$DYLD_FALLBACK_LIBRARY_PATH:${prefix}/lib/mozilla-1.7.3/|g" ${destroot}${prefix}/bin/devhelp } Modified: trunk/dports/gnome/epiphany/Portfile =================================================================== --- trunk/dports/gnome/epiphany/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/gnome/epiphany/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -23,5 +23,5 @@ file copy ${destroot}${prefix}/bin/epiphany ${destroot}${prefix}/bin/epiphany-bin file copy -force ${filespath}/epiphany ${destroot}${prefix}/bin/ # use da ${prefix} Luke ... - reinplace "s|/opt/local|${prefix}|g" ${destroot}/${prefix}/bin/epiphany + reinplace "s|/opt/local|${prefix}|g" ${destroot}${prefix}/bin/epiphany } Modified: trunk/dports/gnome/galeon/Portfile =================================================================== --- trunk/dports/gnome/galeon/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/gnome/galeon/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -18,7 +18,7 @@ configure.cppflags-append "-L${prefix}/lib" configure.cflags-append "-no-cpp-precomp -flat_namespace -undefined suppress" configure.args --enable-nautilus-view=no --mandir=${prefix}/share/man \ - --with-gconf-source="xml::${destroot}/${prefix}/etc/gconf/gconf.xml.defaults" + --with-gconf-source="xml::${destroot}${prefix}/etc/gconf/gconf.xml.defaults" pre-destroot { # mkdir the directory for teh gconf'in file mkdir -f ${destroot}${prefix}/etc/gconf/gconf.xml.defaults/ @@ -33,5 +33,5 @@ file delete ${destroot}${prefix}/etc/gconf/gconf.xml.defaults/schemas/%gconf.xml file delete ${destroot}${prefix}/etc/gconf/gconf.xml.defaults/apps/%gconf.xml # use da ${prefix} Luke ... - reinplace "s|/opt/local|${prefix}|g" ${destroot}/${prefix}/bin/galeon + reinplace "s|/opt/local|${prefix}|g" ${destroot}${prefix}/bin/galeon } Modified: trunk/dports/gnome/gnome-panel/Portfile =================================================================== --- trunk/dports/gnome/gnome-panel/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/gnome/gnome-panel/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -35,7 +35,7 @@ configure.args \ --mandir=${prefix}/share/man \ --disable-scrollkeeper \ - --with-gconf-source="xml::${destroot}/${prefix}/etc/gconf/gconf.xml.defaults" + --with-gconf-source="xml::${destroot}${prefix}/etc/gconf/gconf.xml.defaults" configure.cppflags-append "-L${prefix}/lib" configure.env GMSGFMT=${prefix}/bin/msgfmt Modified: trunk/dports/gnome/gnome-terminal/Portfile =================================================================== --- trunk/dports/gnome/gnome-terminal/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/gnome/gnome-terminal/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -33,7 +33,7 @@ configure.args \ --mandir=${prefix}/share/man \ --disable-scrollkeeper \ - --with-gconf-source="xml::${destroot}/${prefix}/etc/gconf/gconf.xml.defaults" + --with-gconf-source="xml::${destroot}${prefix}/etc/gconf/gconf.xml.defaults" configure.cflags-append "-no-cpp-precomp -flat_namespace -undefined suppress" pre-destroot { file mkdir -f ${destroot}${prefix}/etc/gconf/gconf.xml.defaults/ } Modified: trunk/dports/gnome/gnucash-docs/Portfile =================================================================== --- trunk/dports/gnome/gnucash-docs/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/gnome/gnucash-docs/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -38,20 +38,20 @@ # Duplicate figures are removed, using symlinks instead. # If you update this, please check for additional localizations! - file mkdir ${destpath}/${prefix}/share/doc/gnucash/C - file mkdir ${destpath}/${prefix}/share/doc/gnucash/de_DE + file mkdir ${destpath}${prefix}/share/doc/gnucash/C + file mkdir ${destpath}${prefix}/share/doc/gnucash/de_DE - file copy ${portpath}/${filesdir}/index.html ${destpath}/${prefix}/share/doc/gnucash + file copy ${portpath}/${filesdir}/index.html ${destpath}${prefix}/share/doc/gnucash - file copy ${worksrcpath}/guide/C/gnucash-guide ${destpath}/${prefix}/share/doc/gnucash/C - system "rm -rf ${destpath}/${prefix}/share/doc/gnucash/C/gnucash-guide/figures" - system "ln -sf ${prefix}/share/gnome/help/gnucash/C/figures ${destpath}/${prefix}/share/doc/gnucash/C/gnucash-guide/figures" + file copy ${worksrcpath}/guide/C/gnucash-guide ${destpath}${prefix}/share/doc/gnucash/C + system "rm -rf ${destpath}${prefix}/share/doc/gnucash/C/gnucash-guide/figures" + system "ln -sf ${prefix}/share/gnome/help/gnucash/C/figures ${destpath}${prefix}/share/doc/gnucash/C/gnucash-guide/figures" - file copy ${worksrcpath}/help/C/gnucash-help ${destpath}/${prefix}/share/doc/gnucash/C - system "rm -rf ${destpath}/${prefix}/share/doc/gnucash/C/gnucash-help/figures" - system "ln -sf ${prefix}/share/gnome/help/gnucash/C/figures ${destpath}/${prefix}/share/doc/gnucash/C/gnucash-help/figures" + file copy ${worksrcpath}/help/C/gnucash-help ${destpath}${prefix}/share/doc/gnucash/C + system "rm -rf ${destpath}${prefix}/share/doc/gnucash/C/gnucash-help/figures" + system "ln -sf ${prefix}/share/gnome/help/gnucash/C/figures ${destpath}${prefix}/share/doc/gnucash/C/gnucash-help/figures" - file copy ${worksrcpath}/help/de_DE/gnucash-help ${destpath}/${prefix}/share/doc/gnucash/de_DE - file delete -force ${destpath}/${prefix}/share/doc/gnucash/de_DE/gnucash-help/figures - system "ln -sf ${prefix}/share/gnome/help/gnucash/de_DE/figures ${destpath}/${prefix}/share/doc/gnucash/de_DE/gnucash-help/figures" + file copy ${worksrcpath}/help/de_DE/gnucash-help ${destpath}${prefix}/share/doc/gnucash/de_DE + file delete -force ${destpath}${prefix}/share/doc/gnucash/de_DE/gnucash-help/figures + system "ln -sf ${prefix}/share/gnome/help/gnucash/de_DE/figures ${destpath}${prefix}/share/doc/gnucash/de_DE/gnucash-help/figures" } Modified: trunk/dports/gnome/mlview/Portfile =================================================================== --- trunk/dports/gnome/mlview/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/gnome/mlview/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -14,7 +14,7 @@ depends_lib lib:libgnomeprintui-2-2:libgnomeprintui use_bzip2 yes configure.args --mandir=${prefix}/share/man \ - --with-gconf-source="xml::${destroot}/${prefix}/etc/gconf/gconf.xml.defaults" + --with-gconf-source="xml::${destroot}${prefix}/etc/gconf/gconf.xml.defaults" configure.cppflags-append "-L${prefix}/lib" configure.cflags-append "-no-cpp-precomp -flat_namespace -undefined suppress" pre-destroot { file mkdir -f ${destroot}${prefix}/etc/gconf/gconf.xml.defaults/ } Modified: trunk/dports/graphics/autotrace/Portfile =================================================================== --- trunk/dports/graphics/autotrace/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/graphics/autotrace/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -27,10 +27,10 @@ configure.args --without-magick --mandir=${prefix}/share/man post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING COPYING.LIB ChangeLog \ FAQ HACKING INSTALL NEWS README README.MING THANKS TODO \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } variant magick { Modified: trunk/dports/graphics/fontforge/Portfile =================================================================== --- trunk/dports/graphics/fontforge/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/graphics/fontforge/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -68,15 +68,15 @@ configure.args --without-python --with-multilayer --without-freetype-bytecode --without-freetype-src -destroot.post_args prefix=${destroot}/${prefix} +destroot.post_args prefix=${destroot}${prefix} post-destroot { - delete ${destroot}/${prefix}/share/man - move ${destroot}/${prefix}/man ${destroot}/${prefix}/share/man - system "strip ${destroot}/${prefix}/bin/fontforge" + delete ${destroot}${prefix}/share/man + move ${destroot}${prefix}/man ${destroot}${prefix}/share/man + system "strip ${destroot}${prefix}/bin/fontforge" } post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} - xinstall -m 644 -W ${worksrcpath} AUTHORS INSTALL LICENSE README-Mac.html README-Unix.html README-unix ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} + xinstall -m 644 -W ${worksrcpath} AUTHORS INSTALL LICENSE README-Mac.html README-Unix.html README-unix ${destroot}${prefix}/share/doc/${name} } variant without_multilayer description {Enable support for multilayered type3/svg fonts} { Modified: trunk/dports/graphics/glut/Portfile =================================================================== --- trunk/dports/graphics/glut/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/graphics/glut/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -30,12 +30,12 @@ } destroot { - file mkdir ${destroot}/${prefix}/include/GL - file mkdir ${destroot}/${prefix}/lib - system "install -m 644 -c ${worksrcpath}/include/GL/glut.h ${destroot}/${prefix}/include/GL" - system "install -m 644 -c ${worksrcpath}/lib/glut/libglut.a ${destroot}/${prefix}/lib" - system "ranlib ${destroot}/${prefix}/lib/libglut.a" - system "install -m 644 -c ${worksrcpath}/lib/glut/libglut.3.7.dylib ${destroot}/${prefix}/lib" - system "ln -fs ${prefix}/lib/libglut.3.7.dylib ${destroot}/${prefix}/lib/libglut.3.dylib" - system "ln -fs ${prefix}/lib/libglut.3.7.dylib ${destroot}/${prefix}/lib/libglut.dylib" + file mkdir ${destroot}${prefix}/include/GL + file mkdir ${destroot}${prefix}/lib + system "install -m 644 -c ${worksrcpath}/include/GL/glut.h ${destroot}${prefix}/include/GL" + system "install -m 644 -c ${worksrcpath}/lib/glut/libglut.a ${destroot}${prefix}/lib" + system "ranlib ${destroot}${prefix}/lib/libglut.a" + system "install -m 644 -c ${worksrcpath}/lib/glut/libglut.3.7.dylib ${destroot}${prefix}/lib" + system "ln -fs ${prefix}/lib/libglut.3.7.dylib ${destroot}${prefix}/lib/libglut.3.dylib" + system "ln -fs ${prefix}/lib/libglut.3.7.dylib ${destroot}${prefix}/lib/libglut.dylib" } Modified: trunk/dports/graphics/jasper/Portfile =================================================================== --- trunk/dports/graphics/jasper/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/graphics/jasper/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -29,8 +29,8 @@ test.target check post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc - file copy ${worksrcpath}/doc ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc + file copy ${worksrcpath}/doc ${destroot}${prefix}/share/doc/${name} } variant jiv { Modified: trunk/dports/graphics/jbigkit/Portfile =================================================================== --- trunk/dports/graphics/jbigkit/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/graphics/jbigkit/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -32,33 +32,33 @@ test.target test destroot { - xinstall -m 755 -d ${destroot}/${prefix}/bin \ - ${destroot}/${prefix}/include ${destroot}/${prefix}/lib \ - ${destroot}/${prefix}/share/man/man1 \ - ${destroot}/${prefix}/share/doc/${name} \ - ${destroot}/${prefix}/share/examples + xinstall -m 755 -d ${destroot}${prefix}/bin \ + ${destroot}${prefix}/include ${destroot}${prefix}/lib \ + ${destroot}${prefix}/share/man/man1 \ + ${destroot}${prefix}/share/doc/${name} \ + ${destroot}${prefix}/share/examples xinstall -m 755 -W ${worksrcpath}/pbmtools jbgtopbm pbmtojbg \ - ${destroot}/${prefix}/bin + ${destroot}${prefix}/bin xinstall -m 644 -W ${worksrcpath}/pbmtools jbgtopbm.1 pbmtojbg.1 \ - ${destroot}/${prefix}/share/man/man1 + ${destroot}${prefix}/share/man/man1 xinstall -m 644 -W ${worksrcpath}/libjbig jbig.h \ - ${destroot}/${prefix}/include + ${destroot}${prefix}/include xinstall -m 644 -W ${worksrcpath}/libjbig libjbig.a \ - ${destroot}/${prefix}/lib - system "ranlib ${destroot}/${prefix}/lib/libjbig.a" + ${destroot}${prefix}/lib + system "ranlib ${destroot}${prefix}/lib/libjbig.a" xinstall -m 644 -W ${worksrcpath} ANNOUNCE CHANGES COPYING INSTALL TODO \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath}/libjbig jbig.doc \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} file copy ${worksrcpath}/examples \ - ${destroot}/${prefix}/share/examples/${name} + ${destroot}${prefix}/share/examples/${name} } platform darwin { patchfiles-append patch-Makefile_darwin patch-libjbig_Makefile_darwin post-destroot { xinstall -m 644 -W ${worksrcpath}/libjbig libjbig.1.dylib \ - ${destroot}/${prefix}/lib - system "ln -s libjbig.1.dylib ${destroot}/${prefix}/lib/libjbig.dylib" + ${destroot}${prefix}/lib + system "ln -s libjbig.1.dylib ${destroot}${prefix}/lib/libjbig.dylib" } } Modified: trunk/dports/graphics/pgplot/Portfile =================================================================== --- trunk/dports/graphics/pgplot/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/graphics/pgplot/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -58,17 +58,17 @@ } destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/${name} \ - ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/${name} \ + ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} grfont.dat rgb.txt \ - ${destroot}/${prefix}/share/${name} + ${destroot}${prefix}/share/${name} xinstall -m 644 -W ${worksrcpath} libpgplot.a libcpgplot.a \ - ${destroot}/${prefix}/lib - system "ranlib ${destroot}/${prefix}/lib/libpgplot.a \ - ${destroot}/${prefix}/lib/libcpgplot.a" - xinstall -m 644 -W ${worksrcpath} cpgplot.h ${destroot}/${prefix}/include + ${destroot}${prefix}/lib + system "ranlib ${destroot}${prefix}/lib/libpgplot.a \ + ${destroot}${prefix}/lib/libcpgplot.a" + xinstall -m 644 -W ${worksrcpath} cpgplot.h ${destroot}${prefix}/include xinstall -m 644 -W ${worksrcpath} pgplot.doc ../copyright.notice \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } platform darwin { @@ -104,7 +104,7 @@ post-destroot { xinstall -m 755 -W ${worksrcpath} pgdisp pgxwin_server \ - ${destroot}/${prefix}/bin + ${destroot}${prefix}/bin } } @@ -121,7 +121,7 @@ post-destroot { xinstall -m 755 -W ${worksrcpath} libpgplot.dylib \ - ${destroot}/${prefix}/lib + ${destroot}${prefix}/lib } } @@ -129,7 +129,7 @@ variant demos { post-destroot { foreach f [glob {pgdemo[1-9]} {pgdemo1[0-7]}] { - xinstall -m 755 -W ${worksrcpath} $f ${destroot}/${prefix}/bin + xinstall -m 755 -W ${worksrcpath} $f ${destroot}${prefix}/bin } } } Modified: trunk/dports/graphics/potrace/Portfile =================================================================== --- trunk/dports/graphics/potrace/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/graphics/potrace/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -28,9 +28,9 @@ configure.args --mandir=${prefix}/share/man post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} AUTHORS COPYING ChangeLog INSTALL \ - NEWS README ${destroot}/${prefix}/share/doc/${name} + NEWS README ${destroot}${prefix}/share/doc/${name} } variant metric_default { Modified: trunk/dports/iphone/iphone-libwrap/Portfile =================================================================== --- trunk/dports/iphone/iphone-libwrap/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/iphone/iphone-libwrap/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -39,7 +39,7 @@ destroot { global iphone_prefix - set iphone_destdir_prefix ${destroot}/${iphone_prefix}/root/${prefix} + set iphone_destdir_prefix ${destroot}/${iphone_prefix}/root${prefix} # Install binaries for phone access xinstall -m 755 -d ${iphone_destdir_prefix} Modified: trunk/dports/java/unicodeconverter-java/Portfile =================================================================== --- trunk/dports/java/unicodeconverter-java/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/java/unicodeconverter-java/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -38,12 +38,12 @@ build {} destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/java \ - ${destroot}/${prefix}/share/doc/${name} - xinstall -m 755 -W ${worksrcpath} Uni ${destroot}/${prefix}/bin - xinstall -m 644 -W ${worksrcpath} Uni.jar ${destroot}/${prefix}/share/java + xinstall -m 755 -d ${destroot}${prefix}/share/java \ + ${destroot}${prefix}/share/doc/${name} + xinstall -m 755 -W ${worksrcpath} Uni ${destroot}${prefix}/bin + xinstall -m 644 -W ${worksrcpath} Uni.jar ${destroot}${prefix}/share/java xinstall -m 644 -W ${worksrcpath} readme.html versionchanges.html \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} # Build a nice .app if {[variant_isset darwin]} { set ucAppPath ${destroot}/Applications/MacPorts/UnicodeConverter.app Modified: trunk/dports/lang/cm3/Portfile =================================================================== --- trunk/dports/lang/cm3/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/lang/cm3/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -76,20 +76,20 @@ destroot { # create a link to cm3 (m3 compiler) in ${prefix}/cm3/bin - system "cd ${destroot}/${prefix}/cm3/bin/ && ln -s ../pkg/cm3/PPC_DARWIN/cm3" + system "cd ${destroot}${prefix}/cm3/bin/ && ln -s ../pkg/cm3/PPC_DARWIN/cm3" # copy bootstrap configuration file to destroot file copy -force \ - ${filespath}/${os.platform}-cm3.cfg ${destroot}/${prefix}/cm3/bin/cm3.cfg + ${filespath}/${os.platform}-cm3.cfg ${destroot}${prefix}/cm3/bin/cm3.cfg # update file paths to reflect final installation paths reinplace \ s|@INSTALL_ROOT@|\"${prefix}/cm3\"|g \ - ${destroot}/${prefix}/cm3/bin/cm3.cfg + ${destroot}${prefix}/cm3/bin/cm3.cfg reinplace \ s|@USE_ROOT@|\"${prefix}/cm3\"|g \ - ${destroot}/${prefix}/cm3/bin/cm3.cfg + ${destroot}${prefix}/cm3/bin/cm3.cfg reinplace \ s|@PREFIX@|\"${prefix}/cm3\"|g \ - ${destroot}/${prefix}/cm3/bin/cm3.cfg + ${destroot}${prefix}/cm3/bin/cm3.cfg } Modified: trunk/dports/lang/gcj34/Portfile =================================================================== --- trunk/dports/lang/gcj34/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/lang/gcj34/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -54,17 +54,17 @@ } } set gcjLinkFiles { gcj gcjh gij grepjar jcf-dump jv-convert jv-scan } - cd ${destroot}/${prefix}/bin + cd ${destroot}${prefix}/bin foreach gcjBinFile ${gcjLinkFiles} { system "ln -s ../${name}-${version}/bin/${gcjBinFile} ." } - cd ${destroot}/${prefix}/share/man/man1 + cd ${destroot}${prefix}/share/man/man1 foreach gcjManFile ${gcjLinkFiles} { system "ln -s \ ../../../${name}-${version}/share/man/man1/${gcjManFile}.1.gz ." } - xinstall -m 755 -d ${destroot}/${prefix}/lib/pkgconfig - cd ${destroot}/${prefix}/lib/pkgconfig + xinstall -m 755 -d ${destroot}${prefix}/lib/pkgconfig + cd ${destroot}${prefix}/lib/pkgconfig system "ln -s ../../${name}-${version}/lib/pkgconfig/libgcj.pc ." } Modified: trunk/dports/lang/lisp-hyperspec/Portfile =================================================================== --- trunk/dports/lang/lisp-hyperspec/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/lang/lisp-hyperspec/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -53,8 +53,8 @@ build { } destroot { - file mkdir ${destroot}/${prefix}/share/doc/lisp/${distname} - system "cd ${destroot}/${prefix}/share/doc/lisp/${distname} && \ + file mkdir ${destroot}${prefix}/share/doc/lisp/${distname} + system "cd ${destroot}${prefix}/share/doc/lisp/${distname} && \ ${extract.cmd} ${extract.pre_args} ${distpath}/${distfile} ${extract.post_args}" - system "chown -R root.admin ${destroot}/${prefix}/share/doc/lisp" + system "chown -R root.admin ${destroot}${prefix}/share/doc/lisp" } Modified: trunk/dports/lang/nhc98/Portfile =================================================================== --- trunk/dports/lang/nhc98/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/lang/nhc98/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -35,7 +35,7 @@ patch-config-errno.c \ patch-errnogen.c -configure.args --mandir=/${prefix}/share/man/man1 \ +configure.args --mandir=${prefix}/share/man/man1 \ --buildwith=gcc build { cd ${worksrcpath} Modified: trunk/dports/lang/odgcc40/Portfile =================================================================== --- trunk/dports/lang/odgcc40/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/lang/odgcc40/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -54,7 +54,7 @@ destroot { file delete -force ${destroot}${prefix} - file copy -force ${workpath}/dst/${prefix} ${destroot}${prefix} + file copy -force ${workpath}/dst${prefix} ${destroot}${prefix} file delete -force ${destroot}${prefix}/share/man/man7 \ ${destroot}${prefix}/share/info Modified: trunk/dports/lang/perl5.8/Portfile =================================================================== --- trunk/dports/lang/perl5.8/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/lang/perl5.8/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -42,7 +42,7 @@ test.run yes post-destroot { - foreach man3File [glob ${destroot}/${prefix}/share/man/man3/*] { + foreach man3File [glob ${destroot}${prefix}/share/man/man3/*] { file rename ${man3File} ${man3File}pm } } Modified: trunk/dports/mail/hypermail/Portfile =================================================================== --- trunk/dports/mail/hypermail/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/mail/hypermail/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -32,7 +32,7 @@ --with-cgidir=\\\${prefix}/share/hypermail/cgi-bin \ --with-htmldir=\\\${prefix}/share/doc/hypermail \ -destroot.args prefix=${destroot}/${prefix} +destroot.args prefix=${destroot}${prefix} variant gdbm { depends_lib lib:libgdbm:gdbm configure.args-delete --without-gdbm Modified: trunk/dports/math/djbfft/Portfile =================================================================== --- trunk/dports/math/djbfft/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/math/djbfft/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -24,7 +24,7 @@ checksums md5 9349eff24c1f9fdfb98cfb51bece8efb -configure { reinplace s|/usr/local/djbfft|${destroot}/${prefix}| \ +configure { reinplace s|/usr/local/djbfft|${destroot}${prefix}| \ ${worksrcpath}/conf-home } build.target Modified: trunk/dports/math/maxima/Portfile =================================================================== --- trunk/dports/math/maxima/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/math/maxima/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -64,8 +64,8 @@ build.target all pdf pre-destroot { - system "install -d -m 755 ${destroot}/${prefix}/share/${name}/${version}/doc/pdf" - system "install -c -m 644 ${workpath}/${worksrcdir}/doc/info/maxima.pdf ${destroot}/${prefix}/share/${name}/${version}/doc/pdf" + system "install -d -m 755 ${destroot}${prefix}/share/${name}/${version}/doc/pdf" + system "install -c -m 644 ${workpath}/${worksrcdir}/doc/info/maxima.pdf ${destroot}${prefix}/share/${name}/${version}/doc/pdf" } } Modified: trunk/dports/math/oleo/Portfile =================================================================== --- trunk/dports/math/oleo/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/math/oleo/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -35,8 +35,8 @@ --infodir=${prefix}/share/info post-destroot { - file rename ${destroot}/${prefix}/share/oleo/oleo.html \ - ${destroot}/${prefix}/share/doc/${name}/oleo.html + file rename ${destroot}${prefix}/share/oleo/oleo.html \ + ${destroot}${prefix}/share/doc/${name}/oleo.html } variant x11 { Modified: trunk/dports/multimedia/vcdimager/Portfile =================================================================== --- trunk/dports/multimedia/vcdimager/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/multimedia/vcdimager/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -34,9 +34,9 @@ --with-xml-prefix=${prefix} post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} AUTHORS BUGS COPYING FAQ HACKING \ - NEWS README THANKS TODO ${destroot}/${prefix}/share/doc/${name} - file delete -force ${destroot}/${prefix}/share/info/dir + NEWS README THANKS TODO ${destroot}${prefix}/share/doc/${name} + file delete -force ${destroot}${prefix}/share/info/dir } Modified: trunk/dports/net/cvsup/Portfile =================================================================== --- trunk/dports/net/cvsup/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/net/cvsup/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -31,8 +31,8 @@ # Add ${prefix}/cm3/bin to our path build.env PATH=$env(PATH):${prefix}/cm3/bin destroot.env ${build.env} -destroot.args PREFIX=${destroot}/${prefix}/ M3=cm3 \ - MANDIR=${destroot}/${prefix}/share/man +destroot.args PREFIX=${destroot}${prefix}/ M3=cm3 \ + MANDIR=${destroot}${prefix}/share/man livecheck.check regex livecheck.regex changes in development snapshot (\[0-9\.\]+\[a-z\]*) Modified: trunk/dports/net/gtk-gnutella/Portfile =================================================================== --- trunk/dports/net/gtk-gnutella/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/net/gtk-gnutella/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -30,7 +30,7 @@ configure.args -Oders \ -D prefix=${prefix} \ -D official=true \ - -D ccflags='-I/${prefix}/include' \ + -D ccflags='-I${prefix}/include' \ -D sysman=${prefix}/share/man \ -D libpth="${prefix}/lib /usr/lib" \ -D remotectrl=true -D gtkversion=2 Modified: trunk/dports/net/lambdamoo/Portfile =================================================================== --- trunk/dports/net/lambdamoo/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/net/lambdamoo/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -21,6 +21,6 @@ destroot { xinstall -m 755 -d ${destroot}${prefix}/bin - xinstall -m 755 -W ${worksrcpath} moo ${destroot}/${prefix}/bin + xinstall -m 755 -W ${worksrcpath} moo ${destroot}${prefix}/bin } Modified: trunk/dports/net/madflute/Portfile =================================================================== --- trunk/dports/net/madflute/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/net/madflute/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -38,7 +38,7 @@ build.args PREFIX=${prefix} destroot { - xinstall -d -m 755 ${destroot}/${prefix}/bin + xinstall -d -m 755 ${destroot}${prefix}/bin xinstall -m 755 ${worksrcpath}/bin/flute \ - ${destroot}/${prefix}/bin + ${destroot}${prefix}/bin } Modified: trunk/dports/net/tcp_wrappers/Portfile =================================================================== --- trunk/dports/net/tcp_wrappers/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/net/tcp_wrappers/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -40,18 +40,18 @@ destroot { xinstall -m 755 -W ${worksrcpath} safe_finger tcpd tcpdchk tcpdmatch \ - try-from ${destroot}/${prefix}/sbin + try-from ${destroot}${prefix}/sbin xinstall -m 644 -W ${worksrcpath} hosts_access.3 \ - ${destroot}/${prefix}/share/man/man3 + ${destroot}${prefix}/share/man/man3 xinstall -m 644 -W ${worksrcpath} hosts_access.5 hosts_options.5 \ - ${destroot}/${prefix}/share/man/man5 + ${destroot}${prefix}/share/man/man5 xinstall -m 644 -W ${worksrcpath} tcpd.8 tcpdchk.8 tcpdmatch.8 \ - ${destroot}/${prefix}/share/man/man8 - xinstall -m 644 -W ${worksrcpath} libwrap.a ${destroot}/${prefix}/lib - xinstall -m 644 -W ${worksrcpath} tcpd.h ${destroot}/${prefix}/include - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/man/man8 + xinstall -m 644 -W ${worksrcpath} libwrap.a ${destroot}${prefix}/lib + xinstall -m 644 -W ${worksrcpath} tcpd.h ${destroot}${prefix}/include + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} BLURB DISCLAIMER README README.NIS \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } platform sunos { Modified: trunk/dports/net/traceroute/Portfile =================================================================== --- trunk/dports/net/traceroute/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/net/traceroute/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -25,7 +25,7 @@ post-destroot { xinstall -m 444 ${worksrcpath}/traceroute.8 \ - ${destroot}/${prefix}/share/man/man8/ + ${destroot}${prefix}/share/man/man8/ } platform darwin 8 powerpc { Modified: trunk/dports/perl/p5-template-toolkit/Portfile =================================================================== --- trunk/dports/perl/p5-template-toolkit/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/perl/p5-template-toolkit/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -30,19 +30,19 @@ # installed already, earlier in the install; this step causes the install # to use the destroot'd version, then we switch it back in post-destroot post-configure { - reinplace "s|${prefix}|${destroot}/${prefix}|g" \ + reinplace "s|${prefix}|${destroot}${prefix}|g" \ ${worksrcpath}/docs/ttree.cfg ${worksrcpath}/examples/ttree.cfg } destroot.target-append tt2_install tt2_splash tt2_html_docs tt2_examples post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} INSTALL README \ - ${destroot}/${prefix}/share/doc/${name} - reinplace "s|${destroot}/${prefix}|${prefix}|g" \ - ${destroot}/${prefix}/share/tt2/docs/ttree.cfg \ - ${destroot}/${prefix}/share/tt2/examples/ttree.cfg + ${destroot}${prefix}/share/doc/${name} + reinplace "s|${destroot}${prefix}|${prefix}|g" \ + ${destroot}${prefix}/share/tt2/docs/ttree.cfg \ + ${destroot}${prefix}/share/tt2/examples/ttree.cfg } variant DBI { Modified: trunk/dports/print/espgs/Portfile =================================================================== --- trunk/dports/print/espgs/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/print/espgs/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -61,10 +61,10 @@ destroot.destdir prefix=${destroot}${prefix} datadir=${destroot}${prefix}/share post-destroot { - system "mkdir -p ${destroot}/${prefix}/share/ghostscript/" + system "mkdir -p ${destroot}${prefix}/share/ghostscript/" system "cd ${workpath} && \ tar -cf - fonts | \ - tar -xf - -C ${destroot}/${prefix}/share/ghostscript/" + tar -xf - -C ${destroot}${prefix}/share/ghostscript/" } Modified: trunk/dports/print/freetype1/Portfile =================================================================== --- trunk/dports/print/freetype1/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/print/freetype1/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -54,12 +54,12 @@ } } post-destroot { - system "cd ${destroot}/${prefix} \ + system "cd ${destroot}${prefix} \ && mv include/freetype include/freetype1" # remove ttf2pfb's getafm, as it conflicts with psutils' - file delete "${destroot}/${prefix}/bin/getafm" + file delete "${destroot}${prefix}/bin/getafm" # remove ttf2pfb's t1asm, as it conflicts with t1utils' - file delete "${destroot}/${prefix}/bin/t1asm" + file delete "${destroot}${prefix}/bin/t1asm" } variant x86 { patchfiles-append patch-configure Modified: trunk/dports/python/py-apsw/Portfile =================================================================== --- trunk/dports/python/py-apsw/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-apsw/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -33,8 +33,8 @@ } post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} apsw.html \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-atox/Portfile =================================================================== --- trunk/dports/python/py-atox/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-atox/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -26,10 +26,10 @@ checksums md5 69859a646934fc555078e8c70007ed80 post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} README.txt \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/doc/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-cssutils/Portfile =================================================================== --- trunk/dports/python/py-cssutils/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-cssutils/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -20,10 +20,10 @@ checksums md5 cb91bcdce7846a910f5fca92707e4fa1 post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} - file rename ${destroot}/${prefix}/LICENSE.txt \ - ${destroot}/${prefix}/share/doc/${name}/LICENSE.txt + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} + file rename ${destroot}${prefix}/LICENSE.txt \ + ${destroot}${prefix}/share/doc/${name}/LICENSE.txt xinstall -m 644 -W ${worksrcpath} README.txt \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-dsv/Portfile =================================================================== --- trunk/dports/python/py-dsv/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-dsv/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -23,9 +23,9 @@ rmd160 98a95b4311498c8660e3780787152b3da16522d6 post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} README \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } variant wx { Modified: trunk/dports/python/py-google/Portfile =================================================================== --- trunk/dports/python/py-google/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-google/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -24,8 +24,8 @@ depends_lib port:py-soappy post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/doc/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-harvestman/Portfile =================================================================== --- trunk/dports/python/py-harvestman/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-harvestman/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -27,10 +27,10 @@ depends_lib-append port:py-sgmlop post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} INSTALL.txt LICENSE.txt Readme.txt \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/doc/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-m2crypto/Portfile =================================================================== --- trunk/dports/python/py-m2crypto/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-m2crypto/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -22,9 +22,9 @@ build.args --openssl=${prefix} post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/doc/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } livecheck.check regex Modified: trunk/dports/python/py-pcapy/Portfile =================================================================== --- trunk/dports/python/py-pcapy/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-pcapy/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -28,10 +28,10 @@ LDFLAGS=-L${prefix}/lib post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} - eval file rename [glob ${destroot}/${prefix}/share/doc/pcapy/*] \ - ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} + eval file rename [glob ${destroot}${prefix}/share/doc/pcapy/*] \ + ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} ChangeLog PKG-INFO \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-pyb/Portfile =================================================================== --- trunk/dports/python/py-pyb/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-pyb/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -21,10 +21,10 @@ checksums md5 66aee64f05f81bcae00172d143c3449b post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} CHANGELOG.txt README.txt \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/docs/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-pyqt3/Portfile =================================================================== --- trunk/dports/python/py-pyqt3/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-pyqt3/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -42,12 +42,12 @@ test.cmd cd qt && ${prefix}/bin/python2.4 -c 'import qt' post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc - file copy ${worksrcpath}/doc ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc + file copy ${worksrcpath}/doc ${destroot}${prefix}/share/doc/${name} file copy ${worksrcpath}/examples2 \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} file copy ${worksrcpath}/examples3 \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} \ ChangeLog LICENSE NEWS README THANKS \ ${destroot}${prefix}/share/doc/${name} Modified: trunk/dports/python/py-pythoncad/Portfile =================================================================== --- trunk/dports/python/py-pythoncad/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-pythoncad/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -30,9 +30,9 @@ } post-destroot { - xinstall -m 755 -W ${worksrcpath} gtkpycad.py ${destroot}/${prefix}/bin - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -W ${worksrcpath} gtkpycad.py ${destroot}${prefix}/bin + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} NEWS PKG-INFO INSTALL README prefs.py \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-repl/Portfile =================================================================== --- trunk/dports/python/py-repl/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-repl/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -19,8 +19,8 @@ checksums md5 f285e5c0b8d43b86e52fdd1b25e467eb post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} CHANGES CREDITS README TODO \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-roundup/Portfile =================================================================== --- trunk/dports/python/py-roundup/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-roundup/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -29,9 +29,9 @@ } post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/doc/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} eval reinplace "s|${destroot}${prefix}|${prefix}|g" \ - [glob ${destroot}/${prefix}/bin/*] + [glob ${destroot}${prefix}/bin/*] } Modified: trunk/dports/python/py-sgmlop/Portfile =================================================================== --- trunk/dports/python/py-sgmlop/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-sgmlop/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -23,8 +23,8 @@ checksums md5 be45f08ea057727d92b708dd72126e47 post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} xinstall -m 644 -W ${worksrcpath} README \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-tconfpy/Portfile =================================================================== --- trunk/dports/python/py-tconfpy/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-tconfpy/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -27,15 +27,15 @@ } post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} - xinstall -m 755 -W ${worksrcpath} test-tc.py ${destroot}/${prefix}/bin + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} + xinstall -m 755 -W ${worksrcpath} test-tc.py ${destroot}${prefix}/bin xinstall -m 644 -W ${worksrcpath} tconfpy.3.gz \ - ${destroot}/${prefix}/share/man/man3 + ${destroot}${prefix}/share/man/man3 xinstall -m 644 -W ${worksrcpath} test-tc.1.gz \ - ${destroot}/${prefix}/share/man/man1 + ${destroot}${prefix}/share/man/man1 xinstall -m 644 -W ${worksrcpath} CHANGELOG.txt READ-1ST.txt WHATSNEW.txt \ tconfpy-license.txt tconfpy.html tconfpy.pdf tconfpy.ps tconfpy.py.ps \ tconfpy.txt test-tc.html test-tc.pdf test-tc.ps test-tc.py.ps \ - test-tc.txt ${destroot}/${prefix}/share/doc/${name} + test-tc.txt ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-texml/Portfile =================================================================== --- trunk/dports/python/py-texml/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-texml/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -31,16 +31,16 @@ build {} destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/${name} eval file copy [glob ${worksrcpath}/bin/*] \ - ${destroot}/${prefix}/share/${name} + ${destroot}${prefix}/share/${name} system "ln -s ${prefix}/share/${name}/texml.py \ - ${destroot}/${prefix}/bin/texml.py" - file copy ${worksrcpath}/dtd ${destroot}/${prefix}/share/${name} - file copy ${worksrcpath}/tests ${destroot}/${prefix}/share/${name} + ${destroot}${prefix}/bin/texml.py" + file copy ${worksrcpath}/dtd ${destroot}${prefix}/share/${name} + file copy ${worksrcpath}/tests ${destroot}${prefix}/share/${name} xinstall -m 644 -W ${worksrcpath} ChangeLog.txt license.txt readme.txt \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/docs/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-timeformat/Portfile =================================================================== --- trunk/dports/python/py-timeformat/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-timeformat/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -23,8 +23,8 @@ checksums md5 04f42919421c65a6f1c404dd522fabef post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/documentation/html/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } Modified: trunk/dports/python/py-tlslite/Portfile =================================================================== --- trunk/dports/python/py-tlslite/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/python/py-tlslite/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -24,9 +24,9 @@ checksums md5 2d5f7efafa5d04598b21f1889e981207 post-destroot { - file mkdir ${destroot}/${prefix}/share/doc/${name} + file mkdir ${destroot}${prefix}/share/doc/${name} xinstall -m 644 ${worksrcpath}/readme.txt \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} foreach f {tls.py tlsdb.py} { reinplace "s|#! python|#!${python.bin}|g" ${destroot}${prefix}/bin/${f} } Modified: trunk/dports/science/gplcver/Portfile =================================================================== --- trunk/dports/science/gplcver/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/science/gplcver/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -44,7 +44,7 @@ # install executable - xinstall -m 755 -W ${worksrcpath} bin/cver ${destroot}/${prefix}/bin + xinstall -m 755 -W ${worksrcpath} bin/cver ${destroot}${prefix}/bin # create directory for everything else Modified: trunk/dports/science/mpich/Portfile =================================================================== --- trunk/dports/science/mpich/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/science/mpich/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -22,7 +22,7 @@ build.target -destroot.destdir PREFIX=${destroot}/${prefix} +destroot.destdir PREFIX=${destroot}${prefix} post-destroot { file delete -force ${destroot}${prefix}/man/mandesc \ ${destroot}${prefix}/share/man \ Modified: trunk/dports/security/prelude-manager/Portfile =================================================================== --- trunk/dports/security/prelude-manager/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/security/prelude-manager/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -31,7 +31,7 @@ port:libprelude post-destroot { - system "touch ${destroot}/${prefix}/var/spool/prelude-manager/.turd" + system "touch ${destroot}${prefix}/var/spool/prelude-manager/.turd" reinplace "s|= /var|= ${prefix}/var|g" ${destroot}${prefix}/etc/prelude-manager/prelude-manager.conf } variant no_ssl { Modified: trunk/dports/sysutils/macutil/Portfile =================================================================== --- trunk/dports/sysutils/macutil/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/sysutils/macutil/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -56,15 +56,15 @@ use_configure no -destroot.destdir BINDIR=${destroot}/${prefix}/bin +destroot.destdir BINDIR=${destroot}${prefix}/bin post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/man/man1 \ - ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/man/man1 \ + ${destroot}${prefix}/share/doc/${name} eval xinstall -m 644 -W ${worksrcpath} [glob ${worksrcpath}/man/*.1] \ - ${destroot}/${prefix}/share/man/man1 + ${destroot}${prefix}/share/man/man1 eval xinstall -m 644 -W ${worksrcpath} [glob ${worksrcpath}/doc/*] \ - README ${destroot}/${prefix}/share/doc/${name} + README ${destroot}${prefix}/share/doc/${name} } platform darwin { Modified: trunk/dports/textproc/pstotext/Portfile =================================================================== --- trunk/dports/textproc/pstotext/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/textproc/pstotext/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -24,11 +24,11 @@ use_configure no destroot { - file mkdir "${destroot}/${prefix}/bin" - file mkdir "${destroot}/${prefix}/share/man/man1" - file mkdir "${destroot}/${prefix}/share/doc/pstotext" - system "install -m 755 ${worksrcpath}/pstotext ${destroot}/${prefix}/bin" - system "install -m 644 ${worksrcpath}/pstotext.1 ${destroot}/${prefix}/share/man/man1" - system "install -m 644 ${worksrcpath}/pstotext.txt ${destroot}/${prefix}/share/doc/pstotext" + file mkdir "${destroot}${prefix}/bin" + file mkdir "${destroot}${prefix}/share/man/man1" + file mkdir "${destroot}${prefix}/share/doc/pstotext" + system "install -m 755 ${worksrcpath}/pstotext ${destroot}${prefix}/bin" + system "install -m 644 ${worksrcpath}/pstotext.1 ${destroot}${prefix}/share/man/man1" + system "install -m 644 ${worksrcpath}/pstotext.txt ${destroot}${prefix}/share/doc/pstotext" } Modified: trunk/dports/textproc/tth/Portfile =================================================================== --- trunk/dports/textproc/tth/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/textproc/tth/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -31,9 +31,9 @@ } destroot { - xinstall -m 755 ${workpath}/${distname}/tth ${destroot}/${prefix}/bin - xinstall -m 755 ${workpath}/${distname}/latex2gif ${destroot}/${prefix}/bin - xinstall -m 755 ${workpath}/${distname}/ps2gif ${destroot}/${prefix}/bin - xinstall -m 755 ${workpath}/${distname}/ps2png ${destroot}/${prefix}/bin - xinstall -m 644 ${workpath}/${distname}/tth.1 ${destroot}/${prefix}/share/man/man1 + xinstall -m 755 ${workpath}/${distname}/tth ${destroot}${prefix}/bin + xinstall -m 755 ${workpath}/${distname}/latex2gif ${destroot}${prefix}/bin + xinstall -m 755 ${workpath}/${distname}/ps2gif ${destroot}${prefix}/bin + xinstall -m 755 ${workpath}/${distname}/ps2png ${destroot}${prefix}/bin + xinstall -m 644 ${workpath}/${distname}/tth.1 ${destroot}${prefix}/share/man/man1 } Modified: trunk/dports/www/analog/Portfile =================================================================== --- trunk/dports/www/analog/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/www/analog/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -39,17 +39,17 @@ #build.cmd cd ${worksrcpath}/src && make destroot { - xinstall -m 755 -d "${destroot}/${prefix}/bin" \ - "${destroot}/${prefix}/share/doc/${name}" \ - "${destroot}/${prefix}/share/man/man1" \ - "${destroot}/${prefix}/share/${name}" + xinstall -m 755 -d "${destroot}${prefix}/bin" \ + "${destroot}${prefix}/share/doc/${name}" \ + "${destroot}${prefix}/share/man/man1" \ + "${destroot}${prefix}/share/${name}" cd ${worksrcpath} - file copy examples how-to images lang "${destroot}/${prefix}/share/${name}" + file copy examples how-to images lang "${destroot}${prefix}/share/${name}" eval file copy [glob ${worksrcpath}/docs/*] \ - "${destroot}/${prefix}/share/doc/${name}" + "${destroot}${prefix}/share/doc/${name}" xinstall -m 644 -W ${worksrcpath} ${name}.man \ - "${destroot}/${prefix}/share/man/man1/${name}.1" - xinstall -m 755 -W ${worksrcpath} ${name} "${destroot}/${prefix}/bin" + "${destroot}${prefix}/share/man/man1/${name}.1" + xinstall -m 755 -W ${worksrcpath} ${name} "${destroot}${prefix}/bin" } platform darwin { Modified: trunk/dports/www/wml/Portfile =================================================================== --- trunk/dports/www/wml/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/www/wml/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -25,7 +25,7 @@ configure.args --with-perl=${prefix}/bin/perl --without-modules configure.env CPATH=${prefix}/include -destroot.destdir prefix=${destroot}/${prefix} \ +destroot.destdir prefix=${destroot}${prefix} \ mandir=${destroot}${prefix}/share/man platform darwin 8 { Modified: trunk/dports/x11/gtk2/Portfile =================================================================== --- trunk/dports/x11/gtk2/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/x11/gtk2/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -104,7 +104,7 @@ post-destroot { system "install -d -m 755 ${destroot}${prefix}/etc/gtk-2.0" system "cp ${filespath}/gdk-pixbuf.loaders ${destroot}${prefix}/etc/gtk-2.0/gdk-pixbuf.loaders" - reinplace "s|__PREFIX__|${prefix}|g" "${destroot}/${prefix}/etc/gtk-2.0/gdk-pixbuf.loaders" + reinplace "s|__PREFIX__|${prefix}|g" "${destroot}${prefix}/etc/gtk-2.0/gdk-pixbuf.loaders" system "env LANG=C DYLD_LIBRARY_PATH=${destroot}${prefix}/lib ${destroot}${prefix}/bin/gtk-query-immodules-2.0 ${destroot}${prefix}/lib/gtk-2.0/2.10.0/immodules/*.so | sed -e 's|${destroot}||g' > ${destroot}${prefix}/etc/gtk-2.0/gtk.immodules" } Modified: trunk/dports/x11/gtk28/Portfile =================================================================== --- trunk/dports/x11/gtk28/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/x11/gtk28/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -45,7 +45,7 @@ post-destroot { system "install -d -m 755 ${destroot}${prefix}/etc/gtk-2.0" system "cp ${filespath}/gdk-pixbuf.loaders ${destroot}${prefix}/etc/gtk-2.0/gdk-pixbuf.loaders" - reinplace "s|__PREFIX__|${prefix}|g" "${destroot}/${prefix}/etc/gtk-2.0/gdk-pixbuf.loaders" + reinplace "s|__PREFIX__|${prefix}|g" "${destroot}${prefix}/etc/gtk-2.0/gdk-pixbuf.loaders" system "env LANG=C DYLD_LIBRARY_PATH=${destroot}${prefix}/lib ${destroot}${prefix}/bin/gtk-query-immodules-2.0 ${destroot}${prefix}/lib/gtk-2.0/2.4.0/immodules/*.so | sed -e 's|${destroot}||g' > ${destroot}${prefix}/etc/gtk-2.0/gtk.immodules" } pre-activate { Modified: trunk/dports/x11/mlterm/Portfile =================================================================== --- trunk/dports/x11/mlterm/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/x11/mlterm/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -29,9 +29,9 @@ configure.args --mandir=${prefix}/share/man post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} eval file copy [glob ${worksrcpath}/doc/*] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } # Enable antialiasing support Modified: trunk/dports/x11/wxgtk/Portfile =================================================================== --- trunk/dports/x11/wxgtk/Portfile 2007-12-23 08:44:11 UTC (rev 32255) +++ trunk/dports/x11/wxgtk/Portfile 2007-12-23 09:18:47 UTC (rev 32256) @@ -29,9 +29,9 @@ --with-freetype --with-zlib post-destroot { - xinstall -m 755 -d ${destroot}/${prefix}/share/doc/${name} + xinstall -m 755 -d ${destroot}${prefix}/share/doc/${name} eval xinstall -m 644 [glob ${worksrcpath}/*.txt] \ - ${destroot}/${prefix}/share/doc/${name} + ${destroot}${prefix}/share/doc/${name} } variant opengl {