You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/app-misc/beanstalkd/beanstalkd-1.9-r1.ebuild

52 lines
1.2 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/beanstalkd/beanstalkd-1.9-r1.ebuild,v 1.3 2014/08/14 17:24:34 phajdan.jr Exp $
EAPI=5
inherit eutils systemd toolchain-funcs user
DESCRIPTION="A simple, fast work queue"
HOMEPAGE="http://kr.github.io/beanstalkd/"
SRC_URI="https://github.com/kr/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="amd64 ~mips x86 ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos ~x86-macos"
RDEPEND=""
DEPEND=""
IUSE=""
DOCS=( README News docs/protocol.txt )
pkg_setup() {
enewuser beanstalk -1 -1 /var/lib/beanstalkd daemon
}
src_prepare() {
sed -i -e "s/CFLAGS=/CFLAGS?=/" \
-e "s/LDLIBS/LDFLAGS/" \
-e "s/LDFLAGS=/LDFLAGS?=/" Makefile
}
src_compile() {
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" LD="$(tc-getLD)"
}
src_install() {
dobin beanstalkd
DATADIR=/var/lib/${PN}
dodir ${DATADIR}
fowners beanstalk:daemon ${DATADIR}
doman doc/"${PN}".1
newconfd "${FILESDIR}/conf-${PV}" beanstalkd
newinitd "${FILESDIR}/init-${PV}" beanstalkd
systemd_dounit "${S}/adm/systemd/${PN}".{service,socket}
}