summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-04-28 04:29:34 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-04-28 04:29:34 +0000
commitf2dc6d26b70d8d70157a17279b8761d990d467c0 (patch)
tree66051d6fb98042ab025907f4c33d0f35dec08c77 /x11-libs/libPropList
parentRedhat Skipjack beta2 kernel sources (diff)
downloadgentoo-2-f2dc6d26b70d8d70157a17279b8761d990d467c0.tar.gz
gentoo-2-f2dc6d26b70d8d70157a17279b8761d990d467c0.tar.bz2
gentoo-2-f2dc6d26b70d8d70157a17279b8761d990d467c0.zip
cleanup
Diffstat (limited to 'x11-libs/libPropList')
-rw-r--r--x11-libs/libPropList/libPropList-0.10.1-r2.ebuild23
1 files changed, 9 insertions, 14 deletions
diff --git a/x11-libs/libPropList/libPropList-0.10.1-r2.ebuild b/x11-libs/libPropList/libPropList-0.10.1-r2.ebuild
index 7ceadd46a158..8e77e810ad7f 100644
--- a/x11-libs/libPropList/libPropList-0.10.1-r2.ebuild
+++ b/x11-libs/libPropList/libPropList-0.10.1-r2.ebuild
@@ -1,31 +1,26 @@
-# 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
# Author Achim Gottinger <achim@gentoo.org>
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libPropList/libPropList-0.10.1-r2.ebuild,v 1.1 2001/03/09 10:26:59 achim Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libPropList/libPropList-0.10.1-r2.ebuild,v 1.2 2002/04/28 04:29:34 seemant Exp $
-A=${P}.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="libPropList"
-SRC_URI="ftp://ftp.windowmaker.org/pub/release/srcs/current/${A}"
+SRC_URI="ftp://ftp.windowmaker.org/pub/release/srcs/current/${P}.tar.gz"
HOMEPAGE="http://www.windowmaker.org/"
DEPEND="virtual/glibc"
-src_compile() {
+src_compile() {
- try ./configure --host=${CHOST} --prefix=/usr
- try make
+ ./configure --host=${CHOST} --prefix=/usr || die
+ make || die
}
-src_install() {
+src_install() {
- try make prefix=${D}/usr install
+ make prefix=${D}/usr install || die
- dodoc AUTHORS COPYING* ChangeLog README TODO
+ dodoc AUTHORS COPYING* ChangeLog README TODO
}
-
-
-
-