blob: 2a60dd77cb89018ea94266d67829d16564378572 (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit versionator
MY_PV=$(get_version_component_range 1-3)
MY_P=${PN}-${MY_PV}
DESCRIPTION="Allows for dynamic modification of a user's environment via modulefiles"
HOMEPAGE="http://modules.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="dev-lang/tcl"
RDEPEND="${DEPEND}"
S=${WORKDIR}/${MY_P}
pkg_setup() {
export _modules_path=/var/lib/Modules/${MY_PV}
}
src_configure() {
# unfortunately {module,version}-path don't work properly
./configure \
--prefix=/var/lib \
--mandir=/usr/share \
--with-module-path=${_modules_path}/modulefiles \
--with-version-path=${_modules_path}/versions \
--disable-use-default \
${EXTRA_ECONF} || die
}
src_install() {
default
dosym ${_modules_path} /var/lib/Modules/default
}
pkg_postinst() {
echo
einfo "Add this line at the end of /etc/bash/bashrc:"
einfo " [ -e \"${_modules_path}/init/bash\" ] && source \"${_modules_path}/init/bash\""
echo
}
|