aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAisha Tammy <gentoo@aisha.cc>2020-09-26 15:43:58 +0000
committerAisha Tammy <gentoo@aisha.cc>2020-09-26 19:11:03 +0000
commit4d41973331898406b86f2a3f11da50b7a1812336 (patch)
tree0d440f4f2e458d74b5d873e67508bc0671852ea5 /sys-cluster/modules/modules-3.2.9c-r1.ebuild
parentsci-libs/ensmallen: fast numerical library (diff)
downloadsci-4d41973331898406b86f2a3f11da50b7a1812336.tar.gz
sci-4d41973331898406b86f2a3f11da50b7a1812336.tar.bz2
sci-4d41973331898406b86f2a3f11da50b7a1812336.zip
sys-cluster/modules: version bump + new maintainer
Closes: https://github.com/gentoo/sci/pull/952 Package-Manager: Portage-3.0.8, Repoman-3.0.1 Signed-off-by: Aisha Tammy <gentoo@aisha.cc>
Diffstat (limited to 'sys-cluster/modules/modules-3.2.9c-r1.ebuild')
-rw-r--r--sys-cluster/modules/modules-3.2.9c-r1.ebuild48
1 files changed, 0 insertions, 48 deletions
diff --git a/sys-cluster/modules/modules-3.2.9c-r1.ebuild b/sys-cluster/modules/modules-3.2.9c-r1.ebuild
deleted file mode 100644
index 43f0ab91d..000000000
--- a/sys-cluster/modules/modules-3.2.9c-r1.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# 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 ~x86"
-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_prepare() {
- has_version ">=dev-lang/tcl-8.6.0" && epatch "${FILESDIR}/${P}-errorline.patch"
-}
-
-src_configure() {
- local myeconfargs=(
- $(use_with X x)
- --prefix=/opt
- )
- autotools-utils_src_configure
-}
-
-src_install() {
- autotools-utils_src_install
- dosym ${PV%[a-z]} /opt/Modules/default
-}
-
-pkg_postinst() {
- elog "Add this line at the end of your bashrc:"
- elog "[ -f /opt/Modules/default/init/bash ] && source /opt/Modules/default/init/bash"
-}