diff options
author | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-13 12:57:42 +0000 |
---|---|---|
committer | Natanael Copa <ncopa@alpinelinux.org> | 2012-05-13 12:57:42 +0000 |
commit | bd5050899584416d0ae0e2faf173759043faf2e2 (patch) | |
tree | 0644204e616a271cd7093396dc5a61a39eed45d4 /main/xfce4-screenshooter | |
parent | f1018fef1dee5f3f01e4dc367a62544cfb7313c7 (diff) | |
download | aports-bd5050899584416d0ae0e2faf173759043faf2e2.tar.bz2 aports-bd5050899584416d0ae0e2faf173759043faf2e2.tar.xz |
main/xfce4-screenshooter: upgrade to 1.8.1
Diffstat (limited to 'main/xfce4-screenshooter')
-rw-r--r-- | main/xfce4-screenshooter/APKBUILD | 9 | ||||
-rw-r--r-- | main/xfce4-screenshooter/fs-25873-segfault-in-awesome-wm.patch | 21 |
2 files changed, 4 insertions, 26 deletions
diff --git a/main/xfce4-screenshooter/APKBUILD b/main/xfce4-screenshooter/APKBUILD index f792800b76..fd6a9af5b9 100644 --- a/main/xfce4-screenshooter/APKBUILD +++ b/main/xfce4-screenshooter/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Natanael Copa <ncopa@alpinelinux.org> pkgname=xfce4-screenshooter -pkgver=1.8.0 -pkgrel=3 +pkgver=1.8.1 +pkgrel=0 pkgdesc="screenshot application for Xfce4" url="http://goodies.xfce.org/projects/applications/xfce4-screenshooter" arch="all" @@ -12,7 +12,6 @@ makedepends="xfce4-panel-dev hicolor-icon-theme libsoup-dev libxfce4ui-dev exo-dev libxext-dev" install= source="http://archive.xfce.org/src/apps/xfce4-screenshooter/${pkgver%.*}/xfce4-screenshooter-$pkgver.tar.bz2 - fs-25873-segfault-in-awesome-wm.patch xfce4-screenshooter-1.7.9-dsofix.patch" _builddir="$srcdir"/$pkgname-$pkgver @@ -38,8 +37,8 @@ build () { package() { cd "$_builddir" make DESTDIR="$pkgdir" install || return 1 + rm "$pkgdir"/usr/lib/xfce4/panel/plugins/*.la } -md5sums="b51ab5725418e7258273c4a6402adb02 xfce4-screenshooter-1.8.0.tar.bz2 -18042622c40c37a13da958aee216cafb fs-25873-segfault-in-awesome-wm.patch +md5sums="d0ffea2052a8e70154cf13789070711f xfce4-screenshooter-1.8.1.tar.bz2 a8a30afa060e0f65cbc8a0809f2d8c31 xfce4-screenshooter-1.7.9-dsofix.patch" diff --git a/main/xfce4-screenshooter/fs-25873-segfault-in-awesome-wm.patch b/main/xfce4-screenshooter/fs-25873-segfault-in-awesome-wm.patch deleted file mode 100644 index 47e0671446..0000000000 --- a/main/xfce4-screenshooter/fs-25873-segfault-in-awesome-wm.patch +++ /dev/null @@ -1,21 +0,0 @@ ---- a/lib/screenshooter-capture.c -+++ a/lib/screenshooter-capture.c -@@ -381,6 +381,18 @@ static GdkPixbuf - rec_height += rectangle.y; - } - -+ if (rec_x < 0) -+ { -+ rec_width = rec_width + rec_x; -+ rec_x = 0; -+ } -+ -+ if (rec_y < 0) -+ { -+ rec_height = rec_height + rec_y; -+ rec_y = 0; -+ } -+ - if (x_orig + rec_x + rec_width > gdk_screen_width ()) - rec_width = gdk_screen_width () - x_orig - rec_x; - |