Gentoo Archives: gentoo-commits

From: Alexey Shvetsov <alexxy@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/sci:master commit in: sys-cluster/slurm/
Date: Sun, 03 Jul 2011 19:26:38
Message-Id: 60d91ca7f93f571884db03593866736b512e4905.alexxy@gentoo
1 commit: 60d91ca7f93f571884db03593866736b512e4905
2 Author: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
3 AuthorDate: Sun Jul 3 19:07:04 2011 +0000
4 Commit: Alexey Shvetsov <alexxy <AT> gentoo <DOT> org>
5 CommitDate: Sun Jul 3 19:07:04 2011 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/sci.git;a=commit;h=60d91ca7
7
8 Enable pam module
9
10 (Portage version: 2.2.0_alpha43/git/Linux x86_64, signed Manifest commit with key F82F92E6)
11
12 ---
13 sys-cluster/slurm/slurm-2.2.7.ebuild | 13 ++++++++++++-
14 1 files changed, 12 insertions(+), 1 deletions(-)
15
16 diff --git a/sys-cluster/slurm/slurm-2.2.7.ebuild b/sys-cluster/slurm/slurm-2.2.7.ebuild
17 index fa56230..f92ad5b 100644
18 --- a/sys-cluster/slurm/slurm-2.2.7.ebuild
19 +++ b/sys-cluster/slurm/slurm-2.2.7.ebuild
20 @@ -21,7 +21,8 @@ DEPEND="
21 pam? ( virtual/pam )
22 postgres? ( dev-db/postgresql-base )
23 ssl? ( dev-libs/openssl )
24 - >=sys-apps/hwloc-1.1.1-r1"
25 + >=sys-apps/hwloc-1.1.1-r1
26 + >=sys-process/numactl-2.0.6"
27 RDEPEND="${DEPEND}"
28
29 pkg_setup() {
30 @@ -43,3 +44,13 @@ src_configure() {
31 $(use_with munge) \
32 $(use_enable static)
33 }
34 +
35 +src_compile() {
36 + emake
37 + use pam && emake -C contrib/pam
38 +}
39 +
40 +src_install() {
41 + emake DESTDIR="${D}" install
42 + use pam && emake DESTDIR="${D}" -C contrib/pam install
43 +}