mirror of
https://github.com/gentoo-mirror/guru.git
synced 2025-04-20 00:08:58 -04:00
45 lines
982 B
Bash
45 lines
982 B
Bash
# Copyright 2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit toolchain-funcs
|
|
|
|
DESCRIPTION="Utilities for Broadcom-based cable modems"
|
|
HOMEPAGE="https://github.com/jclehner/bcm2-utils"
|
|
SRC_URI="https://github.com/jclehner/bcm2-utils/archive/refs/tags/v${PV}.tar.gz -> ${P}.tar.gz"
|
|
|
|
LICENSE="GPL-3"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64"
|
|
|
|
DEPEND="
|
|
dev-libs/boost
|
|
dev-libs/openssl
|
|
"
|
|
RDEPEND="dev-libs/openssl"
|
|
|
|
src_prepare(){
|
|
default
|
|
sed -i 's@shell git describe --always@shell git describe --always 2>/dev/null@' "Makefile" || die
|
|
}
|
|
|
|
src_compile(){
|
|
emake \
|
|
CC="$(tc-getCC)" \
|
|
CXX="$(tc-getCXX)" \
|
|
CFLAGS="${CFLAGS} '-DVERSION=\"v${PV}\"'" \
|
|
CXXFLAGS="${CXXFLAGS} '-DVERSION=\"v${PV}\"'" \
|
|
LDFLAGS="${LDFLAGS}"
|
|
}
|
|
|
|
src_install(){
|
|
mkdir -p "${D}/usr/bin" || die
|
|
emake PREFIX="${D}/usr" install
|
|
}
|
|
|
|
src_test(){
|
|
emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}" \
|
|
LDFLAGS="${LDFLAGS}" check
|
|
}
|