forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gtkevemon-9999.ebuild
57 lines (48 loc) · 1.03 KB
/
gtkevemon-9999.ebuild
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils
IUSE=""
if [[ ${PV} == *9999* ]]; then
inherit mercurial
EHG_REPO_URI="https://bitbucket.org/BattleClinic/${PN}"
KEYWORDS=""
SRC_URI=""
MY_S="${WORKDIR}/${P}/gtkevemon"
else
KEYWORDS="~amd64 ~x86"
SRC_URI="http://gtkevemon.battleclinic.com/releases/${P}-source.tar.gz"
fi
DESCRIPTION="A standalone skill monitoring application for EVE Online"
HOMEPAGE="http://gtkevemon.battleclinic.com"
LICENSE="GPL-3"
SLOT="0"
RDEPEND="
dev-cpp/gtkmm:2.4
dev-libs/libxml2
"
DEPEND="${DEPEND}
virtual/pkgconfig
"
src_unpack()
{
if [[ ${PV} == *9999* ]]; then
mercurial_src_unpack
S=${MY_S}
else
default
fi
}
src_prepare() {
sed -e 's:Categories=Game;$:Categories=Game;RolePlaying;GTK;:' \
-i icon/${PN}.desktop || die "sed failed"
}
src_install() {
# fixed QA notice
sed -i "/^Encoding/d" icon/${PN}.desktop
dobin src/${PN}
doicon icon/${PN}.svg
domenu icon/${PN}.desktop
dodoc CHANGES README TODO
}