summaryrefslogtreecommitdiff
blob: 9d1fd2396260b773d3dd78c664a392f148a1fe38 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=4

inherit versionator

MY_P="${PN}-${PV/_p/-r}"
C_PV="$(get_version_component_range 1-2)"

DESCRIPTION="Static/dynamic menu-generator for Openbox"
HOMEPAGE="https://launchpad.net/obmenugen"
SRC_URI="http://launchpad.net/${PN}/${C_PV}/${PV/_p*/}/+download/${MY_P}.tar.bz2"

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

DEPEND="app-text/txt2tags
	dev-lang/dmd:1"
RDEPEND="x11-wm/openbox"

S="${WORKDIR}/${MY_P}"

src_compile() {
	# build obmenugen with dmd:1
	if [ -e "${EPREFIX}/usr/bin/dmd1" ]; then
		dmd1 src/*.d -O -release -inline -od"${T}" -ofobmenugen \
		|| die "build failed!"
	else
		# fallback if you don't use dmd from sunrise-overlay
		dmd src/*.d -O -release -inline -od"${T}" -ofobmenugen \
		|| die "build failed! for 'd-overlay' use eselect to switch to dmd:1"
	fi

	txt2tags -i html/src/obmenugen-html.t2t -o obmenugen.html \
	|| die "converting failed!"
}

src_install() {
	dobin obmenugen
	insinto /usr/share/obmenugen/
	doins -r translations
	dodoc README.txt
	dohtml obmenugen.html
}