# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/sys-apps/psmisc/psmisc-21.2-r3.ebuild,v 1.8 2004/06/24 22:22:59 agriffis Exp $ inherit eutils DESCRIPTION="A set of tools that use the proc filesystem" HOMEPAGE="http://psmisc.sourceforge.net/" SRC_URI="mirror://sourceforge/psmisc/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 amd64 ppc sparc alpha hppa mips" IUSE="nls" DEPEND=">=sys-libs/ncurses-5.2-r2" src_unpack() { unpack ${A} cd ${S} # Fix gcc-3.3 compile issues. # (18 May 2003) epatch ${FILESDIR}/${P}-gcc33.patch } src_compile() { local myconf="--with-gnu-ld" use nls || myconf="${myconf} --disable-nls" econf ${myconf} || die emake || die } src_install() { einstall || die dosym killall /usr/bin/pidof # Some packages expect these to use /usr, others to use / dodir /bin mv ${D}/usr/bin/* ${D}/bin/ cd ${D}/bin for f in * ; do dosym /bin/${f} /usr/bin/${f} done # We use pidof from baselayout. rm -f ${D}/bin/pidof dosym ../sbin/pidof /bin/pidof dodoc ABOUT-NLS AUTHORS ChangeLog NEWS README }