[oe-commits] Angus Ainslie : dillo : add a version 2.0 recipe

GIT User account git at amethyst.openembedded.net
Tue Apr 21 21:25:23 UTC 2009


Module: openembedded.git
Branch: fso/milestone5.5
Commit: 6fa984d8c3311c918d2acce6c628dfa7d3152e89
URL:    http://gitweb.openembedded.net/?p=openembedded.git&a=commit;h=6fa984d8c3311c918d2acce6c628dfa7d3152e89

Author: Angus Ainslie <nytowl at openmoko.org>
Date:   Tue Apr 21 15:14:04 2009 -0600

dillo : add a version 2.0 recipe

---

 conf/checksums.ini                                 |    4 +
 conf/distro/include/preferred-om-2008-versions.inc |    2 +-
 recipes/dillo/dillo-2.0/dillo.desktop              |    9 +++
 recipes/dillo/dillo-2.0/dillo.png                  |  Bin 0 -> 4175 bytes
 recipes/dillo/dillo-2.0/dillorc                    |   71 ++++++++++++++++++++
 recipes/dillo/dillo_2.0.bb                         |   28 ++++++++
 6 files changed, 113 insertions(+), 1 deletions(-)

diff --git a/conf/checksums.ini b/conf/checksums.ini
index 22d6dc5..c972d96 100644
--- a/conf/checksums.ini
+++ b/conf/checksums.ini
@@ -4154,6 +4154,10 @@ sha256=bd72287adedccf493f046f0e6ca29ef47f2cd3741c62a98d5eb82a9068846b73
 md5=b65233d368bbd265a55effcf2c17f84b
 sha256=47e695a5d370eb656f5e41eeb917ad6281b1559bf60172c9eca89b5518a9f9b9
 
+[http://www.dillo.org/download/dillo-2.0.tar.bz2]
+md5=bb9999cabeb4db3d915687de465dbeb0
+sha256=847d1db31bd68ab9ab94b642b0cd40ac8d3cf816900f5d5652124986601df1e9
+
 [http://dircproxy.securiweb.net/pub/1.1/dircproxy-1.1.0.tar.gz]
 md5=066bd39d80f286ae5ce69a2adbbd01e4
 sha256=f0be78d2c2f0279cce26b0b2e87077bfe568f1da189eef2daec78b1e12699c4e
diff --git a/conf/distro/include/preferred-om-2008-versions.inc b/conf/distro/include/preferred-om-2008-versions.inc
index df8951a..a1f3d06 100644
--- a/conf/distro/include/preferred-om-2008-versions.inc
+++ b/conf/distro/include/preferred-om-2008-versions.inc
@@ -255,7 +255,7 @@ PREFERRED_VERSION_diethotplug ?= "0.4"
 PREFERRED_VERSION_diet-x11 ?= "1.1.3"
 PREFERRED_VERSION_diffstat ?= "1.39"
 PREFERRED_VERSION_diffutils ?= "2.8.1"
-PREFERRED_VERSION_dillo ?= "0.8.6"
+PREFERRED_VERSION_dillo ?= "2.0"
 PREFERRED_VERSION_dillo2 ?= "0.6.6"
 PREFERRED_VERSION_dircproxy ?= "1.1.0"
 PREFERRED_VERSION_directfb ?= "1.1.0"
diff --git a/recipes/dillo/dillo-2.0/dillo.desktop b/recipes/dillo/dillo-2.0/dillo.desktop
new file mode 100644
index 0000000..6c5f994
--- /dev/null
+++ b/recipes/dillo/dillo-2.0/dillo.desktop
@@ -0,0 +1,9 @@
+[Desktop Entry]
+Name=Web browser
+Comment=Dillo
+Exec=dillo
+Terminal=0
+Type=Application
+Icon=dillo.png
+Categories=Application;PIM;GPE
+StartupNotify=True
diff --git a/recipes/dillo/dillo-2.0/dillo.png b/recipes/dillo/dillo-2.0/dillo.png
new file mode 100644
index 0000000..99c942f
Binary files /dev/null and b/recipes/dillo/dillo-2.0/dillo.png differ
diff --git a/recipes/dillo/dillo-2.0/dillorc b/recipes/dillo/dillo-2.0/dillorc
new file mode 100644
index 0000000..fce16dd
--- /dev/null
+++ b/recipes/dillo/dillo-2.0/dillorc
@@ -0,0 +1,71 @@
+# dillorc
+# Sample dillo initialization file.
+# Lines that start with a '#' are comments.
+
+# Set the desired initial browser size
+geometry=240x310
+
+# Set the home location
+home=http://www.google.com/palm/
+
+# Set the proxy information for http
+#http_proxy=http://localhost:8080/
+
+# Set the domain to access without proxy
+#no_proxy = http://www.mynet.com/
+
+# If you prefer oblique over italic fonts, uncoment next line
+use_oblique=YES
+
+# Color Section
+# Here we can use the standard (and extended) html named color or 
+# the hexdecimal version (in C style)
+
+# Set the background color
+# bg_color=gray
+# bg_color=0xd6d6c0
+# bg_color=0xdcd1ba
+
+# Set the text color
+text_color=black
+
+# Set the link color
+link_color=blue
+
+# If you like white backgrounds, uncomment next line
+allow_white_bg=YES
+
+# Use the same colors with all documents?
+force_my_colors=NO
+
+# All fontsizes are scaled by this value (default is 1.0)
+font_factor=0.6
+
+# Show ALT popup for images?
+show_alt=YES
+
+# Size of dillo panel (used to enlarge the browsing area)
+# tiny   :  recommended for iPAQ (with small_icons)
+# medium :  nice!
+# large  :  Traditional
+panel_size=stack
+small_icons=YES
+
+# Set this to YES, if you want to limit the word wrap width to the vieport
+# width (may be useful for iPAQ)
+limit_text_width=YES
+
+use_dicache=YES
+
+show_back               = YES
+show_forw               = YES
+show_home               = YES
+show_save               = YES
+show_stop               = YES
+show_menubar            = YES
+show_clear_url          = YES
+show_url                = YES
+show_progress_box       = NO
+transient_dialogs       = YES
+
+# dillorc ends here.
diff --git a/recipes/dillo/dillo_2.0.bb b/recipes/dillo/dillo_2.0.bb
new file mode 100644
index 0000000..44058ba
--- /dev/null
+++ b/recipes/dillo/dillo_2.0.bb
@@ -0,0 +1,28 @@
+SECTION = "x11/network"
+DESCRIPTION = "Lightweight gtk+2 browser."
+LICENSE = "GPL"
+DEPENDS = "fltk2"
+RDEPENDS = "gdk-pixbuf-loader-xpm"
+SRC_URI="http://www.dillo.org/download/dillo-${PV}.tar.bz2 \
+         file://dillo.desktop \
+         file://dillo.png \
+         file://dillorc"
+
+PRIORITY = "optional"
+
+S = "${WORKDIR}/dillo-${PV}/"
+
+inherit autotools pkgconfig
+
+EXTRA_EOCONF+="--enable-ssl"
+
+do_install() {
+	install -d ${D}${bindir}
+	install -d ${D}${datadir}/applications
+	install -d ${D}${datadir}/pixmaps
+	install -d ${D}${sysconfdir}
+	install -m 0644 ${WORKDIR}/dillo.desktop ${D}${datadir}/applications/dillo.desktop
+	install -m 0644 ${WORKDIR}/dillo.png ${D}${datadir}/pixmaps/dillo.png
+	install -m 0755 ${S}/src/dillo ${D}${bindir}/dillo
+	install -m 0644 ${WORKDIR}/dillorc ${D}${sysconfdir}/dillorc
+}





More information about the Openembedded-commits mailing list