From fd9c8887b6481d7ec02e96f2b370555f2551bcb0 Mon Sep 17 00:00:00 2001 From: Sergey Lapin Date: Sat, 17 May 2008 22:49:19 +0000 Subject: gpe-helpviewer: replaced direct directory names use with variables. Closes 2451. * commit from Laibsch. --- packages/gpe-helpviewer/gpe-helpviewer_1.0.bb | 33 ++++++++++++--------------- 1 file changed, 15 insertions(+), 18 deletions(-) (limited to 'packages/gpe-helpviewer') 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 '/^\/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 '/^\/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 -- cgit v1.2.3