diff options
author | Benedikt Boehm <hollow@gentoo.org> | 2008-10-31 08:20:07 +0000 |
---|---|---|
committer | Benedikt Boehm <hollow@gentoo.org> | 2008-10-31 08:20:07 +0000 |
commit | c45ac2cf2173ac8bdfe627db1f2c752d99809ec9 (patch) | |
tree | dcd9c30cf285e9602322135ae001132d1b2aa961 /app-portage | |
parent | Version bump. Renamed 3.2701 to 3.27.01 (diff) | |
download | gentoo-2-c45ac2cf2173ac8bdfe627db1f2c752d99809ec9.tar.gz gentoo-2-c45ac2cf2173ac8bdfe627db1f2c752d99809ec9.tar.bz2 gentoo-2-c45ac2cf2173ac8bdfe627db1f2c752d99809ec9.zip |
version bump wrt #244873
(Portage version: 2.1.4.5)
Diffstat (limited to 'app-portage')
-rw-r--r-- | app-portage/porticron/ChangeLog | 8 | ||||
-rw-r--r-- | app-portage/porticron/files/porticron | 2 | ||||
-rw-r--r-- | app-portage/porticron/porticron-0.2.ebuild | 25 |
3 files changed, 34 insertions, 1 deletions
diff --git a/app-portage/porticron/ChangeLog b/app-portage/porticron/ChangeLog index d8b96b4e0850..42e81cdc32be 100644 --- a/app-portage/porticron/ChangeLog +++ b/app-portage/porticron/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for app-portage/porticron # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-portage/porticron/ChangeLog,v 1.1 2008/10/28 12:17:34 hollow Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-portage/porticron/ChangeLog,v 1.2 2008/10/31 08:20:07 hollow Exp $ + +*porticron-0.2 (31 Oct 2008) + + 31 Oct 2008; Benedikt Böhm <hollow@gentoo.org> +files/porticron, + +porticron-0.2.ebuild: + version bump wrt #244873 *porticron-0.1 (28 Oct 2008) diff --git a/app-portage/porticron/files/porticron b/app-portage/porticron/files/porticron new file mode 100644 index 000000000000..a523ddbe9780 --- /dev/null +++ b/app-portage/porticron/files/porticron @@ -0,0 +1,2 @@ +#!/bin/bash +exec /usr/sbin/porticron diff --git a/app-portage/porticron/porticron-0.2.ebuild b/app-portage/porticron/porticron-0.2.ebuild new file mode 100644 index 000000000000..36c34346b4c5 --- /dev/null +++ b/app-portage/porticron/porticron-0.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-portage/porticron/porticron-0.2.ebuild,v 1.1 2008/10/31 08:20:07 hollow Exp $ + +DESCRIPTION="porticron is a cron script to sync portage and send update mails to root" +HOMEPAGE="http://git.xnull.de/gitweb/?p=porticron.git;a=summary" +SRC_URI="http://dev.gentoo.org/~hollow/distfiles/${P}.tar.bz2" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="" + +DEPEND="" +RDEPEND="net-dns/bind-tools" + +S="${WORKDIR}"/${PN} + +src_install() { + dosbin bin/porticron + insinto /etc + doins etc/porticron.conf + insinto /etc/cron.daily + doins "${FILESDIR}"/porticron +} |