blob: 7adeb33f05c5a82e296d3eb1b922f7818dee6e27 (
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
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit autotools-utils
DESCRIPTION="Dynamic modification of a user's environment via modulefiles"
HOMEPAGE="http://modules.sourceforge.net/"
SRC_URI="http://sourceforge.net/projects/modules/files/Modules/${P%[a-z]}/${P}.tar.bz2/download -> ${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64"
IUSE="X"
DEPEND="
dev-lang/tcl:0=
dev-tcltk/tclx
X? ( x11-libs/libX11 )
"
RDEPEND="${DEPEND}"
S="${WORKDIR}/${P%[a-z]}"
DOCS=(ChangeLog README NEWS TODO)
src_configure() {
local myeconfargs=(
$(use_with X x)
)
autotools-utils_src_configure
}
|