diff options
author | 2024-02-24 13:19:08 +0100 | |
---|---|---|
committer | 2024-02-24 13:20:38 +0100 | |
commit | f081549e6cf72cf1211beee1259a2fc84b56d67d (patch) | |
tree | f5898212b66835df5788ba99b03800b083d3178d /dev-libs/libisofs | |
parent | media-libs/kimageannotator: Fix some style issues (diff) | |
download | gentoo-f081549e6cf72cf1211beee1259a2fc84b56d67d.tar.gz gentoo-f081549e6cf72cf1211beee1259a2fc84b56d67d.tar.bz2 gentoo-f081549e6cf72cf1211beee1259a2fc84b56d67d.zip |
dev-libs/libisofs: QA, sync with other libburnia packages
Signed-off-by: Daniel Pielmeier <billie@gentoo.org>
Diffstat (limited to 'dev-libs/libisofs')
-rw-r--r-- | dev-libs/libisofs/libisofs-1.5.6_p1-r1.ebuild | 59 | ||||
-rw-r--r-- | dev-libs/libisofs/libisofs-1.5.6_p1.ebuild | 4 |
2 files changed, 61 insertions, 2 deletions
diff --git a/dev-libs/libisofs/libisofs-1.5.6_p1-r1.ebuild b/dev-libs/libisofs/libisofs-1.5.6_p1-r1.ebuild new file mode 100644 index 000000000000..bc91f16b5fee --- /dev/null +++ b/dev-libs/libisofs/libisofs-1.5.6_p1-r1.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2024 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" +SRC_URI="https://files.libburnia-project.org/releases/${MY_P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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? ( sys-libs/zlib ) +" +DEPEND=" + ${RDEPEND} +" + +S="${WORKDIR}/${MY_PF}" + +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 +} diff --git a/dev-libs/libisofs/libisofs-1.5.6_p1.ebuild b/dev-libs/libisofs/libisofs-1.5.6_p1.ebuild index 6f21bd00da7b..a1580127c83c 100644 --- a/dev-libs/libisofs/libisofs-1.5.6_p1.ebuild +++ b/dev-libs/libisofs/libisofs-1.5.6_p1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -8,7 +8,7 @@ MY_P=${MY_PF}.pl01 DESCRIPTION="Open-source library for reading, mastering and writing optical discs" HOMEPAGE="https://dev.lovelyhq.com/libburnia/web/wiki/Libisofs" -SRC_URI="http://files.libburnia-project.org/releases/${MY_P}.tar.gz" +SRC_URI="https://files.libburnia-project.org/releases/${MY_P}.tar.gz" LICENSE="GPL-2" SLOT="0" |