diff options
author | Rainer Groesslinger <scandium@gentoo.org> | 2004-04-02 20:45:26 +0000 |
---|---|---|
committer | Rainer Groesslinger <scandium@gentoo.org> | 2004-04-02 20:45:26 +0000 |
commit | efa9617262f5de12a365f5b33a0bc538feeeefb9 (patch) | |
tree | 6dadc0e82da0b51364f2fa3578988399a7b74dac /dev-libs/phlib/phlib-1.20.ebuild | |
parent | Closing #46552. (diff) | |
download | historical-efa9617262f5de12a365f5b33a0bc538feeeefb9.tar.gz historical-efa9617262f5de12a365f5b33a0bc538feeeefb9.tar.bz2 historical-efa9617262f5de12a365f5b33a0bc538feeeefb9.zip |
Initial commit (see bug #45570)
Diffstat (limited to 'dev-libs/phlib/phlib-1.20.ebuild')
-rw-r--r-- | dev-libs/phlib/phlib-1.20.ebuild | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/dev-libs/phlib/phlib-1.20.ebuild b/dev-libs/phlib/phlib-1.20.ebuild new file mode 100644 index 000000000000..7c6f1adeeb80 --- /dev/null +++ b/dev-libs/phlib/phlib-1.20.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/phlib/phlib-1.20.ebuild,v 1.1 2004/04/02 20:45:26 scandium Exp $ + +DESCRIPTION="phlib is a collection of support functions and classes used by Goldwater and the DGEE" +HOMEPAGE="http://www.nfluid.com/" +SRC_URI="http://www.nfluid.com/download/src/${P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86" + +IUSE="" + +DEPEND="virtual/glibc" + +src_unpack() { + unpack ${A} + sed -i s/cflags/CFLAGS/ ${S}/configure +} + +src_compile() { + econf || die "econf failed" + emake || die "emake failed" +} + +src_install() { + einstall || die "einstall failed" +} |