diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2011-06-30 08:28:12 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2011-06-30 08:28:12 +0000 |
commit | 987c750094d00fad081d6dba3b7ce08872b461fa (patch) | |
tree | c199011548d697c8c6a0dfc9d901145a6abd98ee /sys-cluster | |
parent | Version bump (diff) | |
download | gentoo-2-987c750094d00fad081d6dba3b7ce08872b461fa.tar.gz gentoo-2-987c750094d00fad081d6dba3b7ce08872b461fa.tar.bz2 gentoo-2-987c750094d00fad081d6dba3b7ce08872b461fa.zip |
maui->PN, fix order of vars
(Portage version: 2.2.0_alpha41/cvs/Linux x86_64)
Diffstat (limited to 'sys-cluster')
-rw-r--r-- | sys-cluster/maui/ChangeLog | 5 | ||||
-rw-r--r-- | sys-cluster/maui/maui-3.3.1-r1.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/sys-cluster/maui/ChangeLog b/sys-cluster/maui/ChangeLog index b81577a6ab8d..aa592fe566ef 100644 --- a/sys-cluster/maui/ChangeLog +++ b/sys-cluster/maui/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for sys-cluster/maui # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/ChangeLog,v 1.20 2011/06/29 16:15:04 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/ChangeLog,v 1.21 2011/06/30 08:28:12 xarthisius Exp $ + + 30 Jun 2011; Kacper Kowalik <xarthisius@gentoo.org> maui-3.3.1-r1.ebuild: + maui->PN, fix order of vars 29 Jun 2011; Alexey Shvetsov <alexxy@gentoo.org> files/maui.initd: Fix typo in init.d diff --git a/sys-cluster/maui/maui-3.3.1-r1.ebuild b/sys-cluster/maui/maui-3.3.1-r1.ebuild index a6867773895d..d04ad58fb639 100644 --- a/sys-cluster/maui/maui-3.3.1-r1.ebuild +++ b/sys-cluster/maui/maui-3.3.1-r1.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2011 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/maui-3.3.1-r1.ebuild,v 1.2 2011/06/29 14:21:51 alexxy Exp $ +# $Header: /var/cvsroot/gentoo-x86/sys-cluster/maui/maui-3.3.1-r1.ebuild,v 1.3 2011/06/30 08:28:12 xarthisius Exp $ EAPI="3" @@ -8,12 +8,12 @@ inherit autotools eutils multilib DESCRIPTION="Maui Cluster Scheduler" HOMEPAGE="http://www.clusterresources.com/products/maui/" -SRC_URI="http://www.adaptivecomputing.com/download/maui/${P}.tar.gz" +SRC_URI="http://www.adaptivecomputing.com/download/${PN}/${P}.tar.gz" -IUSE="" -SLOT="0" LICENSE="maui" +SLOT="0" KEYWORDS="~amd64 ~x86 ~amd64-linux" +IUSE="" DEPEND="sys-cluster/torque" RDEPEND="${DEPEND}" @@ -29,15 +29,15 @@ src_prepare() { src_configure() { econf \ - --with-spooldir="${EPREFIX}"/var/spool/maui \ + --with-spooldir="${EPREFIX}"/var/spool/${PN} \ --with-pbs="${EPREFIX}"/usr } src_install() { - emake install BUILDROOT="${D}" INST_DIR="${ED}/usr" || die + emake BUILDROOT="${D}" INST_DIR="${ED}/usr" install || die dodoc docs/README CHANGELOG || die dohtml docs/mauidocs.html || die - newinitd "${FILESDIR}/maui.initd" maui || die + newinitd "${FILESDIR}/${PN}.initd" ${PN} || die } pkg_nofetch() { |