commit: afdee627b5077b5697b7e9fd001c56a1c84e4c8f Author: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> AuthorDate: Wed Aug 10 16:39:11 2016 +0000 Commit: Lars Wendler <polynomial-c <AT> gentoo <DOT> org> CommitDate: Wed Aug 10 16:39:11 2016 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afdee627
media-sound/pamix: Initial commit (bug #590728). Thanks to Joshua Jensch for the bug report and the ebuild work. Package-Manager: portage-2.3.0 Signed-off-by: Lars Wendler <polynomial-c <AT> gentoo.org> media-sound/pamix/Manifest | 1 + media-sound/pamix/metadata.xml | 11 +++++++++++ media-sound/pamix/pamix-1.1.ebuild | 30 ++++++++++++++++++++++++++++++ media-sound/pamix/pamix-9999.ebuild | 30 ++++++++++++++++++++++++++++++ 4 files changed, 72 insertions(+) diff --git a/media-sound/pamix/Manifest b/media-sound/pamix/Manifest new file mode 100644 index 0000000..e696d39 --- /dev/null +++ b/media-sound/pamix/Manifest @@ -0,0 +1 @@ +DIST pamix-1.1.tar.gz 7955 SHA256 81e88b5c305b2864ea5c6adda79a9a2fe18c7ed7721354e865862e779acb6f5f SHA512 cdec746bfbb1887d558762a0247370616f480b4695a7802f4ac47c7d9f545efe77af228b1992dd61e2bed09118ca095546bde206be4b8dfea1839b91c768cdbc WHIRLPOOL c1113e4783637c1ec5f77be735d4a96ffc3060449571ad3f32d06e9d369c7dba6140863ab5b2f0a19f78b7a591614c32980e1e87c8ec950fe3e589514e5759a2 diff --git a/media-sound/pamix/metadata.xml b/media-sound/pamix/metadata.xml new file mode 100644 index 0000000..88f381f --- /dev/null +++ b/media-sound/pamix/metadata.xml @@ -0,0 +1,11 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <maintainer type="person"> + <email>[email protected]</email> + <name>Lars Wendler</name> + </maintainer> + <upstream> + <remote-id type="github">patroclos/PAmix</remote-id> + </upstream> +</pkgmetadata> diff --git a/media-sound/pamix/pamix-1.1.ebuild b/media-sound/pamix/pamix-1.1.ebuild new file mode 100644 index 0000000..986dad7 --- /dev/null +++ b/media-sound/pamix/pamix-1.1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +[[ "${PV}" == 9999 ]] && inherit git-r3 + +DESCRIPTION="A PulseAudio NCurses mixer" +HOMEPAGE="https://github.com/patroclos/PAmix" +LICENSE="MIT" +SLOT="0" + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="git://github.com/patroclos/PAmix.git" +else + SRC_URI="https://github.com/patroclos/PAmix/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/PAmix-${PV}" +fi + +RDEPEND="media-sound/pulseaudio + sys-libs/ncurses:0=[unicode]" +DEPEND="virtual/pkgconfig + ${RDEPEND}" + +src_unpack() { + [[ "${PV}" == 9999 ]] && git-r3_src_unpack + default +} diff --git a/media-sound/pamix/pamix-9999.ebuild b/media-sound/pamix/pamix-9999.ebuild new file mode 100644 index 0000000..986dad7 --- /dev/null +++ b/media-sound/pamix/pamix-9999.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2016 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=6 + +[[ "${PV}" == 9999 ]] && inherit git-r3 + +DESCRIPTION="A PulseAudio NCurses mixer" +HOMEPAGE="https://github.com/patroclos/PAmix" +LICENSE="MIT" +SLOT="0" + +if [[ ${PV} == 9999 ]] ; then + EGIT_REPO_URI="git://github.com/patroclos/PAmix.git" +else + SRC_URI="https://github.com/patroclos/PAmix/archive/v${PV}.tar.gz -> ${P}.tar.gz" + KEYWORDS="~amd64 ~x86" + S="${WORKDIR}/PAmix-${PV}" +fi + +RDEPEND="media-sound/pulseaudio + sys-libs/ncurses:0=[unicode]" +DEPEND="virtual/pkgconfig + ${RDEPEND}" + +src_unpack() { + [[ "${PV}" == 9999 ]] && git-r3_src_unpack + default +}
