aboutsummaryrefslogtreecommitdiffstats
path: root/recipes/gpe-helpviewer/gpe-helpviewer_1.0.bb
blob: e279e924e2341cfc4f1cf20c5d35ad4e79686b55 (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
49
50
51
52
53
54
55
56
57
58
59
DESCRIPTION = "A helpviewer based on gtk+webcore"
LICENSE = "GPL"
DEPENDS = "osb-nrcit"
RDEPENDS_${PN} = "gpe-helpviewer-doc"
PR = "r3"

SRC_URI = "http://stag.mind.be/gpe-helpviewer-${PV}.tar.bz2"

S = "${WORKDIR}/gpe-helpviewer"

inherit autotools

do_install() {
		install -d ${D}${docdir}/gpe
		install -m 0644 ${S}/gpe-helpviewer.html  ${D}${docdir}/gpe/
		install -d ${D}${datadir}/applications
		install -m 0644 ${S}/gpe-helpviewer.desktop ${D}${datadir}/applications/gpe-helpviewer.desktop
		install -d ${D}${datadir}/pixmaps
		install -m 0644 ${S}/gpe-help.png ${D}${datadir}/pixmaps/gpe-help.png
		autotools_do_install
}

pkg_postinst_${PN}-doc () {
        #!/bin/sh
	if [ "x$D" != "x" ]; then
        if [ -e ${sysconfdir}/gpe/gpe-help.conf ]; then
                echo gpe-helpviewer = ${docdir}/gpe/gpe-helpviewer.html >> ${sysconfdir}/gpe/gpe-help.conf
        else
                 echo [Help] >> ${sysconfdir}/gpe/gpe-help.conf
                 echo gpe-helpviewer = ${docdir}/gpe/gpe-helpviewer.html >> ${sysconfdir}/gpe/gpe-help.conf
        fi
        if [ -x ${bindir}/gpe-helpindex ]; then
                echo generating help-index
                gpe-helpindex
        else
                echo not generating index for gpe-helpviewer
        fi
	fi
}

pkg_postrm_${PN}-doc () {
        #!/bin/sh
	if [ "x$D" != "x" ]; then
        if [ -e ${sysconfdir}/gpe/gpe-help.conf ]; then
                sed '/^\<gpe-helpviewer\>/d' ${sysconfdir}/gpe/gpe-help.conf > /tmp/gpe-help.conf
                mv /tmp/gpe-help.conf ${sysconfdir}/gpe/gpe-help.conf
        fi
        if [ -x ${bindir}/gpe-helpindex ]; then
                echo generating help-index
                gpe-helpindex
        else
                echo not generating index for gpe-helpviewer
        fi
	fi
}


SRC_URI[md5sum] = "2d2c0ea709fdbc251e5d2fb9943d5409"
SRC_URI[sha256sum] = "3b3dd5fe64b24536a6f089bc03c7a4dd05792dbd25005b160e93f15522d8c971"