Gentoo Archives: gentoo-commits

From: "Lars Wendler (polynomial-c)" <polynomial-c@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-process/procps: procps-3.3.9-r1.ebuild ChangeLog
Date: Sun, 02 Feb 2014 12:08:08
Message-Id: 20140202120804.34B1E2004C@flycatcher.gentoo.org
1 polynomial-c 14/02/02 12:08:04
2
3 Modified: ChangeLog
4 Added: procps-3.3.9-r1.ebuild
5 Log:
6 Added selinux (bug #499010) and systemd (bug #498888) support
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
9
10 Revision Changes Path
11 1.116 sys-process/procps/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/ChangeLog?rev=1.116&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/ChangeLog?rev=1.116&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/ChangeLog?r1=1.115&r2=1.116
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/sys-process/procps/ChangeLog,v
20 retrieving revision 1.115
21 retrieving revision 1.116
22 diff -u -r1.115 -r1.116
23 --- ChangeLog 18 Jan 2014 03:51:39 -0000 1.115
24 +++ ChangeLog 2 Feb 2014 12:08:04 -0000 1.116
25 @@ -1,6 +1,11 @@
26 # ChangeLog for sys-process/procps
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/sys-process/procps/ChangeLog,v 1.115 2014/01/18 03:51:39 vapier Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/sys-process/procps/ChangeLog,v 1.116 2014/02/02 12:08:04 polynomial-c Exp $
30 +
31 +*procps-3.3.9-r1 (02 Feb 2014)
32 +
33 + 02 Feb 2014; Lars Wendler <polynomial-c@g.o> +procps-3.3.9-r1.ebuild:
34 + Added selinux (bug #499010) and systemd (bug #498888) support.
35
36 18 Jan 2014; Mike Frysinger <vapier@g.o> procps-3.3.8-r2.ebuild,
37 procps-3.3.9.ebuild:
38
39
40
41 1.1 sys-process/procps/procps-3.3.9-r1.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/procps-3.3.9-r1.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-process/procps/procps-3.3.9-r1.ebuild?rev=1.1&content-type=text/plain
45
46 Index: procps-3.3.9-r1.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-process/procps/procps-3.3.9-r1.ebuild,v 1.1 2014/02/02 12:08:04 polynomial-c Exp $
51
52 EAPI="4"
53
54 inherit eutils toolchain-funcs
55
56 DESCRIPTION="standard informational utilities and process-handling tools"
57 # http://packages.debian.org/sid/procps
58 HOMEPAGE="http://procps.sourceforge.net/ http://gitorious.org/procps"
59 # SRC_URI="mirror://debian/pool/main/p/${PN}/${PN}_${PV}.orig.tar.xz"
60 FEDORA_HASH="0980646fa25e0be58f7afb6b98f79d74"
61 SRC_URI="http://pkgs.fedoraproject.org/repo/pkgs/${PN}-ng/${PN}-ng-${PV}.tar.xz/${FEDORA_HASH}/${PN}-ng-${PV}.tar.xz"
62
63 LICENSE="GPL-2"
64 SLOT="0"
65 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~ia64-linux ~x86-linux"
66 IUSE="+ncurses nls selinux static-libs systemd test unicode"
67
68 RDEPEND="!<sys-apps/sysvinit-2.88-r6
69 ncurses? ( >=sys-libs/ncurses-5.7-r7[unicode?] )
70 systemd? ( >=sys-apps/systemd-206 )"
71 DEPEND="${RDEPEND}
72 ncurses? ( virtual/pkgconfig )
73 selinux? ( sys-libs/libselinux )
74 systemd? ( virtual/pkgconfig )
75 test? ( dev-util/dejagnu )"
76
77 S=${WORKDIR}/${PN}-ng-${PV}
78
79 src_prepare() {
80 epatch "${FILESDIR}"/${PN}-3.3.8-kill-neg-pid.patch
81 }
82
83 src_configure() {
84 econf \
85 --exec-prefix="${EPREFIX}" \
86 --docdir='$(datarootdir)'/doc/${PF} \
87 $(use_with ncurses) \
88 $(use_enable nls) \
89 $(use_enable selinux libselinux) \
90 $(use_enable static-libs static) \
91 $(use_with systemd) \
92 $(use_enable unicode watch8bit)
93 }
94
95 src_install() {
96 default
97 # dodoc sysctl.conf
98
99 mv "${ED}"/usr/bin/pidof "${ED}"/bin/ || die
100
101 # The configure script is completely whacked in the head
102 mv "${ED}"/lib* "${ED}"/usr/ || die
103 gen_usr_ldscript -a procps
104 prune_libtool_files
105 }