blob: bc4c42923ae37e62fdc9e800b5f26a849cb6d4d0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# 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.14.ebuild,v 1.1 2009/02/10 17:59:18 serkan Exp $
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="~x86 ~amd64"
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_compile() {
econf $(use_enable debug) || die "econf failure"
emake || die "emake failed"
}
src_install() {
emake install DESTDIR="${D}" || die "make install failure"
dodoc AUTHORS ChangeLog INSTALL README THANKS || die "dodoc failed"
}
|