changeset 790:bb33036bcd39

xfce/xfce4-screenshoter: initial import, closes #1770
author David Demelier <markand@malikania.fr>
date Mon, 12 Aug 2019 16:32:46 +0200
parents 0ea4cabfa7e4
children 4e6f3e84200a
files xfce/xfce4-screenshooter/xfce4-screenshooter-post.sh xfce/xfce4-screenshooter/xfce4-screenshooter.sh xfce/xfce4-screenshooter/xfce4-screenshooter.sha1
diffstat 3 files changed, 97 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/xfce4-screenshooter/xfce4-screenshooter-post.sh	Mon Aug 12 16:32:46 2019 +0200
@@ -0,0 +1,20 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+if [ -x /bin/gtk-update-icon-cache ]; then
+	/bin/gtk-update-icon-cache -fqt /share/icons/hicolor
+fi
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/xfce4-screenshooter/xfce4-screenshooter.sh	Mon Aug 12 16:32:46 2019 +0200
@@ -0,0 +1,76 @@
+#!/bin/sh
+#
+# Copyright (c) 2019 David Demelier <markand@malikania.fr>
+#
+# Permission to use, copy, modify, and/or distribute this software for any
+# purpose with or without fee is hereby granted, provided that the above
+# copyright notice and this permission notice appear in all copies.
+#
+# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
+# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
+# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
+# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
+# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
+# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
+# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
+#
+
+PKGNAME=xfce4-screenshooter
+PKGVERSION=1.9.5
+PKGREVISION=1
+PKGLICENSE="GPLv2"
+PKGSUMMARY="Xfce screenshoot utility"
+PKGDOWNLOAD="http://archive.xfce.org/src/apps/$PKGNAME/${PKGVERSION%.*}/$PKGNAME-$PKGVERSION.tar.bz2"
+PKGDEPENDS="graphics/gtk
+            lib/glib
+            network/libsoup
+            text/libxml2
+            x11/libx11
+            x11/libxext
+            x11/libxfixes
+            xfce/exo
+            xfce/libxfce4ui
+            xfce/libxfce4util
+            xfce/xfce4-panel"
+PKGOPTIONS="NLS"
+
+: ${CHOST:=$(uname -m)-linux-musl}
+: ${CBUILD:=$(uname -m)-linux-musl}
+: ${CC:=clang}
+: ${CFLAGS:=-O2}
+: ${LDFLAGS:=}
+: ${LIBS:=}
+: ${NLS:=yes}
+
+if [ "$NLS" = "yes" ]; then
+	PKGDEPENDS="core/gettext:build $PKGDEPENDS"
+	with_nls="--enable-nls"
+else
+	with_nls="--disable-nls"
+fi
+
+build()
+{
+	rm -rf $PKGNAME-$PKGVERSION
+	tar xvf $PKGNAME-$PKGVERSION.tar.bz2
+	cd $PKGNAME-$PKGVERSION
+
+	CC="$CC" \
+	CFLAGS="$CFLAGS" \
+	LDFLAGS="$LDFLAGS" \
+	LIBS="$LIBS" \
+	./configure \
+		--build=$CBUILD \
+		--host=$CHOST \
+		--prefix= \
+		--disable-debug \
+		--localedir=/share/locale \
+		--with-locales-dir=/share/locale \
+		$with_nls
+	make
+	make install DESTDIR=$DESTDIR
+	rm -f DESTDIR/lib/xfce4/panel/plugins/libscreenshooterplugin.la
+
+	cd ..
+	rm -rf $PKGNAME-$PKGVERSION
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/xfce/xfce4-screenshooter/xfce4-screenshooter.sha1	Mon Aug 12 16:32:46 2019 +0200
@@ -0,0 +1,1 @@
+e5eabcb8a311d167cc35686c8aec3ca5e25f40d8  xfce4-screenshooter-1.9.5.tar.bz2