summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNick Hadaway <raker@gentoo.org>2002-07-13 15:11:22 +0000
committerNick Hadaway <raker@gentoo.org>2002-07-13 15:11:22 +0000
commit0cab06c969e23b20af0cb14c410afe2af30916f3 (patch)
tree7acab562749f6e9867b14713139189f7b1f7b8c8 /x11-libs
parentset-kdedir needs an argument... (diff)
downloadgentoo-2-0cab06c969e23b20af0cb14c410afe2af30916f3.tar.gz
gentoo-2-0cab06c969e23b20af0cb14c410afe2af30916f3.tar.bz2
gentoo-2-0cab06c969e23b20af0cb14c410afe2af30916f3.zip
Updated SRC_URI and configure options.
Diffstat (limited to 'x11-libs')
-rw-r--r--x11-libs/libPropList/ChangeLog8
-rw-r--r--x11-libs/libPropList/files/digest-libPropList-0.10.1-r31
-rw-r--r--x11-libs/libPropList/libPropList-0.10.1-r3.ebuild36
3 files changed, 44 insertions, 1 deletions
diff --git a/x11-libs/libPropList/ChangeLog b/x11-libs/libPropList/ChangeLog
index a2dc8c1ef6ab..968046c82d1a 100644
--- a/x11-libs/libPropList/ChangeLog
+++ b/x11-libs/libPropList/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-libs/libPropList
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libPropList/ChangeLog,v 1.1 2002/02/01 21:53:38 gbevin Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libPropList/ChangeLog,v 1.2 2002/07/13 15:11:22 raker Exp $
+
+*libPropList-0.10.1-r3 (13 Jul 2002)
+
+ 13 Jul 2002; Nick Hadaway <raker@gentoo.org> libPropList-0.10.1-r3:
+
+ Updated SRC_URI and configure options.
*libPropList-0.10.1-r2 (1 Feb 2002)
diff --git a/x11-libs/libPropList/files/digest-libPropList-0.10.1-r3 b/x11-libs/libPropList/files/digest-libPropList-0.10.1-r3
new file mode 100644
index 000000000000..868f27b22378
--- /dev/null
+++ b/x11-libs/libPropList/files/digest-libPropList-0.10.1-r3
@@ -0,0 +1 @@
+MD5 ff32a4edbf9d0861012b2f10fd302ad5 libPropList-0.10.1.tar.gz 152625
diff --git a/x11-libs/libPropList/libPropList-0.10.1-r3.ebuild b/x11-libs/libPropList/libPropList-0.10.1-r3.ebuild
new file mode 100644
index 000000000000..e5d7cfd07cc1
--- /dev/null
+++ b/x11-libs/libPropList/libPropList-0.10.1-r3.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2002 Gentoo Technologies, Inc.
+# Distributed under the terms of the GNU General Public License, v2 or later
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libPropList/libPropList-0.10.1-r3.ebuild,v 1.1 2002/07/13 15:11:22 raker Exp $
+
+S=${WORKDIR}/${P}
+DESCRIPTION="libPropList"
+SRC_URI="ftp://ftp.windowmaker.org/pub/libs/${P}.tar.gz"
+HOMEPAGE="http://www.windowmaker.org/"
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="x86"
+
+DEPEND="virtual/glibc"
+
+src_compile() {
+
+ ./configure --prefix=/usr \
+ --sysconfdir=/etc \
+ --localstatedir=/var/state/libPropList \
+ --infodir=/usr/share/info \
+ --mandir=/usr/share/man \
+ --build=${CHOST} \
+ --host=${CHOST} \
+ --target=${CHOST} || die "configure failed"
+
+ make || die "make failed"
+
+}
+
+src_install() {
+
+ make prefix=${D}/usr install || die
+
+ dodoc AUTHORS COPYING* ChangeLog README TODO
+
+}