diff options
author | Serkan Kaba <serkan@gentoo.org> | 2009-03-26 17:49:56 +0000 |
---|---|---|
committer | Serkan Kaba <serkan@gentoo.org> | 2009-03-26 17:49:56 +0000 |
commit | 66cada227ad0bdd536afdf5ebce656a7d88c682f (patch) | |
tree | 85733035c203c6e3f9e94503fc588e5eb3cd6d69 /x11-plugins | |
parent | Fix quoting of pm_echovar (#263671) (diff) | |
download | gentoo-2-66cada227ad0bdd536afdf5ebce656a7d88c682f.tar.gz gentoo-2-66cada227ad0bdd536afdf5ebce656a7d88c682f.tar.bz2 gentoo-2-66cada227ad0bdd536afdf5ebce656a7d88c682f.zip |
Version bump wrt bug #263842. Thanks to Trustin Lee <trustin@gmail.com> for reporting.
(Portage version: 2.2_rc26/cvs/Linux x86_64)
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/pidgin-musictracker/ChangeLog | 9 | ||||
-rw-r--r-- | x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.16.ebuild | 29 |
2 files changed, 37 insertions, 1 deletions
diff --git a/x11-plugins/pidgin-musictracker/ChangeLog b/x11-plugins/pidgin-musictracker/ChangeLog index d70446642ca5..78913a622e63 100644 --- a/x11-plugins/pidgin-musictracker/ChangeLog +++ b/x11-plugins/pidgin-musictracker/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for x11-plugins/pidgin-musictracker # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-musictracker/ChangeLog,v 1.2 2009/03/02 21:33:24 serkan Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-musictracker/ChangeLog,v 1.3 2009/03/26 17:49:56 serkan Exp $ + +*pidgin-musictracker-0.4.16 (26 Mar 2009) + + 26 Mar 2009; Serkan Kaba <serkan@gentoo.org> + +pidgin-musictracker-0.4.16.ebuild: + Version bump wrt bug #263842. Thanks to Trustin Lee <trustin@gmail.com> + for reporting. 02 Mar 2009; Serkan Kaba <serkan@gentoo.org> pidgin-musictracker-0.4.14.ebuild: diff --git a/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.16.ebuild b/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.16.ebuild new file mode 100644 index 000000000000..8e06767cf457 --- /dev/null +++ b/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.16.ebuild @@ -0,0 +1,29 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-plugins/pidgin-musictracker/pidgin-musictracker-0.4.16.ebuild,v 1.1 2009/03/26 17:49:56 serkan Exp $ + +EAPI="2" + +DESCRIPTION="A Pidgin now playing plugin to publicise the songs you are listening to in your status message" +HOMEPAGE="http://code.google.com/p/pidgin-musictracker/" +SRC_URI="http://pidgin-musictracker.googlecode.com/files/${P}.tar.bz2" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug" + +DEPEND=">=net-im/pidgin-2.0.0 + >=dev-libs/dbus-glib-0.73 + dev-libs/libpcre + >=sys-devel/gettext-0.17" +RDEPEND="${DEPEND}" + +src_configure() { + econf $(use_enable debug) --disable-werror || die "econf failure" +} + +src_install() { + emake install DESTDIR="${D}" || die "make install failure" + dodoc AUTHORS ChangeLog INSTALL README THANKS || die "dodoc failed" +} |