summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCédric Krier <cedk@gentoo.org>2009-08-09 10:45:37 +0000
committerCédric Krier <cedk@gentoo.org>2009-08-09 10:45:37 +0000
commit904d50a7258b673d2dae0eed9f0748497dba9521 (patch)
tree55cebc5ebab675a04e8dff36be08aad466e4c059 /media-sound/sndpeek
parentAdd einfo for eselect update and use backend's Makefile to clean up (diff)
downloadgentoo-2-904d50a7258b673d2dae0eed9f0748497dba9521.tar.gz
gentoo-2-904d50a7258b673d2dae0eed9f0748497dba9521.tar.bz2
gentoo-2-904d50a7258b673d2dae0eed9f0748497dba9521.zip
Remove old
(Portage version: 2.1.6.13/cvs/Linux i686)
Diffstat (limited to 'media-sound/sndpeek')
-rw-r--r--media-sound/sndpeek/ChangeLog5
-rw-r--r--media-sound/sndpeek/sndpeek-1.3-r1.ebuild66
2 files changed, 4 insertions, 67 deletions
diff --git a/media-sound/sndpeek/ChangeLog b/media-sound/sndpeek/ChangeLog
index 6923f20c8698..86bcc5e6cf91 100644
--- a/media-sound/sndpeek/ChangeLog
+++ b/media-sound/sndpeek/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-sound/sndpeek
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.7 2009/08/09 10:43:12 cedk Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/ChangeLog,v 1.8 2009/08/09 10:45:37 cedk Exp $
+
+ 09 Aug 2009; Cédric Krier <cedk@gentoo.org> -sndpeek-1.3-r1.ebuild:
+ Remove old
09 Aug 2009; Cédric Krier <cedk@gentoo.org> sndpeek-1.3-r2.ebuild:
Add einfo for eselect update and use backend's Makefile to clean up
diff --git a/media-sound/sndpeek/sndpeek-1.3-r1.ebuild b/media-sound/sndpeek/sndpeek-1.3-r1.ebuild
deleted file mode 100644
index 390c0684fc0e..000000000000
--- a/media-sound/sndpeek/sndpeek-1.3-r1.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/sndpeek/sndpeek-1.3-r1.ebuild,v 1.3 2009/07/13 20:36:07 ssuominen Exp $
-
-EAPI=2
-inherit eutils toolchain-funcs
-
-DESCRIPTION="real-time audio visualization"
-HOMEPAGE="http://soundlab.cs.princeton.edu/software/sndpeek/"
-SRC_URI="http://soundlab.cs.princeton.edu/software/${PN}/files/${P}.tgz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="oss jack alsa"
-
-RDEPEND="virtual/glut
- virtual/opengl
- virtual/glu
- x11-libs/libXmu
- x11-libs/libX11
- x11-libs/libXext
- media-libs/libsndfile
- jack? ( media-sound/jack-audio-connection-kit )
- alsa? ( media-libs/alsa-lib )"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-makefile.patch \
- "${FILESDIR}"/${P}-gcc-4.3.patch \
- "${FILESDIR}"/${P}-gcc-4.4.patch
-}
-
-pkg_setup() {
- local cnt=0
- use jack && cnt="$((${cnt} + 1))"
- use alsa && cnt="$((${cnt} + 1))"
- use oss && cnt="$((${cnt} + 1))"
- if [[ "${cnt}" -eq 0 ]]; then
- eerror "One of the following USE flags is needed: jack, alsa or oss"
- die "Please set one audio engine type"
- elif [[ "${cnt}" -ne 1 ]]; then
- ewarn "You have set ${P} to use multiple audio engine."
- fi
-}
-
-src_compile() {
- cd "${S}/src/sndpeek"
-
- local backend
- if use jack; then
- backend="jack"
- elif use alsa; then
- backend="alsa"
- elif use oss; then
- backend="oss"
- fi
- einfo "Compiling against ${backend}"
- emake -f "makefile.${backend}" CC=$(tc-getCC) \
- CXX=$(tc-getCXX) || die "emake failed"
-}
-
-src_install() {
- dobin src/sndpeek/sndpeek || die "dobin failed"
- dodoc AUTHORS README THANKS TODO VERSIONS
-}