49 lines
1.2 KiB
Bash
49 lines
1.2 KiB
Bash
# Copyright 1999-2014 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
|
|
inherit user systemd
|
|
|
|
KEYWORDS="~amd64"
|
|
DESCRIPTION="A highly-available key value store for shared configuration and service discovery"
|
|
HOMEPAGE="https://github.com/coreos/etcd/"
|
|
SRC_URI="https://github.com/coreos/etcd/archive/v${PV}.zip -> ${P}.zip"
|
|
LICENSE="Apache-2.0"
|
|
SLOT="0"
|
|
IUSE="doc"
|
|
DEPEND=">=dev-lang/go-1.2"
|
|
|
|
pkg_setup() {
|
|
enewgroup ${PN}
|
|
enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
|
|
}
|
|
|
|
src_prepare() {
|
|
sed -e "s:^\(go install\)\(.*\)$:\\1 -x -ldflags=\"-v -linkmode=external -extldflags '${LDFLAGS}'\" \\2:" \
|
|
-i build || die
|
|
}
|
|
|
|
src_compile() {
|
|
CGO_CFLAGS="${CFLAGS}" ./build || die
|
|
}
|
|
|
|
src_install() {
|
|
insinto /etc/${PN}
|
|
doins "${FILESDIR}/${PN}.conf"
|
|
dobin bin/${PN}
|
|
newbin bin/bench ${PN}-bench
|
|
dodoc CHANGELOG README.md
|
|
use doc && dodoc -r Documentation
|
|
systemd_dounit "${FILESDIR}/${PN}.service"
|
|
systemd_newtmpfilesd "${FILESDIR}/${PN}.tmpfiles.d.conf" ${PN}.conf
|
|
newinitd "${FILESDIR}"/${PN}.initd ${PN}
|
|
newconfd "${FILESDIR}"/${PN}.confd ${PN}
|
|
dodir /var/lib/${PN}
|
|
fowners ${PN}:${PN} /var/lib/${PN}
|
|
fperms 755 /var/lib/${PN}
|
|
dodir /var/log/${PN}
|
|
fowners ${PN}:${PN} /var/log/${PN}
|
|
fperms 755 /var/log/${PN}
|
|
}
|