media-libs/liboggz: add 1.1.3

Bug: https://bugs.gentoo.org/907262
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2025-09-14 15:37:46 +01:00
parent c891340cb1
commit 7c8200bfd4
2 changed files with 44 additions and 0 deletions

View File

@@ -1 +1,2 @@
DIST liboggz-1.1.1.tar.gz 702261 BLAKE2B 0631d1c30a045c67b38b9de107a97dc8963890a867262b01271adfb4483c77f8d14e203dffd057194b19b4e6cc28169a3a085fbb79d683a48ee091316cca8a4f SHA512 8f5fc8ca49cb6f7a1160a9c1932876b771d55985d59ddc1f48497dfc08641414a58244d7a7e52bfcecdb69f52913d0123efd8f92513f8b9064e4abe1442f2cba
DIST liboggz-1.1.3.tar.gz 664029 BLAKE2B 4c1e666efb35d1ecb9b1887cca0dd4443cf82033469ae85615268d170c57c84a227c20b510e07df77dec652c870920d1d2d6f2374f8d12829e098b147558f274 SHA512 868362f5daa3ada5b876300b07e33a5204accd90253c5353d67277fd06d95d7dfe352632dd2afe97ed0bf95e67721b610d59c864eb266e0418ccd34387a573a1

View File

@@ -0,0 +1,43 @@
# Copyright 1999-2025 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit autotools
DESCRIPTION="A simple programming interface for reading and writing Ogg files and streams"
HOMEPAGE="https://www.xiph.org/oggz/"
SRC_URI="https://downloads.xiph.org/releases/${PN}/${P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
IUSE="debug doc test"
RESTRICT="!test? ( test )"
DEPEND=">=media-libs/libogg-1.2.0"
RDEPEND="${DEPEND}"
BDEPEND="
virtual/pkgconfig
doc? ( app-text/doxygen )
test? ( app-text/docbook-sgml-utils )
"
src_prepare() {
default
if ! use doc; then
sed -e '/AC_CHECK_PROG/s:doxygen:dIsAbLe&:' -i configure.ac || die
fi
AT_M4DIR="m4" eautoreconf
}
src_configure() {
econf $(use_enable debug)
}
src_install() {
default
find "${D}" -type f -name '*.la' -delete || die
}