blob: 51e707f5f3d74584758d512593dc028aa8bb77db (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/lsof/lsof-4.73.ebuild,v 1.1 2005/03/03 14:58:28 ciaranm Exp $
inherit eutils flag-o-matic fixheadtails
MY_P=${P/-/_}
DESCRIPTION="Lists open files for running Unix processes"
HOMEPAGE="ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/README"
SRC_URI="ftp://vic.cc.purdue.edu/pub/tools/unix/lsof/${MY_P}.tar.gz
ftp://ftp.cerias.purdue.edu/pub/tools/unix/sysutils/lsof/${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 arm hppa ia64 mips ppc ~ppc64 s390 sparc x86"
IUSE="static"
DEPEND="virtual/libc"
S=${WORKDIR}/${MY_P}/${MY_P}_src
src_unpack() {
unpack ${A}
cd ${MY_P}
tar xf ${MY_P}_src.tar || die
# now patch the scripts to automate everything
cd ${S}
ht_fix_file Configure Customize
touch .neverInv
epatch ${FILESDIR}/${PV}-answer-config.patch
}
src_compile() {
# #26576 lsof 4.71 compile with -fstack-protector
use alpha && filter-flags -fstack-protector
use static && append-ldflags -static
./Configure linux || die "configure"
emake all || die
}
src_install() {
dosbin lsof || die "dosbin"
dolib lib/liblsof.a || die "dolib"
insinto /usr/share/lsof/scripts
doins scripts/*
doman lsof.8
dodoc 00*
}
|