mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
Closes: https://bugs.gentoo.org/878237 Signed-off-by: Thomas Beierlein <tomjbe@gentoo.org>
60 lines
1.2 KiB
Bash
60 lines
1.2 KiB
Bash
# Copyright 1999-2022 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
inherit autotools flag-o-matic
|
|
|
|
DESCRIPTION="Platform abstraction code for tucnak package"
|
|
HOMEPAGE="http://tucnak.nagano.cz"
|
|
SRC_URI="http://tucnak.nagano.cz/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE="ftdi"
|
|
|
|
RDEPEND="dev-libs/glib:2
|
|
x11-libs/gtk+:2
|
|
media-libs/libsdl
|
|
media-libs/libpng:0
|
|
ftdi? ( dev-embedded/libftdi:1 )
|
|
elibc_musl? ( sys-libs/libunwind )"
|
|
DEPEND="${RDEPEND}"
|
|
BDEPEND="virtual/pkgconfig"
|
|
|
|
MAKEOPTS+=" -j1"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}/${PN}-4.37-configure.patch"
|
|
)
|
|
|
|
src_prepare() {
|
|
eapply ${PATCHES[@]}
|
|
eapply_user
|
|
sed -i -e "s/docsdir/#docsdir/g" \
|
|
-e "s/docs_/#docs_/g" Makefile.am || die
|
|
|
|
# Fix QA-Warning "QA Notice: pkg-config files with wrong LDFLAGS detected"
|
|
sed -i -e 's/@LDFLAGS@//' libzia.pc.in || die
|
|
|
|
# fix build for MUSL (bug #832235)
|
|
if use elibc_musl ; then
|
|
sed -i -e "s/ backtrace(/ unw_backtrace(/" src/zbfd.c || die
|
|
fi
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
use elibc_musl && append-libs -lunwind
|
|
econf \
|
|
$(use_with ftdi) --with-sdl \
|
|
--with-png --without-bfd \
|
|
--disable-static
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install
|
|
find "${D}" -name '*.la' -type f -delete || die
|
|
}
|