diff options
author | Krzysztof Pawlik <nelchael@gentoo.org> | 2009-05-16 19:48:58 +0000 |
---|---|---|
committer | Krzysztof Pawlik <nelchael@gentoo.org> | 2009-05-16 19:48:58 +0000 |
commit | 790408e5b6b1ab9df8a1e1ffc4ad4746001e06e5 (patch) | |
tree | bd595116279ca4e348c8da43844937292aae8438 /x11-misc/xsnap | |
parent | Version bump, bug #256242. (diff) | |
download | gentoo-2-790408e5b6b1ab9df8a1e1ffc4ad4746001e06e5.tar.gz gentoo-2-790408e5b6b1ab9df8a1e1ffc4ad4746001e06e5.tar.bz2 gentoo-2-790408e5b6b1ab9df8a1e1ffc4ad4746001e06e5.zip |
Version bump.
(Portage version: 2.1.6.13/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/xsnap')
-rw-r--r-- | x11-misc/xsnap/ChangeLog | 9 | ||||
-rw-r--r-- | x11-misc/xsnap/xsnap-1.5.5.ebuild | 46 |
2 files changed, 53 insertions, 2 deletions
diff --git a/x11-misc/xsnap/ChangeLog b/x11-misc/xsnap/ChangeLog index cb2920b9145c..56de5a56e407 100644 --- a/x11-misc/xsnap/ChangeLog +++ b/x11-misc/xsnap/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for x11-misc/xsnap -# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.31 2009/03/21 22:03:45 nelchael Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/ChangeLog,v 1.32 2009/05/16 19:48:58 nelchael Exp $ + +*xsnap-1.5.5 (16 May 2009) + + 16 May 2009; Krzysiek Pawlik <nelchael@gentoo.org> +xsnap-1.5.5.ebuild: + Version bump. 21 Mar 2009; Krzysiek Pawlik <nelchael@gentoo.org> -files/xsnap-1.4-gentoo.patch, diff --git a/x11-misc/xsnap/xsnap-1.5.5.ebuild b/x11-misc/xsnap/xsnap-1.5.5.ebuild new file mode 100644 index 000000000000..2cf841e59f1b --- /dev/null +++ b/x11-misc/xsnap/xsnap-1.5.5.ebuild @@ -0,0 +1,46 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/xsnap/xsnap-1.5.5.ebuild,v 1.1 2009/05/16 19:48:58 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,$(BINDIR),$(DESTDIR)/$(BINDIR),' "${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 + +} |