summaryrefslogtreecommitdiff
path: root/media-sound/alac_decoder
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 05:35:26 -0500
commitf716a9fe6455d39eef01e718aae68dae61c19704 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /media-sound/alac_decoder
parent3f9cf298e89cd5037b982abba06091224ee76daf (diff)
downloadbaldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.gz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.tar.xz
baldeagleos-repo-f716a9fe6455d39eef01e718aae68dae61c19704.zip
Adding metadata
Diffstat (limited to 'media-sound/alac_decoder')
-rw-r--r--media-sound/alac_decoder/Manifest1
-rw-r--r--media-sound/alac_decoder/alac_decoder-0.2.0-r2.ebuild26
-rw-r--r--media-sound/alac_decoder/files/alac_decoder-0.2.0-fix-build-system.patch24
-rw-r--r--media-sound/alac_decoder/metadata.xml11
4 files changed, 0 insertions, 62 deletions
diff --git a/media-sound/alac_decoder/Manifest b/media-sound/alac_decoder/Manifest
deleted file mode 100644
index 82c4c768eedc..000000000000
--- a/media-sound/alac_decoder/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST alac_decoder-0.2.0.tgz 19019 BLAKE2B e227e4a4fe2049c57e3403574719cf59af657a4bc65f262bbe597ec17d1ccb6248cdf89df86a400afae2fb96747af087a5f897f6636ada62217e829c17299bba SHA512 4b37d4fe37681bfccaa4a27fbaf11eb2a1fba5f14e77d219a6d9814ff44d1168534d05eb19443dd2fd11e6fcdf4da3a22e3f3c79314cb7a6767c152351b13e29
diff --git a/media-sound/alac_decoder/alac_decoder-0.2.0-r2.ebuild b/media-sound/alac_decoder/alac_decoder-0.2.0-r2.ebuild
deleted file mode 100644
index 171bac926768..000000000000
--- a/media-sound/alac_decoder/alac_decoder-0.2.0-r2.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Basic decoder for Apple Lossless Audio Codec files (ALAC)"
-HOMEPAGE="http://craz.net/programs/itunes/alac.html"
-SRC_URI="http://craz.net/programs/itunes/files/${P}.tgz"
-S="${WORKDIR}/${PN}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-
-PATCHES=( "${FILESDIR}"/${PN}-0.2.0-fix-build-system.patch )
-
-src_configure() {
- tc-export CC
-}
-
-src_install() {
- dobin alac
- einstalldocs
-}
diff --git a/media-sound/alac_decoder/files/alac_decoder-0.2.0-fix-build-system.patch b/media-sound/alac_decoder/files/alac_decoder-0.2.0-fix-build-system.patch
deleted file mode 100644
index eac113e1d3d9..000000000000
--- a/media-sound/alac_decoder/files/alac_decoder-0.2.0-fix-build-system.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-Make build system respect user flags
-
---- a/Makefile
-+++ b/Makefile
-@@ -1,6 +1,4 @@
--CC=gcc
- RM=rm -f
--CFLAGS=-ggdb -O3 -W -Wall
-
- C_SOURCES=alac.c \
- demux.c \
-@@ -11,10 +9,10 @@
- OBJECTS=$(C_SOURCES:.c=.o)
-
- alac: $(OBJECTS)
-- $(CC) -o alac $(OBJECTS)
-+ $(CC) $(LDFLAGS) $(CFLAGS) -o alac $(OBJECTS)
-
- %.o: %.c
-- $(CC) -c $(CFLAGS) $< -o $@
-+ $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
-
- clean:
- rm -f $(OBJECTS) *.*~ alac
diff --git a/media-sound/alac_decoder/metadata.xml b/media-sound/alac_decoder/metadata.xml
deleted file mode 100644
index ebf7b5fe387e..000000000000
--- a/media-sound/alac_decoder/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <!-- maintainer-needed -->
- <longdescription lang="en">
- Basic decoder for Apple Lossless Audio Codec files (ALAC). ALAC is a
- proprietary lossless audio compression scheme. Apple never released any
- documents on the format. ALAC uses an adaptive FIR prediction algorithm
- and stores the error values using a modified rice or golumb algorithm.
- </longdescription>
-</pkgmetadata>