You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/sys-process/lsof/lsof-4.84.ebuild

56 lines
1.4 KiB

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/lsof-4.84.ebuild,v 1.2 2010/08/11 17:59:33 josejx Exp $
inherit flag-o-matic toolchain-funcs
MY_P=${P/-/_}
DESCRIPTION="Lists open files for running Unix processes"
HOMEPAGE="ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/"
SRC_URI="ftp://lsof.itap.purdue.edu/pub/tools/unix/lsof/${MY_P}.tar.bz2
ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/${MY_P}.tar.bz2
ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/${MY_P}.tar.bz2"
LICENSE="lsof"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh ~sparc ~x86 ~x86-fbsd"
IUSE="static selinux"
DEPEND="selinux? ( sys-libs/libselinux )"
S=${WORKDIR}/${MY_P}/${MY_P}_src
src_unpack() {
unpack ${A}
cd ${MY_P}
unpack ./${MY_P}_src.tar
}
yesno() { use $1 && echo y || echo n ; }
target() { use kernel_FreeBSD && echo freebsd || echo linux ; }
src_compile() {
use static && append-ldflags -static
touch .neverInv
LINUX_HASSELINUX=$(yesno selinux) \
LSOF_CC=$(tc-getCC) \
LSOF_AR="$(tc-getAR) rc" \
LSOF_RANLIB=$(tc-getRANLIB) \
LSOF_CFGF="${CFLAGS} ${CPPFLAGS}" \
LSOF_CFGL="${CFLAGS} ${LDFLAGS}" \
./Configure -n $(target) || die
emake DEBUG="" all || die "emake failed"
}
src_install() {
dobin lsof || die "dosbin"
insinto /usr/share/lsof/scripts
doins scripts/*
doman lsof.8
dodoc 00*
}