+++ /dev/null
-Index: lastfm-1.5.4.27091+dfsg/definitions.pro.inc
-===================================================================
---- lastfm-1.5.4.27091+dfsg.orig/definitions.pro.inc
-+++ lastfm-1.5.4.27091+dfsg/definitions.pro.inc
-@@ -10,7 +10,7 @@ CONFIG( service ) {
- CONFIG += plugin
-
- win32: DESTDIR = $$BIN_DIR
-- else: DESTDIR = $$BIN_DIR/services
-+ else: DESTDIR = $$BIN_DIR/lastfm_services
-
- TARGET = srv_$$TARGET
- }
-@@ -19,7 +19,7 @@ CONFIG( extension ) {
- CONFIG += plugin
-
- win32: DESTDIR = $$BIN_DIR
-- else: DESTDIR = $$BIN_DIR/extensions
-+ else: DESTDIR = $$BIN_DIR/lastfm_services/extensions
-
- TARGET = ext_$$TARGET
- }
-Index: lastfm-1.5.4.27091+dfsg/src/libMoose/MooseCommon.cpp
-===================================================================
---- lastfm-1.5.4.27091+dfsg.orig/src/libMoose/MooseCommon.cpp
-+++ lastfm-1.5.4.27091+dfsg/src/libMoose/MooseCommon.cpp
-@@ -112,7 +112,7 @@ servicePath( QString name )
- // Hack to get it working with VS2005
- dirPath = qApp->applicationDirPath();
- #else
-- dirPath = qApp->applicationDirPath() + "/services";
-+ dirPath = "/usr/lib/lastfm_services";
- #endif
-
- #ifndef QT_NO_DEBUG
-@@ -358,7 +358,7 @@ extensionPaths()
- // Hack to get it working with VS2005
- QString path = qApp->applicationDirPath();
- #else
-- QString path = qApp->applicationDirPath() + "/extensions";
-+ QString path = "/usr/lib/lastfm_services/extensions";
- #endif
-
- #ifndef QT_NO_DEBUG
+++ /dev/null
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils multilib readme.gentoo toolchain-funcs qmake-utils qt4-r2
-
-MY_P="${P/lastfmplayer/lastfm}+dfsg"
-
-DESCRIPTION="A player for last.fm radio streams"
-HOMEPAGE="http://www.last.fm/help/player
- http://www.mehercule.net/staticpages/index.php/lastfm"
-SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/lastfm-${PV}+dfsg.tar.gz
- https://dev.gentoo.org/~hwoarang/distfiles/lastfm_${PV}+dfsg-2.debian.tar.gz
- dbus? ( http://glue.umd.edu/~rossatok/dbusextension-2.0.tar.bz2 )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc x86"
-IUSE="dbus ipod"
-
-RDEPEND="dev-qt/qtgui:4
- dev-qt/qtsql:4
- media-libs/libsamplerate
- sci-libs/fftw
- media-libs/libmad
- ipod? ( >=media-libs/libgpod-0.5.2 )
- media-libs/alsa-lib"
-DEPEND="${RDEPEND}
- app-arch/sharutils"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
- DISABLE_AUTOFORMATTING="yes"
- DOC_CONTENTS="To use the Last.fm player with a mozilla based browser:
-1. Install gnome-base/gconf
-2. gconftool-2 -t string -s /desktop/gnome/url-handlers/lastfm/command \"/usr/bin/lastfm %s\"
-3. gconftool-2 -s /desktop/gnome/url-handlers/lastfm/needs_terminal false -t bool
-4. gconftool-2 -t bool -s /desktop/gnome/url-handlers/lastfm/enabled true
-
-If you experience awkward fonts or widgets, try running qtconfig."
-
- qt4-r2_src_prepare
- # Use a different extensions path
- epatch "${FILESDIR}"/${PN}-extensions-path.patch
- einfo "Applying Debian patchset"
- sed -i "/^tray-icon-size.diff/d" "${WORKDIR}"/debian/patches/series
- cd "${S}"
- for i in $( < "${WORKDIR}"/debian/patches/series); do
- epatch "${WORKDIR}"/debian/patches/$i
- done
- if ! use ipod ; then
- sed -i '/src\/mediadevices\/ipod/d' LastFM.pro || die "sed failed"
- fi
- #fix plugin search path for multilib support
- sed -i -e "s:/usr/lib/:/usr/$(get_libdir)/:g" \
- "${S}"/src/libMoose/MooseCommon.cpp
- if use dbus; then
- mv "${WORKDIR}"/dbus "${S}"/src/dbus
- sed -i -e "/include/s:../definitions.pro.in:definitions.pro.in:" \
- -e "/TARGET/s:dbusextension:LastFmDbusExtension:" \
- "${S}"/src/dbus/dbusextension.pro
- fi
-
- # only glib.h can be included directly in >glib-2.32
- epatch "${FILESDIR}"/${P}-glib.h.patch
- # Gcc 4.7 definitions. Bug #423221
- epatch "${FILESDIR}"/${P}-gcc47.patch
-}
-
-src_configure() {
- if use dbus; then
- pushd "${S}"/src/dbus
- eqmake4 dbusextension.pro
- popd >> /dev/null
- fi
- qt4-r2_src_configure
-}
-
-src_compile() {
- emake CC="$(tc-getCC)" CXX="$(tc-getCXX)" || die "emake failed"
- if use dbus; then
- einfo "Building DBUS plugin"
- emake -C "${S}"/src/dbus || die "failed to build dbus extension"
- fi
- cd i18n; "$(qt4_get_bindir)"/lrelease *.ts
-}
-
-src_install() {
- cd "${WORKDIR}"
- # Docs
- dodoc "${S}"/ChangeLog.txt "${S}"/README debian/README.source
- doman debian/lastfm.1
-
- # Copied from debian/rules
- insinto /usr/share
- doins -r debian/package-files/share/icons || die "failed to install icons"
- insinto /usr/share/lastfm/icons
- doins "${S}"/bin/data/icons/*.png \
- || die "failed to install application icons"
- insinto /usr/share/lastfm
- doins "${S}"/bin/data/*.png || die "failed to install icons"
- dodir /usr/$(get_libdir)/lastfm_services/
- insinto /usr/$(get_libdir)/lastfm_services/
- insopts -m0755
- doins -r "${S}"/bin/lastfm_services/*.so || die "failed to install plugins"
- if use dbus; then
- insinto /usr/$(get_libdir)/lastfm_services/extensions/
- insopts -m0755
- doins "${S}"/bin/lastfm_services/extensions/*.so
- fi
- insinto /usr/$(get_libdir)
- insopts -m0755
- doins "${S}"/bin/libLastFmTools.so.1* || die "failed to install library"
- doins "${S}"/bin/libMoose.so.1* || die "failed to install library"
- #fix symlinks
- cd "${D}"/usr/$(get_libdir)/
- ln -sfn libLastFmTools.so.1.0.0 libLastFmTools.so.1
- ln -sfn libLastFmTools.so.1.0.0 libLastFmTools.so.1.0
- ln -sfn libMoose.so.1.0.0 libMoose.so.1
- ln -sfn libMoose.so.1.0.0 libMoose.so.1.0
- cd "${WORKDIR}"
- newbin "${S}"/bin/last.fm lastfm
- insinto /usr/share/lastfm/i18n
- doins "${S}"/i18n/*.qm || die "failed to install translations"
- fperms 755 /usr/bin/lastfm
- rm -f "${D}"/usr/share/lastfm/icons/{*profile24,systray_mac}.png
- # create desktop entry
- doicon "${WORKDIR}"/debian/package-files/share/icons/hicolor/48x48/apps/lastfm.png
- # Allow arguments when launching application. Bug #395277
- make_desktop_entry lastfm "Last.fm Player" lastfm
- sed -i -e "/^Exec/s:lastfm:& %U:" \
- "${D}"/usr/share/applications/lastfm-${PN}.desktop || die
-
- readme.gentoo_create_doc
-}