- migrated to Exherbo
- added a few initial Pantheon components
This commit is contained in:
parent
cb6360a7e8
commit
2d2bbbc830
85 changed files with 931 additions and 2 deletions
|
@ -1,4 +0,0 @@
|
|||
DIST audacious-3.7.2-gtk3.tar.bz2 573269 SHA256 bf9ce9e2f475d14cf6510e14235e858a73afb67826b039c2b6e0f86851ec7edf SHA512 a34fa2c7509c87e626538eb8c5e8e7136e1f8a9f58e1ade80a6b8805d9586ebcafeab6e58602b642316bd61964ff755aa122b4f295f94817613ad2ba645806a9 WHIRLPOOL 5ea872a087d15d872691a44c0cfd5c105936952588d77aad06403c08d98f003b03d2ac22320c178aaf3abb414fe765ad10db3efb13040b0f935a9675b067af90
|
||||
DIST audacious-3.7.2.tar.bz2 572437 SHA256 04f9eaba4522ce9674e6ed8afc7bd6b5fa9a1e240f8090589fc1874f6659f340 SHA512 6cab703dfab9d1479ddf94f6fb71cef961adaa45c56568a211a11851c0ec6a736e81080cc3673f6e1b131245147c55af32ab8eeb9ba1773b07b675ab658d6747 WHIRLPOOL 27043fc2c2084902556b20ba7b3ea907ff7ec32354b2d26c861ef95a97c2f8291d7f811f22d9e542ebe6973682ab15ae9b1ce7bdd1b7d9b449196ef3718d57f7
|
||||
DIST gentoo_ice-xmms-0.2.tar.bz2 51839 SHA256 d1be63368b76f4a8b1d5b0e955cd7a77177f56a7f0b828c6603d8fd2836422b1 SHA512 e863a8f86073007c47ce8c20739aae4bff22e22a7ddc11556b12ae6ebb68654cec7310fdc9d05f2c47f81cf2591fe601b2eb12a2fd911c0a6118c9f3cc524f05 WHIRLPOOL b7a4409629a860021477f34f8886c40c005ea2ec34373d80e6a696323866e54f361e38c76b1ac536775ae5912308f11416e613dec791f21473f01a2fad35bcfd
|
||||
EBUILD audacious-3.7.2.ebuild 1941 SHA256 daca7599f2c11a46d59b80e8998feebe112ca63ec17c0ba208f84e7bee632d68 SHA512 18ba0100fcd3a6deec5f8095b0ecd2cae1a17dddcc43035afe8a94da59ddd231b509e0e8f834070d58b650e87e18e4f7e8fc074c831ede3f70ae94c3d93ab0e0 WHIRLPOOL 7566bf082187610c4cdd0894073d4724a234a7712d5687855fffc5b902dbb081e1f840fa3df9a806093790c4306550b3b5a0d1340e571e81db0f395bad2bfe62
|
|
@ -1,81 +0,0 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
inherit eutils
|
||||
|
||||
MY_P="${P/_/-}"
|
||||
S="${WORKDIR}/${MY_P}"
|
||||
|
||||
DESCRIPTION="Audacious Player - Your music, your way, no exceptions"
|
||||
HOMEPAGE="http://audacious-media-player.org/"
|
||||
SRC_URI="!gtk3? ( http://distfiles.audacious-media-player.org/${MY_P}.tar.bz2 )
|
||||
gtk3? ( http://distfiles.audacious-media-player.org/${MY_P}-gtk3.tar.bz2 )
|
||||
mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
|
||||
|
||||
LICENSE="BSD-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux"
|
||||
|
||||
IUSE="+chardet nls gtk gtk3 qt5"
|
||||
REQUIRED_USE="
|
||||
^^ ( gtk gtk3 qt5 )
|
||||
"
|
||||
DOCS="AUTHORS"
|
||||
|
||||
RDEPEND=">=dev-libs/dbus-glib-0.60
|
||||
>=dev-libs/glib-2.28
|
||||
>=x11-libs/cairo-1.2.6
|
||||
>=x11-libs/pango-1.8.0
|
||||
virtual/freedesktop-icon-theme
|
||||
chardet? ( >=app-i18n/libguess-1.2 )
|
||||
gtk? ( x11-libs/gtk+:2 )
|
||||
gtk3? ( x11-libs/gtk+:3 )
|
||||
qt5? ( dev-qt/qtcore:5
|
||||
dev-qt/qtgui:5
|
||||
dev-qt/qtwidgets:5 )"
|
||||
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
nls? ( dev-util/intltool )"
|
||||
|
||||
PDEPEND="~media-plugins/audacious-plugins-${PV}"
|
||||
|
||||
src_unpack() {
|
||||
default
|
||||
if use gtk3 ; then
|
||||
mv "${MY_P}-gtk3" "${MY_P}"
|
||||
fi
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
if use gtk ;then
|
||||
gtk="--enable-gtk"
|
||||
elif use gtk3 ;then
|
||||
gtk="--enable-gtk"
|
||||
else
|
||||
gtk="--disable-gtk"
|
||||
fi
|
||||
# D-Bus is a mandatory dependency, remote control,
|
||||
# session management and some plugins depend on this.
|
||||
# Building without D-Bus is *unsupported* and a USE-flag
|
||||
# will not be added due to the bug reports that will result.
|
||||
# Bugs #197894, #199069, #207330, #208606
|
||||
econf \
|
||||
--enable-dbus \
|
||||
${gtk} \
|
||||
$(use_enable chardet) \
|
||||
$(use_enable nls) \
|
||||
$(use_enable qt5 qt)
|
||||
}
|
||||
|
||||
src_install() {
|
||||
default
|
||||
|
||||
# Gentoo_ice skin installation; bug #109772
|
||||
insinto /usr/share/audacious/Skins/gentoo_ice
|
||||
doins "${WORKDIR}"/gentoo_ice/*
|
||||
docinto gentoo_ice
|
||||
dodoc "${WORKDIR}"/README
|
||||
}
|
|
@ -1,14 +0,0 @@
|
|||
--- configure.ac.old 2015-12-02 22:23:48.726073674 -0600
|
||||
+++ configure.ac 2015-12-02 22:22:48.788098649 -0600
|
||||
@@ -75,9 +75,10 @@
|
||||
AC_SUBST(PULSE_CFLAGS)
|
||||
|
||||
# If using GCC specifiy some additional parameters
|
||||
+# Modified 2015-12-02 by Philip Creighton <phil@pdc302.net> to include compile flags for c++11
|
||||
if test "x$GCC" = "xyes" ; then
|
||||
CFLAGS="$CFLAGS -pipe -Wall -W -Wno-unused-parameter"
|
||||
- CXXFLAGS="$CXXFLAGS -pipe -Wall -W"
|
||||
+ CXXFLAGS="$CXXFLAGS -pipe -Wall -W -std=c++11"
|
||||
fi
|
||||
|
||||
ZP_LYNX_DOC
|
|
@ -1,42 +0,0 @@
|
|||
# Copyright 1999-2015 Gentoo Foundation
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
# $Id$
|
||||
|
||||
EAPI=5
|
||||
|
||||
inherit eutils
|
||||
|
||||
DESCRIPTION="Pulseaudio Volume Control, GTK based mixer for Pulseaudio"
|
||||
HOMEPAGE="http://freedesktop.org/software/pulseaudio/pavucontrol/"
|
||||
SRC_URI="http://freedesktop.org/software/pulseaudio/${PN}/${P}.tar.xz"
|
||||
|
||||
LICENSE="GPL-2"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
|
||||
IUSE="nls"
|
||||
|
||||
RDEPEND="
|
||||
>=dev-cpp/gtkmm-3.0:3.0
|
||||
>=dev-libs/libsigc++-2.2:2
|
||||
>=media-libs/libcanberra-0.16[gtk3]
|
||||
>=media-sound/pulseaudio-3[glib]
|
||||
virtual/freedesktop-icon-theme
|
||||
"
|
||||
DEPEND="${RDEPEND}
|
||||
virtual/pkgconfig
|
||||
nls? (
|
||||
dev-util/intltool
|
||||
sys-devel/gettext
|
||||
)
|
||||
"
|
||||
src_prepare() {
|
||||
epatch "${FILESDIR}"/pavucontrol-3.0-c11.patch
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
--docdir=/usr/share/doc/${PF} \
|
||||
--htmldir=/usr/share/doc/${PF}/html \
|
||||
--disable-lynx \
|
||||
$(use_enable nls)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue