diff options
author | Paweł Hajdan <phajdan.jr@gentoo.org> | 2010-01-12 11:42:33 +0000 |
---|---|---|
committer | Paweł Hajdan <phajdan.jr@gentoo.org> | 2010-01-12 11:42:33 +0000 |
commit | 2f4964138b3c0827aa67b8be9085d1ceb524a5df (patch) | |
tree | f484035e2e0b7f8257aed41bd9e02bd261db3707 /sys-libs/libxcrypt/libxcrypt-2.4.ebuild | |
parent | Fix tests (bug #298323). (diff) | |
download | historical-2f4964138b3c0827aa67b8be9085d1ceb524a5df.tar.gz historical-2f4964138b3c0827aa67b8be9085d1ceb524a5df.tar.bz2 historical-2f4964138b3c0827aa67b8be9085d1ceb524a5df.zip |
Version bump, bug #298540.
Package-Manager: portage-2.1.6.13/cvs/Linux i686
Diffstat (limited to 'sys-libs/libxcrypt/libxcrypt-2.4.ebuild')
-rw-r--r-- | sys-libs/libxcrypt/libxcrypt-2.4.ebuild | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/sys-libs/libxcrypt/libxcrypt-2.4.ebuild b/sys-libs/libxcrypt/libxcrypt-2.4.ebuild new file mode 100644 index 000000000000..5a106bc3acaa --- /dev/null +++ b/sys-libs/libxcrypt/libxcrypt-2.4.ebuild @@ -0,0 +1,28 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/libxcrypt/libxcrypt-2.4.ebuild,v 1.1 2010/01/12 11:42:33 phajdan.jr Exp $ + +EAPI=2 + +inherit multilib + +DESCRIPTION="A replacement for libcrypt with DES, MD5 and blowfish support" +SRC_URI="mirror://debian/pool/main/libx/${PN}/${PN}_${PV}.orig.tar.gz" +HOMEPAGE="http://packages.debian.org/sid/libxcrypt1" + +LICENSE="LGPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +src_configure() { + # Do not install into /usr so that tcb and pam can use us. + econf --libdir=/$(get_libdir) +} + +src_install() { + emake DESTDIR="${D}" install || die "emake failed" + + # Remove unneeded files from / + rm -f "${D}"/$(get_libdir)/"${PN}".{a,la} || die "rm failed" +} |