summaryrefslogtreecommitdiff
path: root/media-sound/xwax
diff options
context:
space:
mode:
authorroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
committerroot <root@alpha.trunkmasters.com>2026-06-04 16:24:49 -0500
commita3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7 (patch)
tree0c52bbae1c242fbc296bd650fcd1167685f81492 /media-sound/xwax
parentbfd9c39e4712ebdb442d4ca0673061faed1e70e1 (diff)
downloadbaldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.gz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.tar.xz
baldeagleos-repo-a3ceca1b4c0d9bdb550dc23f06ffbb5a8e033bc7.zip
Adding metadata
Diffstat (limited to 'media-sound/xwax')
-rw-r--r--media-sound/xwax/Manifest1
-rw-r--r--media-sound/xwax/files/xwax-etc-security-limits.conf1
-rw-r--r--media-sound/xwax/metadata.xml15
-rw-r--r--media-sound/xwax/xwax-1.9.ebuild87
4 files changed, 0 insertions, 104 deletions
diff --git a/media-sound/xwax/Manifest b/media-sound/xwax/Manifest
deleted file mode 100644
index 419a623a486b..000000000000
--- a/media-sound/xwax/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST xwax-1.9.tar.gz 87599 BLAKE2B 69a759b927ffce5501772ec4936436193a03976d529a212152bb5975f9519ab00ed7a245176048c6a0f6c101a4ee167acd694e54b548346f5a5588160048cbb2 SHA512 8bfd97097dc6425448d9a05516f93dbae6060c2d908d89be25d93396fcbe9c5047c9c43bc0d901a05881886d9994c31afa04a0cf95b47a942be2d97a23b284c6
diff --git a/media-sound/xwax/files/xwax-etc-security-limits.conf b/media-sound/xwax/files/xwax-etc-security-limits.conf
deleted file mode 100644
index 7ae166ec18f8..000000000000
--- a/media-sound/xwax/files/xwax-etc-security-limits.conf
+++ /dev/null
@@ -1 +0,0 @@
-@xwax - rtprio 80
diff --git a/media-sound/xwax/metadata.xml b/media-sound/xwax/metadata.xml
deleted file mode 100644
index d0c34ffa0920..000000000000
--- a/media-sound/xwax/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE pkgmetadata SYSTEM "https://www.gentoo.org/dtd/metadata.dtd">
-<pkgmetadata>
- <maintainer type="project">
- <email>sound@gentoo.org</email>
- <name>Gentoo Sound project</name>
- </maintainer>
- <use>
- <flag name="alsa">Adds support for ALSA audio input/output.</flag>
- <flag name="oss">Adds support for OSS (open sound system) audio input/output.</flag>
- <flag name="cdda">Sets runtime dependencies to support decoding audio from a compact disc.</flag>
- <flag name="mp3">Sets runtime dependencies to support decoding MP3 audio.</flag>
- <flag name="fallback">Sets runtime dependencies to support decoding "other" audio files.</flag>
- </use>
-</pkgmetadata>
diff --git a/media-sound/xwax/xwax-1.9.ebuild b/media-sound/xwax/xwax-1.9.ebuild
deleted file mode 100644
index e88ea020ee84..000000000000
--- a/media-sound/xwax/xwax-1.9.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-DESCRIPTION="Digital vinyl emulation software"
-HOMEPAGE="https://xwax.org/"
-SRC_URI="https://xwax.org/releases/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="+alsa cdda +fallback jack mp3 oss"
-
-REQUIRED_USE="
- || ( cdda mp3 fallback )
- || ( alsa jack oss )
-"
-
-DEPEND="
- media-fonts/dejavu
- media-libs/libsdl
- media-libs/sdl-ttf
- sys-libs/glibc
- sys-libs/pam
- alsa? ( media-libs/alsa-lib )
- cdda? ( media-sound/cdparanoia )
- fallback? ( media-video/ffmpeg )
- jack? ( virtual/jack )
- mp3? ( media-sound/mpg123 )
-"
-
-RDEPEND="
- ${DEPEND}
- acct-group/xwax
-"
-
-DOCS=( README CHANGES )
-
-src_prepare() {
- default
- # Remove the forced optimization from 'CFLAGS' and 'LDFLAGS' in
- # the Makefile
- # Also remove the dependency on the .version target so we don't need
- # git just to build
- sed -i -e 's/\(^\(LD\|C\)FLAGS.*\)-O[0-9]\(.*\)/\1\3/g' \
- -e 's/^xwax\.o:.*\.version//' \
- Makefile || die "sed failed"
-}
-
-src_configure() {
- tc-export CC
- econf \
- --prefix "${EPREFIX}/usr" \
- $(use_enable alsa) \
- $(use_enable jack) \
- $(use_enable oss)
-}
-
-src_compile() {
- # EXECDIR is the default directory in which xwax will look for
- # the 'xwax-import' and 'xwax-scan' scripts
- emake EXECDIR="\$(BINDIR)" VERSION="${PV}" xwax
-}
-
-src_install() {
- # This is easier than setting all the environment variables
- # needed, running the sed script required to get the man directory
- # correct, and removing the GPL-2 after a 'make install' run
- dobin xwax
- newbin scan xwax-scan
- newbin import xwax-import
- doman xwax.1
-
- dodoc ${DOCS}
-
- insinto "/etc/security/limits.d"
- newins "${FILESDIR}/xwax-etc-security-limits.conf" xwax.conf
-}
-
-pkg_postinst() {
- elog "Be sure to add any users that will be using ${PN} to the"
- elog "\"${PN}\" group. Doing so will allow processes that user"
- elog "runs to request realtime priority."
-}