diff options
author | 2002-04-27 07:54:15 +0000 | |
---|---|---|
committer | 2002-04-27 07:54:15 +0000 | |
commit | 0c0f2bae5bc10b893ad009a9e571fe38b4e81f0d (patch) | |
tree | 40dd65b95b483c2136d768dcf2528dff763fea76 /app-misc/xsnap | |
parent | version bump (diff) | |
download | historical-0c0f2bae5bc10b893ad009a9e571fe38b4e81f0d.tar.gz historical-0c0f2bae5bc10b893ad009a9e571fe38b4e81f0d.tar.bz2 historical-0c0f2bae5bc10b893ad009a9e571fe38b4e81f0d.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 } - |