diff options
author | Sergey Lapin <slapinid@gmail.com> | 2008-05-17 22:49:19 +0000 |
---|---|---|
committer | Rolf Leggewie <oe-devel@rolf.leggewie.biz> | 2008-05-17 22:49:19 +0000 |
commit | fd9c8887b6481d7ec02e96f2b370555f2551bcb0 (patch) | |
tree | 9c641592f732c8cc1bc0477ebdde01ced80c5232 /packages/gpe-helpviewer | |
parent | 1cc77842b921d55096211543c91b91ecca25ad81 (diff) |
gpe-helpviewer: replaced direct directory names use with variables. Closes 2451.
* commit from Laibsch.
Diffstat (limited to 'packages/gpe-helpviewer')
-rw-r--r-- | packages/gpe-helpviewer/gpe-helpviewer_1.0.bb | 33 |
1 files changed, 15 insertions, 18 deletions
diff --git a/packages/gpe-helpviewer/gpe-helpviewer_1.0.bb b/packages/gpe-helpviewer/gpe-helpviewer_1.0.bb index eb9c9ba910..dcd6486fab 100644 --- a/packages/gpe-helpviewer/gpe-helpviewer_1.0.bb +++ b/packages/gpe-helpviewer/gpe-helpviewer_1.0.bb @@ -1,13 +1,10 @@ -PR = "r2" - DESCRIPTION = "A helpviewer based on gtk+webcore" LICENSE = "GPL" - -SRC_URI = "http://stag.mind.be/gpe-helpviewer-${PV}.tar.bz2" - DEPENDS = "osb-nrcit" RDEPENDS = "gpe-helpviewer-doc" +PR = "r2" +SRC_URI = "http://stag.mind.be/gpe-helpviewer-${PV}.tar.bz2" S = "${WORKDIR}/gpe-helpviewer" @@ -16,23 +13,23 @@ inherit autotools do_install() { install -d ${D}${docdir}/gpe install -m 0644 ${S}/gpe-helpviewer.html ${D}${docdir}/gpe/ - install -d ${D}/usr/share/applications - install -m 0644 ${S}/gpe-helpviewer.desktop ${D}/usr/share/applications/gpe-helpviewer.desktop - install -d ${D}/usr/share/pixmaps - install -m 0644 ${S}/gpe-help.png ${D}/usr/share/pixmaps/gpe-help.png + 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 /etc/gpe/gpe-help.conf ]; then - echo gpe-helpviewer = /usr/share/doc/gpe/gpe-helpviewer.html >> /etc/gpe/gpe-help.conf + if [ -e ${sysconfdir}/gpe/gpe-help.conf ]; then + echo gpe-helpviewer = ${docdir}/gpe/gpe-helpviewer.html >> ${sysconfdir}/gpe/gpe-help.conf else - echo [Help] >> /etc/gpe/gpe-help.conf - echo gpe-helpviewer = /usr/share/doc/gpe/gpe-helpviewer.html >> /etc/gpe/gpe-help.conf + echo [Help] >> ${sysconfdir}/gpe/gpe-help.conf + echo gpe-helpviewer = ${docdir}/gpe/gpe-helpviewer.html >> ${sysconfdir}/gpe/gpe-help.conf fi - if [ -x /usr/bin/gpe-helpindex ]; then + if [ -x ${bindir}/gpe-helpindex ]; then echo generating help-index gpe-helpindex else @@ -44,11 +41,11 @@ pkg_postinst_${PN}-doc () { pkg_postrm_${PN}-doc () { #!/bin/sh if [ "x$D" != "x" ]; then - if [ -e /etc/gpe/gpe-help.conf ]; then - sed '/^\<gpe-helpviewer\>/d' /etc/gpe/gpe-help.conf > /tmp/gpe-help.conf - mv /tmp/gpe-help.conf /etc/gpe/gpe-help.conf + 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 /usr/bin/gpe-helpindex ]; then + if [ -x ${bindir}/gpe-helpindex ]; then echo generating help-index gpe-helpindex else |