diff options
author | Graeme Gregory <dp@xora.org.uk> | 2005-12-20 16:13:12 +0000 |
---|---|---|
committer | OpenEmbedded Project <openembedded-devel@lists.openembedded.org> | 2005-12-20 16:13:12 +0000 |
commit | b82672b508aba79c6cd1f3e46074cc25d898d345 (patch) | |
tree | 7e9933c8c9e3e9ab6e29876e973797dde6e5b579 /packages/dillo/dillo_0.8.5.bb | |
parent | a7d70d9bb8844401a9030bd57b1d7b06c30d5c85 (diff) |
dillo-0.8.5: add dillo 0.8.5 version, this is a gtk 1.2 program but its a lot more modern than the gtk2 0.6.6 version that is available.
Diffstat (limited to 'packages/dillo/dillo_0.8.5.bb')
-rw-r--r-- | packages/dillo/dillo_0.8.5.bb | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/packages/dillo/dillo_0.8.5.bb b/packages/dillo/dillo_0.8.5.bb new file mode 100644 index 0000000000..caf1323614 --- /dev/null +++ b/packages/dillo/dillo_0.8.5.bb @@ -0,0 +1,29 @@ +SECTION = "x11/network" +DESCRIPTION = "Lightweight gtk+ browser." +LICENSE = "GPL" +DEPENDS = "gtk+-1.2" +SRC_URI="http://www.dillo.org/download/dillo-${PV}.tar.bz2 \ + file://font.patch;patch=1 \ + file://dpi.patch;patch=1 \ + file://dpid.patch;patch=1 \ + file://dillo.desktop \ + file://dillo.png" + + +MAINTAINER = "Graeme Gregory <dp@xora.org.uk>" +PRIORITY = "optional" + +RCONFLICTS = "dillo2" + +S = "${WORKDIR}/dillo-${PV}/" + +inherit autotools pkgconfig + +FILES_${PN} += " /usr/lib/dillo/ /usr/bin/dpid /usr/bin/dpidc " + +do_install_append() { + install -d ${D}${datadir}/applications + install -d ${D}${datadir}/pixmaps + install -m 0644 ${WORKDIR}/dillo.desktop ${D}${datadir}/applications/dillo.desktop + install -m 0644 ${WORKDIR}/dillo.png ${D}${datadir}/pixmaps/dillo.png +} |