[media-sound/jack-audio-connection-kit] Drop, using Portage version now
This commit is contained in:
@@ -1,2 +0,0 @@
|
||||
DIST jack-audio-connection-kit-0.124.1.tar.gz 1113456 SHA256 eb42df6065576f08feeeb60cb9355dce4eb53874534ad71534d7aa31bae561d6 SHA512 9c885da516f2ca246edba94db26c851229d063f1557ea91ec76ca57d675a510d16cc4baad5adb316cf46aaaa8b8d7579b484a53b9a803b34fc9bb34c983a8fe2 WHIRLPOOL 41232400d99a72b29a75f4d781c373a7f453c704a52b0a669cab71296574881b0a99b21b86628d02db8c3d7a64bec6a259ae1ba0a4c721867e19283139cee824
|
||||
DIST jack-audio-connection-kit-0.125.0.tar.gz 1217977 SHA256 3517b5bff82139a76b2b66fe2fd9a3b34b6e594c184f95a988524c575b11d444 SHA512 acdac0588c8a6b79763177677885b6e7bfa8ee3cd9556b33bfe09512bc1191414bb4f97eed62c3c71567b13b4eb69d95ec6b438e5a9d2e22a956c073d500c46f WHIRLPOOL 3771caa41e8b813e888959b377ec99a14c6ac16ba0e9d564706666a4d3c049ac5d97787715d00b40dd309039f892fd167285f216b71a07209ebce9b98065c88b
|
||||
-15
@@ -1,15 +0,0 @@
|
||||
Index: jack-audio-connection-kit-0.125.0/configure
|
||||
===================================================================
|
||||
--- jack-audio-connection-kit-0.125.0.orig/configure
|
||||
+++ jack-audio-connection-kit-0.125.0/configure
|
||||
@@ -15795,9 +15795,7 @@ HOST_DEFAULT_TMP_DIR=/dev/shm
|
||||
USE_MD5SUM=1
|
||||
case "${host_os}" in
|
||||
freebsd*)
|
||||
- # current FreeBSD header files conflict with the OSS driver's
|
||||
- # barrier code, this may be fixed in 5.3, stay tuned.
|
||||
- USE_BARRIER="no"
|
||||
+ TRY_POSIX_SHM=yes
|
||||
USE_MD5SUM=0
|
||||
;;
|
||||
openbsd*)
|
||||
@@ -1,13 +0,0 @@
|
||||
--- jack-audio-connection-kit-0.121.3/configure.old 2012-05-29 11:10:22.000000000 -0400
|
||||
+++ jack-audio-connection-kit-0.121.3/configure 2012-05-29 11:10:46.000000000 -0400
|
||||
@@ -14903,7 +14903,9 @@
|
||||
freebsd*)
|
||||
# current FreeBSD header files conflict with the OSS driver's
|
||||
# barrier code, this may be fixed in 5.3, stay tuned.
|
||||
- USE_BARRIER="no"
|
||||
+ # USE_BARRIER="no"
|
||||
+ TRY_POSIX_SHM=yes
|
||||
+ HOST_DEFAULT_TMP_DIR=/tmp
|
||||
;;
|
||||
openbsd*)
|
||||
# pthread_barrier* not implemented
|
||||
-17
@@ -1,17 +0,0 @@
|
||||
On Linux/SPARC, /proc/cpuinfo doesn't include "Cpu0Bogo" anymore,
|
||||
use "Cpu0ClkTck" instead to determine the processor speed.
|
||||
|
||||
linux upstream commit 8b99cfb8cc51adae7f5294c8962a026c63100959
|
||||
|
||||
--- old/config/os/gnu-linux/time.c
|
||||
+++ new/config/os/gnu-linux/time.c
|
||||
@@ -152,7 +152,8 @@
|
||||
defined(__x86_64__)
|
||||
ret = sscanf(buf, "cpu MHz : %" SCNu64, &mhz);
|
||||
#elif defined( __sparc__ )
|
||||
- ret = sscanf(buf, "Cpu0Bogo : %" SCNu64, &mhz);
|
||||
+ ret = sscanf(buf, "Cpu0ClkTck : %" PRIx16, &mhz);
|
||||
+ mhz = mhz / 1000 / 1000; // hz -> mhz
|
||||
#elif defined( __mc68000__ )
|
||||
ret = sscanf(buf, "Clocking: %" SCNu64, &mhz);
|
||||
#elif defined( __s390__ )
|
||||
@@ -1,82 +0,0 @@
|
||||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit flag-o-matic eutils multilib multilib-minimal
|
||||
|
||||
DESCRIPTION="A low-latency audio server"
|
||||
HOMEPAGE="http://www.jackaudio.org"
|
||||
SRC_URI="http://www.jackaudio.org/downloads/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2 LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd"
|
||||
IUSE="cpu_flags_x86_3dnow altivec alsa coreaudio doc debug examples ffado oss cpu_flags_x86_sse cpudetection pam"
|
||||
|
||||
# readline: only used for jack_transport -> useless for non native ABIs
|
||||
# libsndfile: ditto for jackrec
|
||||
RDEPEND="
|
||||
sys-libs/readline
|
||||
>=media-libs/libsndfile-1.0.0
|
||||
alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
|
||||
ffado? ( media-libs/libffado )
|
||||
>=media-libs/libsamplerate-0.1.8-r1[${MULTILIB_USEDEP}]
|
||||
!media-sound/jack-cvs
|
||||
abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r7
|
||||
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
doc? ( app-doc/doxygen )"
|
||||
RDEPEND="${RDEPEND}
|
||||
alsa? ( sys-process/lsof )
|
||||
pam? ( sys-auth/realtime-base )"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${PN}-sparc-cpuinfo.patch"
|
||||
epatch "${FILESDIR}/${PN}-freebsd.patch"
|
||||
}
|
||||
|
||||
DOCS=( AUTHORS TODO README )
|
||||
|
||||
multilib_src_configure() {
|
||||
local myconf=""
|
||||
|
||||
# CPU Detection (dynsimd) uses asm routines which requires 3dnow, mmx and sse.
|
||||
if use cpudetection && use cpu_flags_x86_3dnow && use cpu_flags_x86_sse ; then
|
||||
einfo "Enabling cpudetection (dynsimd). Adding -mmmx, -msse, -m3dnow and -O2 to CFLAGS."
|
||||
myconf="${myconf} --enable-dynsimd"
|
||||
append-flags -mmmx -msse -m3dnow -O2
|
||||
fi
|
||||
|
||||
use doc || export ac_cv_prog_HAVE_DOXYGEN=false
|
||||
|
||||
ECONF_SOURCE="${S}" econf \
|
||||
$(use_enable altivec) \
|
||||
$(use_enable alsa) \
|
||||
$(use_enable coreaudio) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable ffado firewire) \
|
||||
$(use_enable oss) \
|
||||
--disable-portaudio \
|
||||
$(use_enable cpu_flags_x86_sse sse) \
|
||||
--with-html-dir=/usr/share/doc/${PF} \
|
||||
--disable-dependency-tracking \
|
||||
--libdir=/usr/$(get_libdir) \
|
||||
${myconf}
|
||||
|
||||
if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
|
||||
for i in tools man ; do
|
||||
sed -i -e "s/ ${i}//" Makefile || die
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
einstalldocs
|
||||
if use examples; then
|
||||
insinto /usr/share/doc/${PF}
|
||||
doins -r "${S}/example-clients"
|
||||
docompress -x /usr/share/doc/${PF}/example-clients
|
||||
fi
|
||||
}
|
||||
@@ -1,81 +0,0 @@
|
||||
# Copyright 1999-2017 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit flag-o-matic eutils multilib multilib-minimal
|
||||
|
||||
DESCRIPTION="A low-latency audio server"
|
||||
HOMEPAGE="http://www.jackaudio.org"
|
||||
SRC_URI="http://www.jackaudio.org/downloads/${P}.tar.gz"
|
||||
|
||||
LICENSE="GPL-2 LGPL-2.1"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~amd64-fbsd"
|
||||
IUSE="cpu_flags_x86_3dnow altivec alsa coreaudio doc debug examples ffado oss cpu_flags_x86_sse pam"
|
||||
|
||||
# readline: only used for jack_transport -> useless for non native ABIs
|
||||
# libsndfile: ditto for jackrec
|
||||
RDEPEND="
|
||||
sys-libs/db[${MULTILIB_USEDEP}]
|
||||
sys-libs/readline:0=
|
||||
>=media-libs/libsndfile-1.0.0
|
||||
alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
|
||||
ffado? ( media-libs/libffado )
|
||||
>=media-libs/libsamplerate-0.1.8-r1[${MULTILIB_USEDEP}]
|
||||
!media-sound/jack-cvs
|
||||
abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r7
|
||||
!app-emulation/emul-linux-x86-soundlibs[-abi_x86_32(-)] )"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
doc? ( app-doc/doxygen )"
|
||||
RDEPEND="${RDEPEND}
|
||||
alsa? ( sys-process/lsof )
|
||||
pam? ( sys-auth/realtime-base )"
|
||||
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}/${PN}-0.125.0-freebsd.patch"
|
||||
}
|
||||
|
||||
DOCS=( AUTHORS TODO README )
|
||||
|
||||
multilib_src_configure() {
|
||||
local myconf=""
|
||||
|
||||
# Disabling CPU Detection (dynsimd) disables optimized asm routines (3dnow
|
||||
# or sse)
|
||||
if use cpu_flags_x86_3dnow || use cpu_flags_x86_sse ; then
|
||||
myconf="${myconf} --enable-dynsimd"
|
||||
fi
|
||||
|
||||
use doc || export ac_cv_prog_HAVE_DOXYGEN=false
|
||||
|
||||
ECONF_SOURCE="${S}" econf \
|
||||
$(use_enable altivec) \
|
||||
$(use_enable alsa) \
|
||||
$(use_enable coreaudio) \
|
||||
$(use_enable debug) \
|
||||
$(use_enable ffado firewire) \
|
||||
$(use_enable oss) \
|
||||
--disable-portaudio \
|
||||
$(use_enable cpu_flags_x86_sse sse) \
|
||||
--with-html-dir=/usr/share/doc/${PF} \
|
||||
--disable-dependency-tracking \
|
||||
--libdir=/usr/$(get_libdir) \
|
||||
${myconf}
|
||||
|
||||
if [ "${ABI}" != "${DEFAULT_ABI}" ] ; then
|
||||
for i in tools man ; do
|
||||
sed -i -e "s/ ${i}//" Makefile || die
|
||||
done
|
||||
fi
|
||||
}
|
||||
|
||||
multilib_src_install_all() {
|
||||
einstalldocs
|
||||
if use examples; then
|
||||
insinto /usr/share/doc/${PF}
|
||||
doins -r "${S}/example-clients"
|
||||
docompress -x /usr/share/doc/${PF}/example-clients
|
||||
fi
|
||||
}
|
||||
@@ -1,14 +0,0 @@
|
||||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
|
||||
<pkgmetadata>
|
||||
<maintainer type="project">
|
||||
<email>proaudio@gentoo.org</email>
|
||||
<name>Gentoo ProAudio Project</name>
|
||||
</maintainer>
|
||||
<use>
|
||||
<flag name="ffado">Build with support for FireWire (FFADO)</flag>
|
||||
<flag name="coreaudio">Build the CoreAudio driver on Mac OS X systems</flag>
|
||||
<flag name="cpudetection">Enables runtime cpudetection</flag>
|
||||
<flag name="pam">Add basic realtime configuration via <pkg>sys-auth/realtime-base</pkg></flag>
|
||||
</use>
|
||||
</pkgmetadata>
|
||||
Reference in New Issue
Block a user