#!/bin/sh CWD=`pwd` PKG=/tmp/package-imagemagick BASEVER=6.1.5 FILEVER=6.1.5-7 PKGVER=6.1.5_7 ARCH=alpha BUILD=1 # --with-x or not --with-x, that is the question. It seems many other # distributions don't compile with X support, but it's been traditional # here. I am moving the prefix to /usr (instead of /usr/X11R6) though, # because many X-linked things are put into /usr now (like GNOME), and # I've heard a few reports of compile failures when this isn't in /usr. # Everyone else does it -- time to follow the path of least resistance. rm -rf $PKG mkdir -p $PKG ( cd /tmp rm -rf ImageMagick-$BASEVER tar xzf $CWD/ImageMagick-$FILEVER.tar.gz cd ImageMagick-$BASEVER chown -R root.root . find . -perm 777 -exec chmod 755 {} \; find . -perm 666 -exec chmod 644 {} \; ./configure --prefix=/usr \ --program-prefix= \ --enable-16bit-pixel \ --with-x \ --with-frozenpaths=no \ --enable-static=no \ --enable-shared \ --with-perl \ $ARCH-alphaslack-linux make make install DESTDIR=$PKG ( cd $PKG # Nothing but a perl upgrade should replace this (and maybe not even that) find . -name perllocal.pod | xargs rm -f ) # DESTDIR is still broken about this, but works well enough otherwise: chmod 644 $PKG/usr/share/man/man3/* mv $PKG/usr/share/man/man3 $PKG/usr/man rmdir $PKG/usr/share/man ( cd $PKG/usr/lib/perl5 # Ditch empty dirs: rmdir */* 2> /dev/null rmdir * 2> /dev/null ) ( cd $PKG find . | xargs file | grep "executable" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null find . | xargs file | grep "shared object" | grep ELF | cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null ) chown -R root.bin $PKG/usr/bin gzip -9 $PKG/usr/man/man?/*.? mkdir -p $PKG/usr/doc/ImageMagick-$FILEVER cp -a www/* $PKG/usr/doc/ImageMagick-$FILEVER cp -a *.txt $PKG/usr/doc/ImageMagick-$FILEVER mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG makepkg -l y -c n ../imagemagick-$PKGVER-$ARCH-$BUILD.tgz ) 2>&1 | tee /tmp/imagick.build.log