diff options
author | Robby Workman <rworkman@slackbuilds.org> | 2010-05-23 01:11:02 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-23 23:21:43 -0500 |
commit | edf0ed4d9d5b605cbc7f57cf53f6f4f7e99a4711 (patch) | |
tree | 3147b09ad43116dcce72a0911bbc0a964db96820 /desktop/xfce4-screenshooter/xfce4-screenshooter.SlackBuild | |
parent | 4e242f557243d99a956a0c3f71120dd681128e98 (diff) |
desktop/xfce4-screenshooter: Updated for version 1.7.9.
This includes a patch to rip out the useless (IMHO) libsoup dep,
which means that there's no capability to upload screenshots
to the ZimageZ site on the web. IMHO, WGIF? ;)
Diffstat (limited to 'desktop/xfce4-screenshooter/xfce4-screenshooter.SlackBuild')
-rw-r--r-- | desktop/xfce4-screenshooter/xfce4-screenshooter.SlackBuild | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/desktop/xfce4-screenshooter/xfce4-screenshooter.SlackBuild b/desktop/xfce4-screenshooter/xfce4-screenshooter.SlackBuild index cab598ccf37f8..78b0079964b7a 100644 --- a/desktop/xfce4-screenshooter/xfce4-screenshooter.SlackBuild +++ b/desktop/xfce4-screenshooter/xfce4-screenshooter.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=xfce4-screenshooter -VERSION=1.6.0 +VERSION=1.7.9 BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -62,7 +62,7 @@ rm -rf $PKG mkdir -p $TMP $PKG $OUTPUT cd $TMP rm -rf $PRGNAM-$VERSION -tar xvf $CWD/$PRGNAM-$VERSION.tar.gz +tar xvf $CWD/$PRGNAM-$VERSION.tar.bz2 cd $PRGNAM-$VERSION chown -R root:root . find . \ @@ -71,6 +71,9 @@ find . \ \( -perm 666 -o -perm 664 -o -perm 600 -o -perm 444 -o -perm 440 -o -perm 400 \) \ -exec chmod 644 {} \; +# Strip out the libsoup requirement, which will disable uploads to zimagez +patch -p1 < $CWD/xfce4-screenshooter-1.7.9-no_libsoup.diff + CFLAGS="$SLKCFLAGS" \ CXXFLAGS="$SLKCFLAGS" \ ./configure \ |