diff options
author | Mike Frysinger <vapier@gentoo.org> | 2005-12-17 03:43:40 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2005-12-17 03:43:40 +0000 |
commit | 8472e24b2ba3b246f60d596e56af6ffb041009b8 (patch) | |
tree | 77468461c7fb358510d572c06e95c9963d967d58 /sys-libs/pwdb/pwdb-0.62.ebuild | |
parent | touchup patch (diff) | |
download | historical-8472e24b2ba3b246f60d596e56af6ffb041009b8.tar.gz historical-8472e24b2ba3b246f60d596e56af6ffb041009b8.tar.bz2 historical-8472e24b2ba3b246f60d596e56af6ffb041009b8.zip |
fix install target so we dont need preplib
Package-Manager: portage-2.0.53
Diffstat (limited to 'sys-libs/pwdb/pwdb-0.62.ebuild')
-rw-r--r-- | sys-libs/pwdb/pwdb-0.62.ebuild | 21 |
1 files changed, 9 insertions, 12 deletions
diff --git a/sys-libs/pwdb/pwdb-0.62.ebuild b/sys-libs/pwdb/pwdb-0.62.ebuild index 25973cd01f67..965a8b4b44f5 100644 --- a/sys-libs/pwdb/pwdb-0.62.ebuild +++ b/sys-libs/pwdb/pwdb-0.62.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/pwdb/pwdb-0.62.ebuild,v 1.21 2005/10/08 12:50:35 blubb Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-libs/pwdb/pwdb-0.62.ebuild,v 1.22 2005/12/17 03:43:40 vapier Exp $ inherit eutils flag-o-matic @@ -13,17 +13,17 @@ SLOT="0" KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86" IUSE="selinux" -DEPEND="virtual/libc - selinux? ( sys-libs/libselinux )" +DEPEND="selinux? ( sys-libs/libselinux )" src_unpack () { unpack ${A} - cd ${S} + cd "${S}" + epatch "${FILESDIR}"/${P}-build.patch # Uses gcc as linker needed for hppa, but good idea in general. - epatch ${FILESDIR}/${P}-use-gcc-as-linker.patch + epatch "${FILESDIR}"/${P}-use-gcc-as-linker.patch - use selinux && epatch ${FILESDIR}/${P}-selinux.patch + use selinux && epatch "${FILESDIR}"/${P}-selinux.patch sed -i \ -e "s/^DIRS = .*/DIRS = libpwdb/" \ @@ -46,15 +46,12 @@ src_compile() { src_install() { dodir /$(get_libdir) /usr/$(get_libdir) /usr/include/pwdb make \ - INCLUDED=${D}/usr/include/pwdb \ - LIBDIR=${D}/$(get_libdir) \ + INCLUDED="${D}"/usr/include/pwdb \ + LIBDIR="${D}"/$(get_libdir) \ LDCONFIG="echo" \ install || die - preplib / - mv ${D}/$(get_libdir)/*.a ${D}/usr/$(get_libdir) - - # See bug #4411 for more info + mv "${D}"/$(get_libdir)/*.a "${D}"/usr/$(get_libdir)/ || die gen_usr_ldscript libpwdb.so insinto /etc |