Files
guru/sci-misc/boinc-wrapper/boinc-wrapper-26018-r1.ebuild
Lucio Sauer b3a76199a2 sci-misc/boinc-wrapper: fix variable order
Signed-off-by: Lucio Sauer <watermanpaint@posteo.net>
Signed-off-by: Julien Roy <julien@jroy.ca>
2024-05-14 20:59:22 -04:00

47 lines
896 B
Bash

# Copyright 1999-2024 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools edo
DESCRIPTION="Wrapper to use non-BOINC apps with BOINC"
HOMEPAGE="https://boinc.berkeley.edu/trac/wiki/WrapperApp"
SRC_URI="https://github.com/BOINC/boinc/archive/refs/tags/wrapper/${PV}.tar.gz -> ${P}.tar.gz"
LICENSE="Info-ZIP LGPL-3+ regexp-UofT"
SLOT="0"
KEYWORDS="~amd64 ~arm64 ~x86"
# libboinc-api dependencies
# no subslot, because "-Wl,--as-needed" removes them
DEPEND="
dev-libs/openssl
media-libs/freeglut
media-libs/libjpeg-turbo
"
DOCS=( job.xml )
src_prepare() {
default
eautoreconf
}
src_configure() {
edo bash generate_svn_version.sh
econf --enable-static --enable-pkg-devel --disable-fcgi
}
src_compile() {
emake
emake -C samples/wrapper
}
src_install() {
cd samples/wrapper || die
einstalldocs
newbin wrapper boinc-wrapper
}