diff options
author | 2005-05-22 06:44:16 +0000 | |
---|---|---|
committer | 2005-05-22 06:44:16 +0000 | |
commit | 472f0c8bf46380b5680ee4080c67adb0a2a032fa (patch) | |
tree | 2b5f19eea924cf35c91e6a5102cbeae20afcc732 /sys-libs/libaal/libaal-1.0.2.ebuild | |
parent | python module to support pygps (diff) | |
download | historical-472f0c8bf46380b5680ee4080c67adb0a2a032fa.tar.gz historical-472f0c8bf46380b5680ee4080c67adb0a2a032fa.tar.bz2 historical-472f0c8bf46380b5680ee4080c67adb0a2a032fa.zip |
old
Package-Manager: portage-2.0.51.22-r1
Diffstat (limited to 'sys-libs/libaal/libaal-1.0.2.ebuild')
-rw-r--r-- | sys-libs/libaal/libaal-1.0.2.ebuild | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/sys-libs/libaal/libaal-1.0.2.ebuild b/sys-libs/libaal/libaal-1.0.2.ebuild deleted file mode 100644 index fe2cbf186450..000000000000 --- a/sys-libs/libaal/libaal-1.0.2.ebuild +++ /dev/null @@ -1,52 +0,0 @@ -# Copyright 1999-2004 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/libaal/libaal-1.0.2.ebuild,v 1.2 2004/10/31 19:25:08 vapier Exp $ - -inherit eutils - -DESCRIPTION="library required by reiser4progs" -HOMEPAGE="http://www.namesys.com/v4/v4.html" -SRC_URI="ftp://ftp.namesys.com/pub/reiser4progs/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~amd64 ~ppc ~x86" -IUSE="" - -DEPEND="" - -src_unpack() { - unpack ${A} - cd ${S} - # remove stupid CFLAG hardcodes - sed -i \ - -e "/GENERIC_CFLAGS/s:-O3::" \ - -e "/^CFLAGS=/s:\"\":\"${CFLAGS}\":" \ - configure || die "sed" - cat << EOF > run-ldconfig -#!/bin/sh -true -EOF -} - -src_compile() { - econf \ - --enable-libminimal \ - --enable-memory-manager \ - --libdir=/$(get_libdir) || die "configure failed" - emake || die "make failed" -} - -src_install() { - make DESTDIR=${D} install || die - dodoc AUTHORS BUGS CREDITS ChangeLog NEWS README THANKS TODO - - # move silly .a libs out of / - dodir /usr/$(get_libdir) - local l="" - for l in libaal libaal-minimal ; do - mv ${D}/$(get_libdir)/${l}.{a,la} ${D}/usr/$(get_libdir)/ - dosym /usr/$(get_libdir)/${l}.a /$(get_libdir)/${l}.a - gen_usr_ldscript ${l}.so - done -} |