diff options
Diffstat (limited to 'sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.2.ebuild')
-rw-r--r-- | sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.2.ebuild | 55 |
1 files changed, 0 insertions, 55 deletions
diff --git a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.2.ebuild b/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.2.ebuild deleted file mode 100644 index 1db6d21bed8a..000000000000 --- a/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.2.ebuild +++ /dev/null @@ -1,55 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/e2fsprogs-libs/e2fsprogs-libs-1.41.2.ebuild,v 1.8 2008/11/15 09:42:00 vapier Exp $ - -inherit flag-o-matic toolchain-funcs - -DESCRIPTION="e2fsprogs libraries (common error, subsystem, uuid, block id)" -HOMEPAGE="http://e2fsprogs.sourceforge.net/" -SRC_URI="mirror://sourceforge/e2fsprogs/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc x86 ~x86-fbsd" -IUSE="nls" - -RDEPEND="!sys-libs/com_err - !sys-libs/ss - !<sys-fs/e2fsprogs-1.41" -DEPEND="nls? ( sys-devel/gettext ) - sys-devel/bc" - -src_compile() { - export LDCONFIG=/bin/true - export CC=$(tc-getCC) - - # We want to use the "bsd" libraries while building on Darwin, but while - # building on other Gentoo/*BSD we prefer elf-naming scheme. - local libtype - case ${CHOST} in - *-darwin*) libtype=bsd;; - *) libtype=elf;; - esac - - econf \ - --enable-${libtype}-shlibs \ - $(use_enable !elibc_uclibc tls) \ - $(use_enable nls) \ - || die - emake STRIP=/bin/true || die -} - -src_install() { - export LDCONFIG=/bin/true - export CC=$(tc-getCC) - - emake STRIP=/bin/true DESTDIR="${D}" install || die - - dodir /$(get_libdir) - local lib slib - for lib in "${D}"/usr/$(get_libdir)/*.a ; do - slib=${lib##*/} - mv "${lib%.a}"$(get_libname)* "${D}"/$(get_libdir)/ || die "moving lib ${slib}" - gen_usr_ldscript ${slib%.a}$(get_libname) - done -} |