diff options
author | Daniel Pielmeier <billie@gentoo.org> | 2023-06-25 15:10:23 +0200 |
---|---|---|
committer | Daniel Pielmeier <billie@gentoo.org> | 2023-06-25 15:11:21 +0200 |
commit | c425a418118e8398c3710a3a477d61aa93b1d13c (patch) | |
tree | 7c79b3efb1ffc4493a9407e5204169c3eb423953 /dev-libs/libburn | |
parent | profiles: Update descent3 last-rites message to mention modern SDL2 port (diff) | |
download | gentoo-c425a418118e8398c3710a3a477d61aa93b1d13c.tar.gz gentoo-c425a418118e8398c3710a3a477d61aa93b1d13c.tar.bz2 gentoo-c425a418118e8398c3710a3a477d61aa93b1d13c.zip |
dev-libs/libburn: add 1.5.6
Signed-off-by: Daniel Pielmeier <billie@gentoo.org>
Diffstat (limited to 'dev-libs/libburn')
-rw-r--r-- | dev-libs/libburn/Manifest | 1 | ||||
-rw-r--r-- | dev-libs/libburn/libburn-1.5.6.ebuild | 41 |
2 files changed, 42 insertions, 0 deletions
diff --git a/dev-libs/libburn/Manifest b/dev-libs/libburn/Manifest index 41ad895201dc..e94fde111186 100644 --- a/dev-libs/libburn/Manifest +++ b/dev-libs/libburn/Manifest @@ -1 +1,2 @@ DIST libburn-1.5.4.tar.gz 991212 BLAKE2B 3fd4aa70eed2c9d0d33ef8bb967cd6208f1561aeebe8bc2b222fa4639fa3c215d49ee5ed3efc32813221fc4a9016ec9a3cabdcd8ae052d161794c0af11c7e6ee SHA512 dd7b14093e62e2c02011955c24e01d70ed78969b14faf7e5a63c0da97a80c438b628922532eb135af7dea8ee7c7b83554b3354160306dad852ce5bf6eb1d5ac9 +DIST libburn-1.5.6.tar.gz 995353 BLAKE2B 2c4b2e0a191c2a02327177bc5acd418d14a0c6eb9de065de171b0c4240a8bd7746ab2fd775fa1f0433bc1fe98dd47620524ec2954f4aa0f2015557cf881a5d3f SHA512 549cb25310aac5ce445639374d84f0c09fb1fdd70be97479588775e5afcc12dd0655c5bf51bd3f1bf8c06a66b318fd1e709dcfd72845e795ffaf353ea621accd diff --git a/dev-libs/libburn/libburn-1.5.6.ebuild b/dev-libs/libburn/libburn-1.5.6.ebuild new file mode 100644 index 000000000000..5070cb8bc9c1 --- /dev/null +++ b/dev-libs/libburn/libburn-1.5.6.ebuild @@ -0,0 +1,41 @@ +# Copyright 1999-2023 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Open-source library for reading, mastering and writing optical discs" +HOMEPAGE="https://dev.lovelyhq.com/libburnia/web/wiki/Libburn" +SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86" +IUSE="debug static-libs" + +BDEPEND=" + virtual/pkgconfig +" +RDEPEND="" +DEPEND=" + ${RDEPEND} +" + +src_configure() { + econf \ + $(use_enable static-libs static) \ + --disable-ldconfig-at-install \ + $(use_enable debug) +} + +src_install() { + default + + dodoc CONTRIBUTORS doc/{comments,*.txt} + + docinto cdrskin + dodoc cdrskin/{*.txt,README} + docinto cdrskin/html + dodoc cdrskin/cdrskin_eng.html + + find "${D}" -name '*.la' -delete || die +} |