diff options
author | Andreas Kemnade <andreas@kemnade.info> | 2010-01-15 00:26:47 +0100 |
---|---|---|
committer | Martin Jansa <Martin.Jansa@gmail.com> | 2010-01-15 00:50:17 +0100 |
commit | b71a9d4bcfd1b5cdc5f4708478afa7122049462b (patch) | |
tree | 4f33f7c6514d6daf7120cde0954765d335a7d474 /recipes | |
parent | a99479dc228e28039f62d2c36ef4d60d1432d6ae (diff) |
dillo2: add fltk2 based version 2.1.1 (from bug #4726)
Signed-off-by: Martin Jansa <Martin.Jansa@gmail.com>
Diffstat (limited to 'recipes')
-rw-r--r-- | recipes/dillo/dillo2_2.1.1.bb | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/recipes/dillo/dillo2_2.1.1.bb b/recipes/dillo/dillo2_2.1.1.bb new file mode 100644 index 0000000000..f0ea3dd8a7 --- /dev/null +++ b/recipes/dillo/dillo2_2.1.1.bb @@ -0,0 +1,28 @@ +DESCRIPTION = "Lightweight fltk2 browser, with support for SSL, tabs and much more..." +HOMEPAGE = "http://www.dillo.org" +SECTION = "x11/network" +PRIORITY = "optional" +LICENSE = "GPL" +DEPENDS = "fltk2 libpng openssl" +RDEPENDS = "libfltk2-images" +SRC_URI="http://www.dillo.org/download/dillo-${PV}.tar.bz2 \ + file://dillo.desktop \ + file://dillo.png" +PR="r1" + +S = "${WORKDIR}/dillo-${PV}/" + +inherit autotools pkgconfig + +FILES_${PN} += " /usr/lib/dillo/ /usr/bin/dpid /usr/bin/dpidc " +FILES_${PN}-dbg += " ${libdir}/dillo/dpi/*/.debug/" + + +EXTRA_OECONF = "--enable-ipv6" + +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 +} |