# HG changeset patch # User Christopher Rogers # Date 1297571330 0 # Node ID f6d0e56bc02ccfbd768098fcba5876707165b4ca # Parent 60fac07eb6a5b4c920f385e198b631547ac4f3a1 Fix: wxWidgets to install contrib files into same DESTDIR now. This will save 600mb since we will not need the source folder anymore to genpkg files. diff -r 60fac07eb6a5 -r f6d0e56bc02c wxWidgets-dev/receipt --- a/wxWidgets-dev/receipt Sun Feb 13 04:25:50 2011 +0000 +++ b/wxWidgets-dev/receipt Sun Feb 13 04:28:50 2011 +0000 @@ -18,5 +18,4 @@ cp -a $_pkg/usr/include/ $fs/usr # Just copy setup.h and contrib include cp -a $_pkg/usr/lib/wx/include $fs/usr/lib/wx - cp -a $src/contrib/_pkg/usr/include/ $fs/usr } diff -r 60fac07eb6a5 -r f6d0e56bc02c wxWidgets/receipt --- a/wxWidgets/receipt Sun Feb 13 04:25:50 2011 +0000 +++ b/wxWidgets/receipt Sun Feb 13 04:28:50 2011 +0000 @@ -21,17 +21,13 @@ { cd $src ./configure \ - --prefix=/usr \ --enable-shared \ - --enable-unicode \ - --infodir=/usr/share/info \ - --mandir=/usr/share/man \ - $CONFIGURE_ARGS && - make -j 4 && - make DESTDIR=$src/_pkg install && + --enable-unicode && + make && + make DESTDIR=$DESTDIR install && cd $src/contrib && - make -j 4 && - make DESTDIR=$src/contrib/_pkg install + make && + make DESTDIR=$DESTDIR install } # Rules to gen a SliTaz package suitable for Tazpkg. @@ -40,7 +36,6 @@ mkdir -p $fs/usr # Copy libs and contrib libs. cp -a $_pkg/usr/lib/ $fs/usr/ - cp -a $src/contrib/_pkg/usr/lib/ $fs/usr/ # Remove devel files. rm -rf $fs/usr/lib/wx/include }