| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/x11-misc/stalonetray/stalonetray-0.8.1.ebuild,v 1.2 2012/06/22 14:30:38 ago Exp $
|
| 4 |
|
| 5 |
EAPI=4
|
| 6 |
|
| 7 |
DESCRIPTION="System tray utility including support for KDE system tray icons"
|
| 8 |
HOMEPAGE="http://stalonetray.sourceforge.net/"
|
| 9 |
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
|
| 10 |
|
| 11 |
LICENSE="GPL-2"
|
| 12 |
SLOT="0"
|
| 13 |
KEYWORDS="amd64 x86"
|
| 14 |
IUSE="debug +graceful-exit kde"
|
| 15 |
|
| 16 |
RDEPEND="x11-libs/libX11
|
| 17 |
x11-libs/libICE
|
| 18 |
x11-libs/libSM
|
| 19 |
x11-libs/libXpm"
|
| 20 |
DEPEND="${RDEPEND}
|
| 21 |
x11-proto/xproto"
|
| 22 |
|
| 23 |
src_configure() {
|
| 24 |
econf $(use_enable debug) \
|
| 25 |
$(use_enable graceful-exit) \
|
| 26 |
$(use_enable kde native-kde)
|
| 27 |
}
|
| 28 |
|
| 29 |
src_install() {
|
| 30 |
emake DESTDIR="${D}" install
|
| 31 |
|
| 32 |
dodoc AUTHORS ChangeLog NEWS README stalonetrayrc.sample TODO
|
| 33 |
dohtml stalonetray.html
|
| 34 |
}
|