Magellan Linux

Annotation of /branches/R11-stable/core/procps/procps-3.3.8-r1.smage2

Parent Directory Parent Directory | Revision Log Revision Log


Revision 17148 - (hide annotations) (download)
Mon Jun 3 11:24:07 2013 UTC (11 years ago) by niro
Original Path: trunk/core/procps/procps-3.3.8-r1.smage2
File size: 1109 byte(s)
auto added: ver bump to 3.3.8-r1
1 niro 17148 # $Id$
2    
3     PNAME="procps"
4     PVER="3.3.8"
5     PBUILD="r1"
6    
7     PCAT="sys-apps"
8    
9     DESCRIPTION="Standard informational utilities and process-handling tools -ps top tload snice vmstat."
10     HOMEPAGE="http://gitorious.org/procps"
11    
12     DEPEND=">= sys-libs/ncurses-5.9"
13     PROVIDE="virtual/procps"
14    
15     # using procps-ng
16     SRCFILE="${PNAME}-ng-${PVER}.tar.gz"
17     SRCDIR="${BUILDDIR}/${PNAME}-${PNAME}"
18    
19     sminclude multilib
20    
21     SRC_URI=(
22     #http://gitorious.org/procps/procps/archive-tarball/v${PVER}
23     mirror://${PNAME}/${SRCFILE}
24     )
25    
26     UP2DATE="updatecmd ${HOMEPAGE}/${PNAME}/trees/ | grep '/trees/v' | sed -n 's:.*/trees/v\(.*\):\1:;$ p'"
27    
28     src_prepare()
29     {
30     munpack ${SRCFILE} || die
31    
32     # satisfy misc/git-version-gen
33     all-abis "echo ${PVER} > .tarball-version" || die
34    
35     all-abis ./autogen.sh || die
36     }
37    
38     src_compile()
39     {
40     # kill is provided by coreutils
41     # horrible broken Makefile
42     mconfigure \
43     --prefix=/ \
44     --bindir=/usr/bin \
45     --sbindir=/usr/sbin \
46     --includedir=/usr/include \
47     --docdir=/usr/share/doc/${PNAME}-${PVER} \
48     --disable-rpath \
49     --disable-w-from \
50     --disable-kill \
51     --with-systemd \
52     --enable-watch8bit \
53     || die
54    
55     mmake || die
56     }
57