blob: c0e607de48990d2e7d2cff3a854733cfb45580c6 (
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
# Copyright 1999-2004 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-apps/psmisc/psmisc-21.2-r4.ebuild,v 1.15 2004/04/09 05:00:27 lv Exp $
inherit eutils gnuconfig
SELINUX_PATCH="psmisc-21.2-selinux.diff.bz2"
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 ia64 ppc64 s390"
IUSE="nls selinux"
DEPEND=">=sys-libs/ncurses-5.2-r2
selinux? ( sys-libs/libselinux )"
src_unpack() {
unpack ${A}
cd ${S}
if use selinux; then
# Necessary selinux patch
epatch ${FILESDIR}/${SELINUX_PATCH}
else
# Fix gcc-3.3 compile issues.
# <azarah@gentoo.org> (18 May 2003)
# the section that this patch fixes
# is deleted by the above selinux patch
# so should only needed for ! use selinux
# <pebenito@gentoo.org> (09 Aug 2003)
epatch ${FILESDIR}/${P}-gcc33.patch
fi
# Killall segfault if an command is longer than 128 bytes, as
# the realloc call is not done in such an way to update the
# pointer that is used, thanks to bug submitted (bug #28234) by
# Grant McDorman <grant.mcdorman@sympatico.ca>.
epatch ${FILESDIR}/${P}-fix-realloc.patch
}
src_compile() {
# Detect mips systems properly
use mips && gnuconfig_update
local myconf="--with-gnu-ld"
use nls || myconf="${myconf} --disable-nls"
use selinux && myconf="${myconf} --enable-flask"
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
}
|