Lines 1-12
Link Here
|
1 |
# Copyright 1999-2006 Gentoo Foundation |
1 |
# Copyright 1999-2009 Gentoo Foundation |
2 |
# Distributed under the terms of the GNU General Public License v2 |
2 |
# Distributed under the terms of the GNU General Public License v2 |
3 |
# $Header: $ |
3 |
# $Header: $ |
4 |
|
4 |
|
5 |
DESCRIPTION="A Pidgin plugin to advertise the currently playing song on your |
5 |
DESCRIPTION="A Pidgin now playing plugin to publicise the songs you are listening to in your status message" |
6 |
favourite music player in your status message." |
|
|
7 |
HOMEPAGE="http://code.google.com/p/pidgin-musictracker/" |
6 |
HOMEPAGE="http://code.google.com/p/pidgin-musictracker/" |
8 |
SRC_URI="http://pidgin-musictracker.googlecode.com/files/${P}.tar.bz2" |
7 |
SRC_URI="http://pidgin-musictracker.googlecode.com/files/${P}.tar.bz2" |
9 |
RESTRICT="mirror" |
|
|
10 |
|
8 |
|
11 |
LICENSE="GPL-2" |
9 |
LICENSE="GPL-2" |
12 |
SLOT="0" |
10 |
SLOT="0" |
Lines 14-30
Link Here
|
14 |
IUSE="debug" |
12 |
IUSE="debug" |
15 |
|
13 |
|
16 |
DEPEND=">=net-im/pidgin-2.0.0 |
14 |
DEPEND=">=net-im/pidgin-2.0.0 |
17 |
>=dev-libs/dbus-glib-0.73 |
15 |
>=dev-libs/dbus-glib-0.73 |
18 |
dev-libs/libpcre |
16 |
dev-libs/libpcre |
19 |
>=sys-devel/gettext-0.17" |
17 |
>=sys-devel/gettext-0.17" |
20 |
|
18 |
|
21 |
src_compile() { |
19 |
src_compile() { |
22 |
econf \ |
20 |
econf $(use_enable debug) || die "econf failure" |
23 |
$(use_enable debug) || die "econf failure" |
21 |
emake || die "emake failed" |
24 |
emake || die "emake failure" |
|
|
25 |
} |
22 |
} |
26 |
|
23 |
|
27 |
src_install() { |
24 |
src_install() { |
28 |
make install DESTDIR=${D} || die "make install failure" |
25 |
emake install DESTDIR="${D}" || die "make install failure" |
29 |
dodoc AUTHORS COPYING ChangeLog INSTALL README THANKS |
26 |
dodoc AUTHORS ChangeLog INSTALL README THANKS || die dodoc failed |
30 |
} |
27 |
} |