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.
33 lines
642 B
33 lines
642 B
# Copyright 1999-2016 Georg Hopp
|
|
# Distributed under the terms of the GNU General Public License v3
|
|
|
|
EAPI=6
|
|
|
|
inherit eutils git-r3 autotools
|
|
|
|
DESCRIPTION="The taskrambler web server."
|
|
HOMEPAGE="https://gitlab.weird-web-workers.org/taskrambler/taskrambler"
|
|
EGIT_REPO_URI="https://gitlab.weird-web-workers.org/taskrambler/taskrambler.git"
|
|
EGIT_BRANCH="next"
|
|
LICENSE="GPL-3+"
|
|
|
|
KEYWORDS="~amd64 ~x86"
|
|
|
|
DEPEND="
|
|
dev-libs/libtrbase
|
|
dev-libs/libtrio
|
|
dev-libs/libtrhash
|
|
dev-libs/libtrdata"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_prepare() {
|
|
aclocal
|
|
libtoolize --copy
|
|
autoheader
|
|
automake --gnu --add-missing --copy
|
|
autoconf
|
|
}
|
|
|
|
src_compile() {
|
|
emake -j1
|
|
}
|