diff options
author | 2002-12-12 19:30:54 +0000 | |
---|---|---|
committer | 2002-12-12 19:30:54 +0000 | |
commit | 1d6d598392ebda0c36e0ddb133e9953b7165c559 (patch) | |
tree | b4566e1d583b9b02d540d5dd1e359beacdab5f5d /dev-libs/physfs | |
parent | ExtUtil-MakeMaker is fixed!! (diff) | |
download | historical-1d6d598392ebda0c36e0ddb133e9953b7165c559.tar.gz historical-1d6d598392ebda0c36e0ddb133e9953b7165c559.tar.bz2 historical-1d6d598392ebda0c36e0ddb133e9953b7165c559.zip |
New addition. Marked unstable for the time being.
Diffstat (limited to 'dev-libs/physfs')
-rw-r--r-- | dev-libs/physfs/ChangeLog | 6 | ||||
-rw-r--r-- | dev-libs/physfs/files/digest-physfs-0.1.7 | 1 | ||||
-rw-r--r-- | dev-libs/physfs/physfs-0.1.7.ebuild | 27 |
3 files changed, 34 insertions, 0 deletions
diff --git a/dev-libs/physfs/ChangeLog b/dev-libs/physfs/ChangeLog new file mode 100644 index 000000000000..744e04bc22df --- /dev/null +++ b/dev-libs/physfs/ChangeLog @@ -0,0 +1,6 @@ +# ChangeLog for dev-libs/physfs +# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL v2 + +*physfs-0.1.7 (12 Dec 2002) + 12 Dec 2002; Phil Bordelon <sunflare@gentoo.org> ChangeLog + physfs-0.1.7.ebuild : Initial addition to the portage tree. diff --git a/dev-libs/physfs/files/digest-physfs-0.1.7 b/dev-libs/physfs/files/digest-physfs-0.1.7 new file mode 100644 index 000000000000..6b72192bd7f9 --- /dev/null +++ b/dev-libs/physfs/files/digest-physfs-0.1.7 @@ -0,0 +1 @@ +MD5 8c67a57eba82d9144a5f25d1f9347eb1 physfs-0.1.7.tar.gz 402906 diff --git a/dev-libs/physfs/physfs-0.1.7.ebuild b/dev-libs/physfs/physfs-0.1.7.ebuild new file mode 100644 index 000000000000..61ccc9b312f4 --- /dev/null +++ b/dev-libs/physfs/physfs-0.1.7.ebuild @@ -0,0 +1,27 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 + +DESCRIPTION="PhysicsFS is an abstraction layer for filesystems, useful for games." +SRC_URI="http://icculus.org/physfs/downloads/${P}.tar.gz" +HOMEPAGE="http://icculus.org/physfs/" + +S=${WORKDIR}/${P} +IUSE="" + +SLOT="0" +LICENSE="LGPL-2" +KEYWORDS="~x86" + +DEPEND="virtual/glibc" + +src_compile() { + econf || die "./configure failed" + + emake || die "Compilation failed" +} + +src_install() { + einstall || die "Installation failed" + + dodoc AUTHORS ChangeLog COPYING README TODO +} |