mirror of
https://anongit.gentoo.org/git/repo/gentoo.git
synced 2025-06-09 06:35:19 +02:00
bump copyright of touched ebuilds to 2024 Signed-off-by: Lucio Sauer <watermanpaint@posteo.net> Signed-off-by: Michał Górny <mgorny@gentoo.org>
39 lines
776 B
Bash
39 lines
776 B
Bash
# Copyright 1999-2024 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit flag-o-matic toolchain-funcs
|
|
|
|
MY_P="${P/_p/-}"
|
|
|
|
DESCRIPTION="CELL spu ps and top alike utilities"
|
|
HOMEPAGE="https://sourceforge.net/projects/libspe"
|
|
SRC_URI="https://downloads.sourceforge.net/libspe/${MY_P}.tar.gz"
|
|
S="${WORKDIR}/${PN}/src"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="ppc ppc64"
|
|
|
|
RDEPEND="
|
|
sys-libs/ncurses:=
|
|
"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="
|
|
sys-apps/help2man
|
|
virtual/pkgconfig
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${P}-buildsystem.patch
|
|
"${FILESDIR}"/${P}-format-security.patch
|
|
)
|
|
|
|
src_configure() {
|
|
tc-export CC
|
|
append-cppflags -std=gnu89
|
|
export CFLAGS="${CFLAGS}"
|
|
export LDFLAGS="${LDFLAGS}"
|
|
export LIBS="$($(tc-getPKG_CONFIG) --libs ncurses)"
|
|
}
|