changeset 1772:d44625615017

rename package gtkmm to gtkmm2
author Volker Grabsch <vog@notjusthosting.com>
date Sat, 23 Apr 2011 15:50:17 +0200
parents d24a421778d8
children ec591e415800
files src/gtkmm-test.cpp src/gtkmm.mk src/gtkmm2-test.cpp src/gtkmm2.mk
diffstat 4 files changed, 55 insertions(+), 54 deletions(-) [+]
line wrap: on
line diff
--- a/src/gtkmm-test.cpp	Sat Apr 23 15:00:08 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,17 +0,0 @@
-/* This file is part of mingw-cross-env.       */
-/* See doc/index.html for further information. */
-
-#include <gtkmm/window.h>
-#include <gtkmm/main.h>
-
-int main(int argc, char *argv[])
-{
-    Gtk::Main g(argc, argv);
-
-    Gtk::Window window;
-    window.set_title("Test App mingw-cross-env");
-    window.set_default_size(200, 200);
-    window.show_all();
-    g.run(window);
-    return 0;
-}
--- a/src/gtkmm.mk	Sat Apr 23 15:00:08 2011 +0200
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,37 +0,0 @@
-# This file is part of mingw-cross-env.
-# See doc/index.html for further information.
-
-# GTKMM
-PKG             := gtkmm
-$(PKG)_IGNORE   :=
-$(PKG)_VERSION  := 2.24.0
-$(PKG)_CHECKSUM := 9b9e68360fb3f5faa7f221acba56f0d75a8198d2
-$(PKG)_SUBDIR   := gtkmm-$($(PKG)_VERSION)
-$(PKG)_FILE     := gtkmm-$($(PKG)_VERSION).tar.bz2
-$(PKG)_WEBSITE  := http://www.gtkmm.org/
-$(PKG)_URL      := http://ftp.gnome.org/pub/gnome/sources/gtkmm/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
-$(PKG)_DEPS     := gcc gtk2 libsigc++ pangomm cairomm atkmm
-
-define $(PKG)_UPDATE
-    wget -q -O- 'http://git.gnome.org/browse/gtkmm/refs/tags' | \
-    grep '<a href=' | \
-    $(SED) -n 's,.*<a[^>]*>\([0-9]*\.[0-9]*[02468]\.[^<]*\)<.*,\1,p' | \
-    grep -v '^2\.9' | \
-    head -1
-endef
-
-define $(PKG)_BUILD
-    # wine confuses the cross-compiling detection, so set it explicitly
-    $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure'
-    cd '$(1)' && ./configure \
-        --host='$(TARGET)' \
-        --disable-shared \
-        --prefix='$(PREFIX)/$(TARGET)' \
-        MAKE=$(MAKE)
-    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
-
-    '$(TARGET)-g++' \
-        -W -Wall -Werror -pedantic -std=c++0x \
-        '$(2).cpp' -o '$(PREFIX)/$(TARGET)/bin/test-gtkmm.exe' \
-        `'$(TARGET)-pkg-config' gtkmm-2.4 --cflags --libs`
-endef
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/gtkmm2-test.cpp	Sat Apr 23 15:50:17 2011 +0200
@@ -0,0 +1,17 @@
+/* This file is part of mingw-cross-env.       */
+/* See doc/index.html for further information. */
+
+#include <gtkmm/window.h>
+#include <gtkmm/main.h>
+
+int main(int argc, char *argv[])
+{
+    Gtk::Main g(argc, argv);
+
+    Gtk::Window window;
+    window.set_title("Test App mingw-cross-env");
+    window.set_default_size(200, 200);
+    window.show_all();
+    g.run(window);
+    return 0;
+}
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/src/gtkmm2.mk	Sat Apr 23 15:50:17 2011 +0200
@@ -0,0 +1,38 @@
+# This file is part of mingw-cross-env.
+# See doc/index.html for further information.
+
+# GTKMM
+PKG             := gtkmm2
+$(PKG)_IGNORE   :=
+$(PKG)_VERSION  := 2.24.0
+$(PKG)_CHECKSUM := 9b9e68360fb3f5faa7f221acba56f0d75a8198d2
+$(PKG)_SUBDIR   := gtkmm-$($(PKG)_VERSION)
+$(PKG)_FILE     := gtkmm-$($(PKG)_VERSION).tar.bz2
+$(PKG)_WEBSITE  := http://www.gtkmm.org/
+$(PKG)_URL      := http://ftp.gnome.org/pub/gnome/sources/gtkmm/$(call SHORT_PKG_VERSION,$(PKG))/$($(PKG)_FILE)
+$(PKG)_DEPS     := gcc gtk2 libsigc++ pangomm cairomm atkmm
+
+define $(PKG)_UPDATE
+    wget -q -O- 'http://git.gnome.org/browse/gtkmm/refs/tags' | \
+    grep '<a href=' | \
+    $(SED) -n 's,.*<a[^>]*>\([0-9]*\.[0-9]*[02468]\.[^<]*\)<.*,\1,p' | \
+    grep -v '^2\.9' | \
+    grep '^2\.' | \
+    head -1
+endef
+
+define $(PKG)_BUILD
+    # wine confuses the cross-compiling detection, so set it explicitly
+    $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure'
+    cd '$(1)' && ./configure \
+        --host='$(TARGET)' \
+        --disable-shared \
+        --prefix='$(PREFIX)/$(TARGET)' \
+        MAKE=$(MAKE)
+    $(MAKE) -C '$(1)' -j '$(JOBS)' install bin_PROGRAMS= sbin_PROGRAMS= noinst_PROGRAMS=
+
+    '$(TARGET)-g++' \
+        -W -Wall -Werror -pedantic -std=c++0x \
+        '$(2).cpp' -o '$(PREFIX)/$(TARGET)/bin/test-gtkmm2.exe' \
+        `'$(TARGET)-pkg-config' gtkmm-2.4 --cflags --libs`
+endef