diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2011-12-23 06:48:36 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2011-12-23 06:48:36 +0000 |
commit | 2cd0a0626f3a6e3debb05283b6a34cae8c5c3412 (patch) | |
tree | 4665ed2dcfd01e486b9e6b519d3c969de840e4fa | |
parent | Add upstream bug url for last change. (diff) | |
download | gentoo-2-2cd0a0626f3a6e3debb05283b6a34cae8c5c3412.tar.gz gentoo-2-2cd0a0626f3a6e3debb05283b6a34cae8c5c3412.tar.bz2 gentoo-2-2cd0a0626f3a6e3debb05283b6a34cae8c5c3412.zip |
Version bump.
(Portage version: 2.2.0_alpha81/cvs/Linux x86_64)
-rw-r--r-- | media-sound/pragha/ChangeLog | 7 | ||||
-rw-r--r-- | media-sound/pragha/pragha-1.0_rc3.ebuild | 59 |
2 files changed, 65 insertions, 1 deletions
diff --git a/media-sound/pragha/ChangeLog b/media-sound/pragha/ChangeLog index bfe7424458bc..2fb4be3c5f40 100644 --- a/media-sound/pragha/ChangeLog +++ b/media-sound/pragha/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for media-sound/pragha # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/media-sound/pragha/ChangeLog,v 1.2 2011/11/18 23:45:07 ssuominen Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-sound/pragha/ChangeLog,v 1.3 2011/12/23 06:48:36 ssuominen Exp $ + +*pragha-1.0_rc3 (23 Dec 2011) + + 23 Dec 2011; Samuli Suominen <ssuominen@gentoo.org> +pragha-1.0_rc3.ebuild: + Version bump. *pragha-1.0_rc2 (18 Nov 2011) diff --git a/media-sound/pragha/pragha-1.0_rc3.ebuild b/media-sound/pragha/pragha-1.0_rc3.ebuild new file mode 100644 index 000000000000..5c332615d1f5 --- /dev/null +++ b/media-sound/pragha/pragha-1.0_rc3.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2011 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/media-sound/pragha/pragha-1.0_rc3.ebuild,v 1.1 2011/12/23 06:48:36 ssuominen Exp $ + +EAPI=4 +inherit xfconf + +MY_P=${PN}-${PV/_/.} + +DESCRIPTION="A lightweight music player for the Xfce desktop environment" +HOMEPAGE="http://pragha.wikispaces.com/" +SRC_URI="http://dissonance.googlecode.com/files/${MY_P}.tar.bz2" + +LICENSE="GPL-3" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +glyr lastfm minimal" + +COMMON_DEPEND="dev-db/sqlite:3 + >=dev-libs/dbus-glib-0.92 + >=dev-libs/glib-2.16.3 + dev-libs/keybinder + >=dev-libs/libcdio-0.78 + media-libs/gst-plugins-base:0.10 + >=media-libs/libcddb-1.2.1 + >=media-libs/taglib-1.7 + >=net-misc/curl-7.18 + x11-libs/libX11 + >=x11-libs/libnotify-0.7 + glyr? ( media-libs/glyr ) + lastfm? ( media-libs/libclastfm ) + !minimal? ( >=xfce-base/exo-0.6.0 )" +RDEPEND="${COMMON_DEPEND} + media-plugins/gst-plugins-meta:0.10" +DEPEND="${COMMON_DEPEND} + dev-util/intltool + dev-util/pkgconfig + sys-devel/gettext" + +S=${WORKDIR}/${MY_P} + +pkg_setup() { + XFCONF=( + $(use_enable debug) + $(use_enable lastfm libclastfm) + $(use_enable glyr libglyr) + $(use_enable !minimal exo-1) + ) +} + +src_prepare() { + sed -i -e '/CFLAGS/s:-O3 -Werror::' configure || die + sed -i -e '/Catego/s:Player:&;:' data/${PN}.desktop || die + xfconf_src_prepare +} + +src_install() { + xfconf_src_install docdir=/usr/share/doc/${PF} +} |