diff options
author | Jonathan Smith <smithj@gentoo.org> | 2006-11-21 17:34:13 +0000 |
---|---|---|
committer | Jonathan Smith <smithj@gentoo.org> | 2006-11-21 17:34:13 +0000 |
commit | e58e8b823b2ac1ae7ac57f94a9e1e9f35338709e (patch) | |
tree | 6740d4d837b2de58b5712e645a52d74ad029dcc8 /app-admin/rmake | |
parent | add 1.1.12 (diff) | |
download | historical-e58e8b823b2ac1ae7ac57f94a9e1e9f35338709e.tar.gz historical-e58e8b823b2ac1ae7ac57f94a9e1e9f35338709e.tar.bz2 historical-e58e8b823b2ac1ae7ac57f94a9e1e9f35338709e.zip |
update to 1.0.2, the latest release
Package-Manager: portage-2.1.1-r1
Diffstat (limited to 'app-admin/rmake')
-rw-r--r-- | app-admin/rmake/ChangeLog | 7 | ||||
-rw-r--r-- | app-admin/rmake/files/digest-rmake-1.0.2 | 3 | ||||
-rw-r--r-- | app-admin/rmake/rmake-1.0.2.ebuild | 43 |
3 files changed, 52 insertions, 1 deletions
diff --git a/app-admin/rmake/ChangeLog b/app-admin/rmake/ChangeLog index 12959c1a5f9e..59d80a5ef06c 100644 --- a/app-admin/rmake/ChangeLog +++ b/app-admin/rmake/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-admin/rmake # Copyright 1999-2006 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-admin/rmake/ChangeLog,v 1.4 2006/11/02 14:14:22 smithj Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-admin/rmake/ChangeLog,v 1.5 2006/11/21 17:34:13 smithj Exp $ + +*rmake-1.0.2 (21 Nov 2006) + + 21 Nov 2006; <smithj@gentoo.org> -rmake-1.0.1.ebuild, +rmake-1.0.2.ebuild: + update to 1.0.2, the latest release *rmake-1.0.1 (02 Nov 2006) diff --git a/app-admin/rmake/files/digest-rmake-1.0.2 b/app-admin/rmake/files/digest-rmake-1.0.2 new file mode 100644 index 000000000000..760a72fe5f1f --- /dev/null +++ b/app-admin/rmake/files/digest-rmake-1.0.2 @@ -0,0 +1,3 @@ +MD5 9465c16c7a6b63efcc37a2615f3fabda rmake-1.0.2.tar.bz2 88995 +RMD160 e64c8943ea795829f67a08760306553036bd18b5 rmake-1.0.2.tar.bz2 88995 +SHA256 ab59cbc657ef50f82ac1b7e045ad282ee6f52455d9c0fa007377bc4f0be18638 rmake-1.0.2.tar.bz2 88995 diff --git a/app-admin/rmake/rmake-1.0.2.ebuild b/app-admin/rmake/rmake-1.0.2.ebuild new file mode 100644 index 000000000000..8c5839e73557 --- /dev/null +++ b/app-admin/rmake/rmake-1.0.2.ebuild @@ -0,0 +1,43 @@ +# Copyright 2006-2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-admin/rmake/rmake-1.0.2.ebuild,v 1.1 2006/11/21 17:34:13 smithj Exp $ + +inherit eutils + +DESCRIPTION="repository-based build system" +HOMEPAGE="http://wiki.rpath.com/wiki/Conary:About_rMake" +SRC_URI="ftp://download.rpath.com/${PN}/${P}.tar.bz2" + +LICENSE="CPL-1.0" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="=dev-lang/python-2.4* + sys-libs/libcap + app-admin/conary" + +src_compile() { + emake || die "Make failure" +} + +src_install() { + make DESTDIR=${D} install || die "install failed" + chmod 04755 ${D}/usr/libexec/rmake/chroothelper + for x in ${D}/var/{rmake,{log,lib,run}/rmake} ${D}/{etc,srv}/rmake;do + mkdir -p $x + chown rmake:rmake $x + touch ${x}/.keep + done + chmod 700 ${D}/var/rmake + # replace with updstream-provided in next release... see + # https://issues.rpath.com/browse/RMK-242 + doinitd ${FILESDIR}/rmake +} + +pkg_setup() { + enewgroup rmake + enewgroup rmake-chroot + enewuser rmake -1 -1 /srv/rmake "rmake" + enewuser rmake-chroot -1 -1 / "rmake-chroot" +} |