diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-04-28 04:29:34 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-04-28 04:29:34 +0000 |
commit | 3fea35e858ba60e423cfd64196bc9df9feb60a2c (patch) | |
tree | 88419ca5e605f0fa72d3d2ec47d7acabc672d247 /x11-libs/libPropList | |
parent | Redhat Skipjack beta2 kernel sources (diff) | |
download | historical-3fea35e858ba60e423cfd64196bc9df9feb60a2c.tar.gz historical-3fea35e858ba60e423cfd64196bc9df9feb60a2c.tar.bz2 historical-3fea35e858ba60e423cfd64196bc9df9feb60a2c.zip |
cleanup
Diffstat (limited to 'x11-libs/libPropList')
-rw-r--r-- | x11-libs/libPropList/libPropList-0.10.1-r2.ebuild | 23 |
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 } - - - - |