diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 07:54:15 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-27 07:54:15 +0000 |
commit | 0436b4be6e92a3dab40e1b208568ef1f5169863a (patch) | |
tree | a02281ac0e59e078c1a633b07a25b180d6d5da89 /app-misc/xsnap | |
parent | version bump (diff) | |
download | gentoo-2-0436b4be6e92a3dab40e1b208568ef1f5169863a.tar.gz gentoo-2-0436b4be6e92a3dab40e1b208568ef1f5169863a.tar.bz2 gentoo-2-0436b4be6e92a3dab40e1b208568ef1f5169863a.zip |
cleanup
Diffstat (limited to 'app-misc/xsnap')
-rw-r--r-- | app-misc/xsnap/xsnap-1.3.ebuild | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/app-misc/xsnap/xsnap-1.3.ebuild b/app-misc/xsnap/xsnap-1.3.ebuild index d82a81c6cffb..70ad1b4e6377 100644 --- a/app-misc/xsnap/xsnap-1.3.ebuild +++ b/app-misc/xsnap/xsnap-1.3.ebuild @@ -1,30 +1,27 @@ -# Copyright 1999-2000 Gentoo Technologies, Inc. +# Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License, v2 or later # Grant Goodyear <grant@gentoo.org> -# $Header: /var/cvsroot/gentoo-x86/app-misc/xsnap/xsnap-1.3.ebuild,v 1.1 2001/06/07 06:20:53 grant Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/xsnap/xsnap-1.3.ebuild,v 1.2 2002/04/27 07:54:15 seemant Exp $ -#P= -A=${P}.tgz S=${WORKDIR}/${P} DESCRIPTION="Program to interactively take a 'snapshot' of a region of the screen" -SRC_URI="ftp://ftp.ac-grenoble.fr/ge/Xutils/${A}" +SRC_URI="ftp://ftp.ac-grenoble.fr/ge/Xutils/${P}.tar.gz" HOMEPAGE="" DEPEND="virtual/x11" src_compile() { - try xmkmf - try make + xmkmf || die + make || die } src_install () { - try make DESTDIR=${D} install - try make DESTDIR=${D} install.man - dodoc README INSTALL AUTHORS + make DESTDIR=${D} install || die + make DESTDIR=${D} install.man || die + dodoc README INSTALL AUTHORS } - |