diff options
author | Luca Barbato <lu_zero@gentoo.org> | 2004-05-30 16:03:39 +0000 |
---|---|---|
committer | Luca Barbato <lu_zero@gentoo.org> | 2004-05-30 16:03:39 +0000 |
commit | 3a970a4fbea725cb690594621d5b243a9a2b27be (patch) | |
tree | 4573f3d863576440735d47123efa28f46040b78f /dev-libs/ucl/ucl-1.02.ebuild | |
parent | Marked ~ppc (diff) | |
download | historical-3a970a4fbea725cb690594621d5b243a9a2b27be.tar.gz historical-3a970a4fbea725cb690594621d5b243a9a2b27be.tar.bz2 historical-3a970a4fbea725cb690594621d5b243a9a2b27be.zip |
New version
Diffstat (limited to 'dev-libs/ucl/ucl-1.02.ebuild')
-rw-r--r-- | dev-libs/ucl/ucl-1.02.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/dev-libs/ucl/ucl-1.02.ebuild b/dev-libs/ucl/ucl-1.02.ebuild new file mode 100644 index 000000000000..44ec168433c2 --- /dev/null +++ b/dev-libs/ucl/ucl-1.02.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ucl/ucl-1.02.ebuild,v 1.1 2004/05/30 16:03:39 lu_zero Exp $ + +inherit flag-o-matic + +DESCRIPTION="UCL: The UCL Compression Library" +HOMEPAGE="http://www.oberhumer.com/opensource/ucl/" +SRC_URI="http://www.oberhumer.com/opensource/ucl/download/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ppc64" + +src_compile() { + # Doing this b/c UCL will be included in the kernel + # at some point, and will be fixed properly then + # besides, this is lu_zero's build + append-flags -fPIC + + econf || die + emake || die +} + +src_install() { + make install DESTDIR=${D} || die +} + |