diff options
author | João Felipe Santos <joao.eel[at]gmail.com> | 2010-05-13 00:34:06 +0200 |
---|---|---|
committer | David Somero <xgizzmo@slackbuilds.org> | 2010-05-13 00:34:06 +0200 |
commit | 30e2b66f688c34b4b9ae1d92dde17ab327e8e9bd (patch) | |
tree | 956986a438d30629ba0d24e176d158f85dc11005 /misc/chm2pdf/chm2pdf.SlackBuild | |
parent | a92fa1c481e770e01e370f9ff48139c462b7bc00 (diff) | |
download | slackbuilds-30e2b66f688c34b4b9ae1d92dde17ab327e8e9bd.tar.gz |
misc/chm2pdf: Updated for version 0.9.1
Diffstat (limited to 'misc/chm2pdf/chm2pdf.SlackBuild')
-rw-r--r-- | misc/chm2pdf/chm2pdf.SlackBuild | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/misc/chm2pdf/chm2pdf.SlackBuild b/misc/chm2pdf/chm2pdf.SlackBuild index 9411605ee0..0e60c0ea6f 100644 --- a/misc/chm2pdf/chm2pdf.SlackBuild +++ b/misc/chm2pdf/chm2pdf.SlackBuild @@ -27,7 +27,7 @@ PRGNAM=chm2pdf VERSION=${VERSION:-0.9.1} ARCH=${ARCH:-i486} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} CWD=$(pwd) @@ -50,6 +50,11 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Apply a patch againsts a security problem with temporary dirs. +# Bug report from Debian: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=501959 +# Patch from Gentoo: http://bugs.gentoo.org/205208 +cat $CWD/patches/tempdir.patch | patch -p1 + python setup.py build python setup.py install --root $PKG @@ -68,4 +73,4 @@ mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc cd $PKG -/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.tgz +/sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} |