From 353232ef84e2ea0fb27a2a7b329813bd5a75ec7a Mon Sep 17 00:00:00 2001 From: Davide Pesavento Date: Fri, 31 Aug 2007 12:13:23 +0200 Subject: [PATCH] Deleted media-sound/lastfmplayer because it's in portage now. --- media-sound/lastfmplayer/Manifest | 8 --- .../lastfmplayer/files/digest-lastfmplayer-1.3.1.0 | 3 - .../lastfmplayer/lastfmplayer-1.3.1.0.ebuild | 79 ---------------------- 3 files changed, 90 deletions(-) delete mode 100644 media-sound/lastfmplayer/Manifest delete mode 100644 media-sound/lastfmplayer/files/digest-lastfmplayer-1.3.1.0 delete mode 100644 media-sound/lastfmplayer/lastfmplayer-1.3.1.0.ebuild diff --git a/media-sound/lastfmplayer/Manifest b/media-sound/lastfmplayer/Manifest deleted file mode 100644 index c7e244f..0000000 --- a/media-sound/lastfmplayer/Manifest +++ /dev/null @@ -1,8 +0,0 @@ -DIST last.fm-1.3.1.0.src.tar.bz2 1348815 RMD160 b7a2839d53b50f4815d59efbae3f6476cfb81493 SHA1 674b0187c355bbe85931e5a4e15971bf6931e0cc SHA256 e33f575112b58050beb4c82d008c90c11e99308b6f9429a354a1980bd854436c -EBUILD lastfmplayer-1.3.1.0.ebuild 2154 RMD160 6f765cdc7f6ed83c1f1f543862d55f2cb6c311bd SHA1 a56afba35b6867f007b81725a1dc04bea6f7b28e SHA256 6678d7ac1d84e886b228ad1d5041da404e0228a43287d3b63e836e6004989ec4 -MD5 9c6a105d05ccbdd1099b5aff286ea6e1 lastfmplayer-1.3.1.0.ebuild 2154 -RMD160 6f765cdc7f6ed83c1f1f543862d55f2cb6c311bd lastfmplayer-1.3.1.0.ebuild 2154 -SHA256 6678d7ac1d84e886b228ad1d5041da404e0228a43287d3b63e836e6004989ec4 lastfmplayer-1.3.1.0.ebuild 2154 -MD5 db54a4c884ae0419519c90d98c5d5a91 files/digest-lastfmplayer-1.3.1.0 265 -RMD160 ccddc5c8f368cb962913da523f3db8d0c5a354f0 files/digest-lastfmplayer-1.3.1.0 265 -SHA256 173460e110ac3dd62c6cdc35df3fd937df4a0b88793ad33da67258e37bfd3e3c files/digest-lastfmplayer-1.3.1.0 265 diff --git a/media-sound/lastfmplayer/files/digest-lastfmplayer-1.3.1.0 b/media-sound/lastfmplayer/files/digest-lastfmplayer-1.3.1.0 deleted file mode 100644 index acf8f82..0000000 --- a/media-sound/lastfmplayer/files/digest-lastfmplayer-1.3.1.0 +++ /dev/null @@ -1,3 +0,0 @@ -MD5 78d97b69a9ffe6133b94502e81a776a7 last.fm-1.3.1.0.src.tar.bz2 1348815 -RMD160 b7a2839d53b50f4815d59efbae3f6476cfb81493 last.fm-1.3.1.0.src.tar.bz2 1348815 -SHA256 e33f575112b58050beb4c82d008c90c11e99308b6f9429a354a1980bd854436c last.fm-1.3.1.0.src.tar.bz2 1348815 diff --git a/media-sound/lastfmplayer/lastfmplayer-1.3.1.0.ebuild b/media-sound/lastfmplayer/lastfmplayer-1.3.1.0.ebuild deleted file mode 100644 index 4e55db8..0000000 --- a/media-sound/lastfmplayer/lastfmplayer-1.3.1.0.ebuild +++ /dev/null @@ -1,79 +0,0 @@ -# Copyright 1999-2007 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/lastfmplayer/lastfmplayer-1.3.1.0.ebuild,v 1.1 2007/07/27 20:06:20 peper Exp $ - -inherit eutils qt4 - -MY_P="${P/lastfmplayer/last.fm}" - -DESCRIPTION="The player allows you to listen to last.fm radio streams" -HOMEPAGE="http://www.last.fm/help/player" -SRC_URI="http://static.last.fm/client/Linux/${MY_P}.src.tar.bz2" -RESTRICT="mirror" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="~x86 ~ppc ~amd64" -IUSE="" - -S="${WORKDIR}/${MY_P}" - -DEPEND="$(qt4_min_version 4.2) - media-libs/alsa-lib" - -src_unpack() { - unpack ${A} - cd "${S}" - epatch ${FILESDIR}/qt4.patch -} - -src_compile() { - econf || die "configure failed" - emake qmake_all || die "emake qmake_all failed" - emake || die "emake failed" -} - -src_install() { - # Docs - dodoc ChangeLog README - - # The root at which the player, data, and cache - # are to be installed - local destination="/opt/lastfm" - cd bin - - # Make ${destination} writable by audio group - diropts -m0775 -g audio - dodir ${destination} - - # Install the player - cp -R * ${D}/${destination} - - # Make a folder such that album art cache works - diropts -m0775 -g audio - dodir ${destination}/cache - keepdir ${destination}/cache - - # Icon, menu, protcol - make_wrapper lastfm ./last.fm ${destination} ${destination} - newicon data/icons/as.png lastfm.png - make_desktop_entry lastfm "Last.fm Player" lastfm.png - - # make sure no hanging instance of lastfm is running - sed -i -e 's:exec:if ! ps aux | grep "^$USER.*last.fm.app" | grep Sl >/dev/null 2>\&1; then killall -u $USER last.fm.app >/dev/null 2>\&1; fi\nexec:' \ - ${D}/usr/bin/lastfm || die "sed failed" - - insinto /usr/share/services - doins ${FILESDIR}/lastfm.protocol -} - -pkg_postinst() { - elog "To use the Last.fm player with a mozilla based browser:" - elog " 1. Go to about:config in the browser" - elog " 2. Right-click on the page" - elog " 3. Select New and then String" - elog " 4. For the name: network.protocol-handler.app.lastfm" - elog " 5. For the value: /usr/bin/lastfm" - elog - elog "If you experience awkward fonts or widgets, try running qtconfig." -} -- 2.11.4.GIT