diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2005-07-21 03:39:23 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2005-07-21 03:39:23 +0000 |
commit | 7b133a884cf1fc374e79475e533289d794b56f49 (patch) | |
tree | dca765554804314deb9cc75c321b362cbfe11fa5 /sys-cluster | |
parent | add a desktop entry (diff) | |
download | historical-7b133a884cf1fc374e79475e533289d794b56f49.tar.gz historical-7b133a884cf1fc374e79475e533289d794b56f49.tar.bz2 historical-7b133a884cf1fc374e79475e533289d794b56f49.zip |
This is the new env.d entry to keep the PBS directories from being removed.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/openpbs-common/ChangeLog | 8 | ||||
-rw-r--r-- | sys-cluster/openpbs-common/files/digest-openpbs-common-1.1.0 | 0 | ||||
-rw-r--r-- | sys-cluster/openpbs-common/files/pbs-env.d | 6 | ||||
-rw-r--r-- | sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild | 23 |
4 files changed, 36 insertions, 1 deletions
diff --git a/sys-cluster/openpbs-common/ChangeLog b/sys-cluster/openpbs-common/ChangeLog index 4f736a72a17b..b86914cf5f4b 100644 --- a/sys-cluster/openpbs-common/ChangeLog +++ b/sys-cluster/openpbs-common/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for sys-cluster/openpbs-common # Copyright 1999-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs-common/ChangeLog,v 1.2 2005/07/07 11:48:12 corsair Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs-common/ChangeLog,v 1.3 2005/07/21 03:39:23 robbat2 Exp $ + +*openpbs-common-1.1.0 (21 Jul 2005) + + 21 Jul 2005; Robin H. Johnson <robbat2@gentoo.org> +files/pbs-env.d, + +openpbs-common-1.1.0.ebuild: + This is the new env.d entry to keep the PBS directories from being removed. 07 Jul 2005; Markus Rothe <corsair@gentoo.org> openpbs-common-1.0.0.ebuild: diff --git a/sys-cluster/openpbs-common/files/digest-openpbs-common-1.1.0 b/sys-cluster/openpbs-common/files/digest-openpbs-common-1.1.0 new file mode 100644 index 000000000000..e69de29bb2d1 --- /dev/null +++ b/sys-cluster/openpbs-common/files/digest-openpbs-common-1.1.0 diff --git a/sys-cluster/openpbs-common/files/pbs-env.d b/sys-cluster/openpbs-common/files/pbs-env.d new file mode 100644 index 000000000000..ed9c1dd9147b --- /dev/null +++ b/sys-cluster/openpbs-common/files/pbs-env.d @@ -0,0 +1,6 @@ +# /etc/env.d/25pbs +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License, v2 or later + +# This is to stop portage removing stuff from here. Including empty directories! +CONFIG_PROTECT="/usr/spool/PBS" diff --git a/sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild b/sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild new file mode 100644 index 000000000000..688695c6329e --- /dev/null +++ b/sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild @@ -0,0 +1,23 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/openpbs-common/openpbs-common-1.1.0.ebuild,v 1.1 2005/07/21 03:39:23 robbat2 Exp $ + +inherit eutils + +DESCRIPTION="Shared files for all OpenPBS implementations in Gentoo" +HOMEPAGE="http://www.gentoo.org" +SRC_URI="" +LICENSE="GPL-2" + +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="virtual/pbs" + +src_install() { + newinitd ${FILESDIR}/pbs-init.d pbs + newconfd ${FILESDIR}/pbs-conf.d pbs + newenvd ${FILESDIR}/pbs-env.d 25pbs +} |