summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKrzysztof Pawlik <nelchael@gentoo.org>2006-11-09 17:18:46 +0000
committerKrzysztof Pawlik <nelchael@gentoo.org>2006-11-09 17:18:46 +0000
commita8cc26b8b79f3d0b9748a3ad1b1e116fe12ec561 (patch)
tree93e4dabacc1534759897756f2cb50039604ec929 /x11-misc/xsnap
parentFixed typo = Use '&&' not '-a' if you're not in a [[ ... ]] block, and added ... (diff)
downloadgentoo-2-a8cc26b8b79f3d0b9748a3ad1b1e116fe12ec561.tar.gz
gentoo-2-a8cc26b8b79f3d0b9748a3ad1b1e116fe12ec561.tar.bz2
gentoo-2-a8cc26b8b79f3d0b9748a3ad1b1e116fe12ec561.zip
Version bump to fix Makefile for po files.
(Portage version: 2.1.2_rc1-r5)
Diffstat (limited to 'x11-misc/xsnap')
-rw-r--r--x11-misc/xsnap/ChangeLog9
-rw-r--r--x11-misc/xsnap/files/digest-xsnap-1.5.23
-rw-r--r--x11-misc/xsnap/xsnap-1.5.2.ebuild46
3 files changed, 57 insertions, 1 deletions
diff --git a/x11-misc/xsnap/ChangeLog b/x11-misc/xsnap/ChangeLog
index 42f888d620de..95080d435cfc 100644
--- a/x11-misc/xsnap/ChangeLog
+++ b/x11-misc/xsnap/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for x11-misc/xsnap
# Copyright 2002-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.25 2006/11/08 14:07:18 nelchael Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.26 2006/11/09 17:18:46 nelchael Exp $
+
+*xsnap-1.5.2 (09 Nov 2006)
+
+ 09 Nov 2006; Krzysiek Pawlik <nelchael@gentoo.org>
+ -files/xsnap-1.5.1-po_Makefile.patch, -xsnap-1.5.1.ebuild,
+ +xsnap-1.5.2.ebuild:
+ Version bump to fix Makefile for po files.
*xsnap-1.5.1 (08 Nov 2006)
*xsnap-1.4.4 (08 Nov 2006)
diff --git a/x11-misc/xsnap/files/digest-xsnap-1.5.2 b/x11-misc/xsnap/files/digest-xsnap-1.5.2
new file mode 100644
index 000000000000..c39f855830a9
--- /dev/null
+++ b/x11-misc/xsnap/files/digest-xsnap-1.5.2
@@ -0,0 +1,3 @@
+MD5 13caea911b289cbecbbf5169d772f81c xsnap-1.5.2.tar.bz2 27629
+RMD160 96f2d68f6a825155ace505b19f5072f5d4f4cf61 xsnap-1.5.2.tar.bz2 27629
+SHA256 cd426b2e88824648f2379051ad076e08f48091a53bbbb68607de466d46fdeecc xsnap-1.5.2.tar.bz2 27629
diff --git a/x11-misc/xsnap/xsnap-1.5.2.ebuild b/x11-misc/xsnap/xsnap-1.5.2.ebuild
new file mode 100644
index 000000000000..ad78a07ef25a
--- /dev/null
+++ b/x11-misc/xsnap/xsnap-1.5.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2006 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/xsnap-1.5.2.ebuild,v 1.1 2006/11/09 17:18:46 nelchael Exp $
+
+DESCRIPTION="Program to interactively take a 'snapshot' of a region of the screen"
+SRC_URI="ftp://ftp.ac-grenoble.fr/ge/Xutils/${P}.tar.bz2"
+HOMEPAGE="ftp://ftp.ac-grenoble.fr/ge/Xutils/"
+
+SLOT="0"
+LICENSE="as-is"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE=""
+
+RDEPEND="x11-libs/libX11
+ x11-libs/libXext
+ x11-libs/libXpm
+ media-libs/libpng
+ media-libs/jpeg"
+DEPEND="${RDEPEND}
+ x11-proto/xproto
+ app-text/rman
+ x11-misc/imake"
+
+src_unpack() {
+
+ unpack ${A}
+ cd "${S}"
+
+ sed -i -e 's,X11R6/,,g' "${S}/Imakefile"
+
+}
+
+src_compile() {
+
+ xmkmf || die "xmkmf failed"
+ make || die "make failed"
+
+}
+
+src_install() {
+
+ make DESTDIR=${D} install || die "make install failed"
+ make DESTDIR=${D} install.man || die "make install.man failed"
+ dodoc README AUTHORS
+
+}