changeset 164:43f7cae42987

translated package: fltk
author Volker Grabsch <vog@notjusthosting.com>
date Sun, 09 Nov 2008 02:25:14 +0100
parents e3eb8dfa71f5
children 0b4277f483b2
files src/fltk.mk
diffstat 1 files changed, 29 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/fltk.mk	Sun Nov 09 02:25:14 2008 +0100
@@ -0,0 +1,29 @@
+# FLTK
+# http://www.fltk.org/
+
+PKG            := fltk
+$(PKG)_VERSION := 1.1.7
+$(PKG)_SUBDIR  := fltk-$($(PKG)_VERSION)
+$(PKG)_FILE    := fltk-$($(PKG)_VERSION)-source.tar.bz2
+$(PKG)_URL     := http://ftp.easysw.com/pub/fltk/$($(PKG)_VERSION)/$($(PKG)_FILE)
+$(PKG)_DEPS    := gcc pthreads zlib jpeg libpng
+
+define $(PKG)_UPDATE
+    wget -q -O- 'http://www.fltk.org/' | \
+    $(SED) -n 's,.*>v\([0-9][^<]*\)<.*,\1,p' | \
+    head -1
+endef
+
+define $(PKG)_BUILD
+    $(SED) 's,\$$uname,MINGW,g' -i '$(1)/configure'
+    # wine confuses the cross-compiling detection, so set it explicitly
+    $(SED) 's,cross_compiling=no,cross_compiling=yes,' -i '$(1)/configure'
+    cd '$(1)' && ./configure \
+        --host='$(TARGET)' \
+        --disable-shared \
+        --prefix='$(PREFIX)/$(TARGET)' \
+        --enable-threads \
+        LIBS='-lws2_32'
+    $(SED) 's,-fno-exceptions,,' -i '$(1)/makeinclude'
+    $(MAKE) -C '$(1)' -j '$(JOBS)' install DIRS=src
+endef