CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
dillo: initial import (verified compilation)
authorJose V Beneyto <sepen@crux.nu>
Thu, 24 Dec 2009 09:32:10 +0000 (10:32 +0100)
committerJose V Beneyto <sepen@crux.nu>
Thu, 24 Dec 2009 09:32:10 +0000 (10:32 +0100)
dillo/.footprint [new file with mode: 0644]
dillo/.md5sum [new file with mode: 0644]
dillo/Pkgfile [new file with mode: 0644]

diff --git a/dillo/.footprint b/dillo/.footprint
new file mode 100644 (file)
index 0000000..ad5aa43
--- /dev/null
@@ -0,0 +1,32 @@
+drwxr-xr-x     root/root       usr/
+drwxr-xr-x     root/root       usr/bin/
+-rwxr-xr-x     root/root       usr/bin/dillo
+-rwxr-xr-x     root/root       usr/bin/dpid
+-rwxr-xr-x     root/root       usr/bin/dpidc
+drwxr-xr-x     root/root       usr/etc/
+drwxr-xr-x     root/root       usr/etc/dillo/
+-rw-r--r--     root/root       usr/etc/dillo/dillorc
+-rw-r--r--     root/root       usr/etc/dillo/dpidrc
+-rw-r--r--     root/root       usr/etc/dillo/keysrc
+drwxr-xr-x     root/root       usr/lib/
+drwxr-xr-x     root/root       usr/lib/dillo/
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/bookmarks/
+-rwxr-xr-x     root/root       usr/lib/dillo/dpi/bookmarks/bookmarks.dpi
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/cookies/
+-rwxr-xr-x     root/root       usr/lib/dillo/dpi/cookies/cookies.dpi
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/datauri/
+-rwxr-xr-x     root/root       usr/lib/dillo/dpi/datauri/datauri.filter.dpi
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/downloads/
+-rwxr-xr-x     root/root       usr/lib/dillo/dpi/downloads/downloads.dpi
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/file/
+-rwxr-xr-x     root/root       usr/lib/dillo/dpi/file/file.dpi
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/ftp/
+-rwxr-xr-x     root/root       usr/lib/dillo/dpi/ftp/ftp.filter.dpi
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/hello/
+-rwxr-xr-x     root/root       usr/lib/dillo/dpi/hello/hello.filter.dpi
+drwxr-xr-x     root/root       usr/lib/dillo/dpi/https/
+-rwxr-xr-x     root/root       usr/lib/dillo/dpi/https/https.filter.dpi
+drwxr-xr-x     root/root       usr/man/
+drwxr-xr-x     root/root       usr/man/man1/
+-rw-r--r--     root/root       usr/man/man1/dillo.1.gz
diff --git a/dillo/.md5sum b/dillo/.md5sum
new file mode 100644 (file)
index 0000000..096d724
--- /dev/null
@@ -0,0 +1,2 @@
+2419e68558aa0877499fec80b60b7049  dillo-2.1.1.cross_compile.patch
+93f674f2a42d90a1cdb88a6972325954  dillo-2.1.1.tar.bz2
diff --git a/dillo/Pkgfile b/dillo/Pkgfile
new file mode 100644 (file)
index 0000000..3ba1bd5
--- /dev/null
@@ -0,0 +1,29 @@
+# Description: A graphical web browser in less than 700KB
+# URL: http://www.dillo.org
+# Maintainer: Juergen Daubert juergen dot daubert at t-online dot de
+# Arch Maintainer: CRUX-ARM System Team, crux-arm at mikeux dot dyndns dot org
+# Depends on: fltk2
+
+name=dillo
+version=2.1.1
+release=1
+source=(http://www.dillo.org/download/$name-$version.tar.bz2 \
+        $name-$version.cross_compile.patch)
+
+build () {
+  cd $name-$version
+
+  patch -p1 -i $SRC/$name-$version.cross_compile.patch
+
+  export LIBFLTK_CFLAGS="$CFLAGS"
+  export LIBFLTK_CXXFLAGS="-I$CLFS/usr/include -I$CLFS/usr/include/freetype2 $CFLAGS"
+  export LIBFLTK_LIBS="-L$CLFS/usr/lib -lfltk2 -lfltk2_images -lpng -ljpeg -lz -lX11 -lXi -lXft -lm -lXext -lpthread"
+
+  ./configure --build=$CHOST \
+              --host=$CTARGET \
+              --prefix=/usr \
+              --mandir=/usr/man
+
+  make
+  make DESTDIR=$PKG install
+}