blob: 49005c5939a3d32fbd6597cb3328a8b0651cb671 (
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
29
30
31
32
33
|
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/ptbatterysystemtray/ptbatterysystemtray-1.0.0_rc2.ebuild,v 1.4 2015/03/29 05:34:10 yngwin Exp $
EAPI=5
inherit qt4-r2
DESCRIPTION="A simple battery monitor in the system tray"
HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage"
SRC_URI="mirror://gentoo/${P}.tar.gz"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND="
dev-qt/qtcore:4
dev-qt/qtdbus:4
dev-qt/qtgui:4
"
RDEPEND="${DEPEND}"
DOCS="AUTHORS ChangeLog README"
src_unpack() {
default
mv ${PN}-${PN} "${S}" || die
}
src_configure() {
eqmake4 ${PN}.pro INSTALL_PREFIX=/usr
}
|