mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-01-06 00:05:54 +03:00
Done via: ``` git grep -l 'virtual/zlib ' | xargs sed -i -e 's@virtual/zlib @virtual/zlib:= @g' ``` with some manual reverts. Signed-off-by: Michał Górny <mgorny@gentoo.org>
64 lines
1.3 KiB
Bash
64 lines
1.3 KiB
Bash
# Copyright 1999-2025 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=8
|
|
|
|
MY_PF=${P/_p1/}
|
|
MY_P=${MY_PF}.pl01
|
|
|
|
inherit autotools
|
|
|
|
DESCRIPTION="Open-source library for reading, mastering and writing optical discs"
|
|
HOMEPAGE="https://dev.lovelyhq.com/libburnia/web/wiki/Libisofs https://dev.lovelyhq.com/libburnia/libisofs"
|
|
SRC_URI="https://files.libburnia-project.org/releases/${MY_P}.tar.gz"
|
|
|
|
S="${WORKDIR}/${MY_PF}"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ~mips ppc ppc64 ~riscv ~s390 ~sparc x86"
|
|
IUSE="acl debug static-libs verbose-debug xattr zlib"
|
|
|
|
BDEPEND="
|
|
virtual/pkgconfig
|
|
"
|
|
RDEPEND="
|
|
acl? ( virtual/acl )
|
|
xattr? ( sys-apps/attr )
|
|
zlib? ( virtual/zlib:= )
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
|
|
PATCHES=(
|
|
"${FILESDIR}"/${PN}-1.5.6_slibtool.patch
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
|
|
# Ancient libtool version in 1.5.6 at least (debian's 2.4.2-1.11)
|
|
eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable static-libs static) \
|
|
$(use_enable debug) \
|
|
$(use_enable verbose-debug) \
|
|
$(use_enable acl libacl) \
|
|
$(use_enable xattr) \
|
|
$(use_enable zlib) \
|
|
--disable-libjte \
|
|
--disable-ldconfig-at-install
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
|
|
dodoc Roadmap doc/{*.txt,Tutorial}
|
|
|
|
find "${D}" -name '*.la' -delete || die
|
|
}
|