summaryrefslogtreecommitdiff
blob: 5379d7601ae8ecb4114f209a513ab82a6d34998f (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-plugins/bmp-docklet/bmp-docklet-1.2.ebuild,v 1.3 2005/05/14 14:15:54 luckyduck Exp $

DESCRIPTION="BMP plugin displays a icon in your systemtray"
SRC_URI="http://mark.xnull.de/${PN}/${P}.tar.bz2"
HOMEPAGE="http://mark.xnull.de/bmp-docklet.php"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~amd64"
IUSE="nls"

RDEPEND=">=media-sound/beep-media-player-0.9.7-r5"
DEPEND="${RDEPEND}
	nls? ( dev-util/intltool )"

src_compile() {
	econf $(use_enable nls) || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	make DESTDIR="${D}" install || die "make install failed"
	dodoc AUTHORS NEWS README TODO
}