diff options
author | Robby Workman <rw@rlworkman.net> | 2010-05-11 22:21:53 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-11 22:21:53 +0200 |
commit | bc71818e74a2890d81eaaef4d4217c222a5cafee (patch) | |
tree | 93e948a04b864d0dafd0316398248f2c41422904 /desktop/icewm/icewm.SlackBuild | |
parent | f286a25d705137066da3260d6c810717e22ea7e0 (diff) | |
download | slackbuilds-bc71818e74a2890d81eaaef4d4217c222a5cafee.tar.gz |
desktop/icewm: Updated for version 1.2.36
Diffstat (limited to 'desktop/icewm/icewm.SlackBuild')
-rw-r--r-- | desktop/icewm/icewm.SlackBuild | 20 |
1 files changed, 12 insertions, 8 deletions
diff --git a/desktop/icewm/icewm.SlackBuild b/desktop/icewm/icewm.SlackBuild index e50c7c7e6f..cba32238bf 100644 --- a/desktop/icewm/icewm.SlackBuild +++ b/desktop/icewm/icewm.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=icewm -VERSION=${VERSION:-1.2.35} +VERSION=${VERSION:-1.2.36} ARCH=${ARCH:-i486} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -61,19 +61,22 @@ CXXFLAGS="$SLKCFLAGS" \ ./configure \ --with-x \ --prefix=/usr \ + --mandir=/usr/man \ --sysconfdir=/etc \ + --docdir=/usr/doc/$PRGNAM-$VERSION \ + --with-docdir=/usr/doc/$PRGNAM-$VERSION \ --enable-corefonts \ - --enable-antialiasing + --enable-antialiasing \ + --disable-static \ + --build=$ARCH-slackware-linux make make install DESTDIR=$PKG -( cd $PKG - find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true - find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -) +find $PKG | xargs file | grep -e "executable" -e "shared object" | grep ELF \ + | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null -( cd $PKG/usr/man +( cd $PKG/usr/man || exit 1 find . -type f -exec gzip -9 {} \; for i in $(find . -type l) ; do ln -s $(readlink $i).gz $i.gz ; rm $i ; done ) @@ -89,7 +92,8 @@ mkdir -p $PKG/usr/man/man1 gzip -9c doc/icewm.1.man > $PKG/usr/man/man1/icewm.1.gz # Add xinitrc for xwmconfig(1) -install -D -m 0755 $CWD/xinitrc.icewm $PKG/etc/X11/xinit/xinitrc.icewm +mkdir -p $PKG/etc/X11/xinit +cat $CWD/xinitrc.icewm > $PKG/etc/X11/xinit/xinitrc.icewm mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc |