public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: qmpdclient-1.1.1.ebuild ChangeLog
@ 2009-06-26 10:09 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2009-06-26 10:09 UTC (permalink / raw
  To: gentoo-commits

hwoarang    09/06/26 10:09:53

  Modified:             ChangeLog
  Added:                qmpdclient-1.1.1.ebuild
  Log:
  Version bump, ebuild clean up
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.51                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.51&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.51&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.50&r2=1.51

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -r1.50 -r1.51
--- ChangeLog	9 Jun 2009 19:10:38 -0000	1.50
+++ ChangeLog	26 Jun 2009 10:09:53 -0000	1.51
@@ -1,6 +1,12 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.50 2009/06/09 19:10:38 fauli Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.51 2009/06/26 10:09:53 hwoarang Exp $
+
+*qmpdclient-1.1.1 (26 Jun 2009)
+
+  26 Jun 2009; Markos Chandras <hwoarang@gentoo.org>
+  +qmpdclient-1.1.1.ebuild:
+  Version bump, ebuild clean up
 
   09 Jun 2009; Christian Faulhammer <fauli@gentoo.org>
   qmpdclient-1.1.0-r3.ebuild:



1.1                  media-sound/qmpdclient/qmpdclient-1.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?rev=1.1&content-type=text/plain

Index: qmpdclient-1.1.1.ebuild
===================================================================
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v 1.1 2009/06/26 10:09:53 hwoarang Exp $

EAPI="2"

inherit qt4


DESCRIPTION="QMPDClient with NBL additions, such as lyrics' display"
HOMEPAGE="http://bitcheese.net/wiki/QMPDClient"
SRC_URI="mirror://gentoo/${P}.tar.gz
	http://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
IUSE="debug dbus"

DEPEND="x11-libs/qt-gui:4[dbus?,debug?]"
RDEPEND="${DEPEND}"

LANGSLONG="cs_CZ de_DE fr_FR it_IT nl_NL nn_NO no_NO ru_RU sv_SE tr_TR uk_UA"
LANGS="zh_CN zh_TW pt_BR "

for X in ${LANGSLONG}; do
	IUSE="${IUSE} linguas_${X%_*}"
done

for X in ${LANGS};do
	IUSE="${IUSE} linguas_${X}"
done

src_prepare() {
	# Fix the install path
	sed -i -e "s:PREFIX = /usr/local:PREFIX = /usr:" qmpdclient.pro \
		|| die "sed failed (install path)"

	# nostrip fix
	sed -i -e "s:CONFIG += :CONFIG += nostrip :" qmpdclient.pro \
		|| die "sed failed (nostrip)"

	sed -i -e "s:+= -O2 -g0 -s:+= -O2 -g0:" qmpdclient.pro \
		|| die "sed failed (nostrip)"

	# fix installation folder name
	sed -i "s/share\/QMPDClient/share\/qmpdclient/" src/config.cpp \
		|| die "failed to fix installation directory"

	# check dbus
	if ! use dbus; then
		sed -i -e "s/message(DBus notifier:\ enabled)/message(DBus notifier:\ disabled)/" \
			-e "s/CONFIG\ +=\ nostrip\ qdbus//" \
			-e "s/SOURCES\ +=\ src\/notifications_dbus.cpp/SOURCES\ +=\ src\/notifications_nodbus.cpp/" \
			${PN}.pro || die "disabling dbus failed"
	fi
}

src_configure() {
	eqmake4 qmpdclient.pro
}

src_compile() {
	emake || die "emake failed"
	# generate translations
	emake translate || die "failed to generate translations"
}

src_install() {
	emake install INSTALL_ROOT="${D}" || die "emake install failed"
	dodoc README AUTHORS THANKSTO Changelog || die "Installing docs failed"
	for res in 16 22 64 ; do
		insinto /usr/share/icons/hicolor/${res}x${res}/apps/
		newins icons/qmpdclient${res}.png ${PN}.png || die "Installing icons failed"
	done

	make_desktop_entry qmpdclient "QMPDClient" ${PN} \
		"Qt;AudioVideo;Audio;" || die "Installing desktop entry failed"

	#install translations
	insinto /usr/share/${PN}/translations/
	local LANG=
	for LANG in ${LINGUAS};do
	    for X in ${LANGS};do
			if [[ ${LANG} == ${X%_*} ]];then
		    	doins -r lang/${X}.qm || die "failed to install translations"
			fi
	    done
		for X in ${LANGSLONG};do
			if [[ ${LANG} == ${X} ]]; then
				doins -r lang/${X}.qm || die "failed to install translations"
			fi
		done
	done
}






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: qmpdclient-1.1.1.ebuild ChangeLog
@ 2009-06-26 10:16 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 4+ messages in thread
From: Markos Chandras (hwoarang) @ 2009-06-26 10:16 UTC (permalink / raw
  To: gentoo-commits

hwoarang    09/06/26 10:16:11

  Modified:             qmpdclient-1.1.1.ebuild ChangeLog
  Log:
  Remove make_desktop_entry function
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  media-sound/qmpdclient/qmpdclient-1.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?r1=1.1&r2=1.2

Index: qmpdclient-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- qmpdclient-1.1.1.ebuild	26 Jun 2009 10:09:53 -0000	1.1
+++ qmpdclient-1.1.1.ebuild	26 Jun 2009 10:16:11 -0000	1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v 1.1 2009/06/26 10:09:53 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v 1.2 2009/06/26 10:16:11 hwoarang Exp $
 
 EAPI="2"
 
@@ -74,9 +74,6 @@
 		newins icons/qmpdclient${res}.png ${PN}.png || die "Installing icons failed"
 	done
 
-	make_desktop_entry qmpdclient "QMPDClient" ${PN} \
-		"Qt;AudioVideo;Audio;" || die "Installing desktop entry failed"
-
 	#install translations
 	insinto /usr/share/${PN}/translations/
 	local LANG=



1.52                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.52&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.52&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.51&r2=1.52

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.51
retrieving revision 1.52
diff -u -r1.51 -r1.52
--- ChangeLog	26 Jun 2009 10:09:53 -0000	1.51
+++ ChangeLog	26 Jun 2009 10:16:11 -0000	1.52
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.51 2009/06/26 10:09:53 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.52 2009/06/26 10:16:11 hwoarang Exp $
+
+  26 Jun 2009; Markos Chandras <hwoarang@gentoo.org>
+  qmpdclient-1.1.1.ebuild:
+  Remove make_desktop_entry since upstream fixed provides a desktop file
 
 *qmpdclient-1.1.1 (26 Jun 2009)
 






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: qmpdclient-1.1.1.ebuild ChangeLog
@ 2009-10-05 21:52 Markus Meier (maekke)
  0 siblings, 0 replies; 4+ messages in thread
From: Markus Meier (maekke) @ 2009-10-05 21:52 UTC (permalink / raw
  To: gentoo-commits

maekke      09/10/05 21:52:50

  Modified:             qmpdclient-1.1.1.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #287541
  (Portage version: 2.2_rc43/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  media-sound/qmpdclient/qmpdclient-1.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?r1=1.3&r2=1.4

Index: qmpdclient-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- qmpdclient-1.1.1.ebuild	27 Jun 2009 08:05:13 -0000	1.3
+++ qmpdclient-1.1.1.ebuild	5 Oct 2009 21:52:49 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v 1.3 2009/06/27 08:05:13 mr_bones_ Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v 1.4 2009/10/05 21:52:49 maekke Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~sparc x86"
 IUSE="debug dbus"
 
 DEPEND="x11-libs/qt-gui:4[dbus?,debug?]"



1.53                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.53&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.53&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.52&r2=1.53

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.52
retrieving revision 1.53
diff -u -r1.52 -r1.53
--- ChangeLog	26 Jun 2009 10:16:11 -0000	1.52
+++ ChangeLog	5 Oct 2009 21:52:49 -0000	1.53
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.52 2009/06/26 10:16:11 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.53 2009/10/05 21:52:49 maekke Exp $
+
+  05 Oct 2009; Markus Meier <maekke@gentoo.org> qmpdclient-1.1.1.ebuild:
+  amd64/x86 stable, bug #287541
 
   26 Jun 2009; Markos Chandras <hwoarang@gentoo.org>
   qmpdclient-1.1.1.ebuild:






^ permalink raw reply	[flat|nested] 4+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: qmpdclient-1.1.1.ebuild ChangeLog
@ 2009-10-07 18:37 Gysbert Wassenaar (nixnut)
  0 siblings, 0 replies; 4+ messages in thread
From: Gysbert Wassenaar (nixnut) @ 2009-10-07 18:37 UTC (permalink / raw
  To: gentoo-commits

nixnut      09/10/07 18:37:53

  Modified:             qmpdclient-1.1.1.ebuild ChangeLog
  Log:
  ppc stable #287541
  (Portage version: 2.1.6.13/cvs/Linux ppc)

Revision  Changes    Path
1.5                  media-sound/qmpdclient/qmpdclient-1.1.1.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild?r1=1.4&r2=1.5

Index: qmpdclient-1.1.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qmpdclient-1.1.1.ebuild	5 Oct 2009 21:52:49 -0000	1.4
+++ qmpdclient-1.1.1.ebuild	7 Oct 2009 18:37:53 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v 1.4 2009/10/05 21:52:49 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.1.1.ebuild,v 1.5 2009/10/07 18:37:53 nixnut Exp $
 
 EAPI="2"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ppc ~sparc x86"
+KEYWORDS="amd64 ~hppa ppc ~sparc x86"
 IUSE="debug dbus"
 
 DEPEND="x11-libs/qt-gui:4[dbus?,debug?]"



1.54                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.54&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.54&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog	5 Oct 2009 21:52:49 -0000	1.53
+++ ChangeLog	7 Oct 2009 18:37:53 -0000	1.54
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.53 2009/10/05 21:52:49 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.54 2009/10/07 18:37:53 nixnut Exp $
+
+  07 Oct 2009; nixnut <nixnut@gentoo.org> qmpdclient-1.1.1.ebuild:
+  ppc stable #287541
 
   05 Oct 2009; Markus Meier <maekke@gentoo.org> qmpdclient-1.1.1.ebuild:
   amd64/x86 stable, bug #287541






^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-10-07 18:37 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-06-26 10:16 [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: qmpdclient-1.1.1.ebuild ChangeLog Markos Chandras (hwoarang)
  -- strict thread matches above, loose matches on Subject: below --
2009-10-07 18:37 Gysbert Wassenaar (nixnut)
2009-10-05 21:52 Markus Meier (maekke)
2009-06-26 10:09 Markos Chandras (hwoarang)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox