diff options
author | Gordon Malm <gengor@gentoo.org> | 2009-03-21 05:40:33 +0000 |
---|---|---|
committer | Gordon Malm <gengor@gentoo.org> | 2009-03-21 05:40:33 +0000 |
commit | 89f925179694e8ff8540a367bb418f3241507a11 (patch) | |
tree | 03b761e79be36ccebce7ac3ebfdae7165ded1017 /app-misc/beanstalkd | |
parent | New package. Initial ebuild written by myself. (diff) | |
download | gentoo-2-89f925179694e8ff8540a367bb418f3241507a11.tar.gz gentoo-2-89f925179694e8ff8540a367bb418f3241507a11.tar.bz2 gentoo-2-89f925179694e8ff8540a367bb418f3241507a11.zip |
Bump to app-misc/beanstalkd-1.2
(Portage version: 2.1.6.7/cvs/Linux i686)
Diffstat (limited to 'app-misc/beanstalkd')
-rw-r--r-- | app-misc/beanstalkd/ChangeLog | 7 | ||||
-rw-r--r-- | app-misc/beanstalkd/beanstalkd-1.2.ebuild | 31 |
2 files changed, 37 insertions, 1 deletions
diff --git a/app-misc/beanstalkd/ChangeLog b/app-misc/beanstalkd/ChangeLog index d21dc65909cd..c593da55297e 100644 --- a/app-misc/beanstalkd/ChangeLog +++ b/app-misc/beanstalkd/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-misc/beanstalkd # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/ChangeLog,v 1.2 2009/03/02 00:03:41 patrick Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/ChangeLog,v 1.3 2009/03/21 05:40:33 gengor Exp $ + +*beanstalkd-1.2 (21 Mar 2009) + + 21 Mar 2009; Gordon Malm <gengor@gentoo.org> +beanstalkd-1.2.ebuild: + Version bump. 02 Mar 2009; Patrick Lauer <patrick@gentoo.org> +files/beanstalkd-werror.patch, beanstalkd-1.0.ebuild: diff --git a/app-misc/beanstalkd/beanstalkd-1.2.ebuild b/app-misc/beanstalkd/beanstalkd-1.2.ebuild new file mode 100644 index 000000000000..918814f6505b --- /dev/null +++ b/app-misc/beanstalkd/beanstalkd-1.2.ebuild @@ -0,0 +1,31 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/beanstalkd-1.2.ebuild,v 1.1 2009/03/21 05:40:33 gengor Exp $ + +inherit eutils + +DESCRIPTION="A fast, distributed, in-memory workqueue service" +HOMEPAGE="http://xph.us/software/beanstalkd/" +SRC_URI="http://xph.us/software/beanstalkd/rel/${P}.tar.gz" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" + +RDEPEND=">=dev-libs/libevent-1.4.7" +DEPEND="${RDEPEND}" + +IUSE="" + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed." + + dodoc README TODO doc/*.txt + + newconfd "${FILESDIR}/conf" beanstalkd + newinitd "${FILESDIR}/init" beanstalkd +} + +pkg_postinst() { + enewuser beanstalk -1 -1 /dev/null daemon +} |