From 5a5346dfbec459c10d9e61e16e125b83975a1ef1 Mon Sep 17 00:00:00 2001 From: Rene Wagner Date: Sat, 13 May 2006 15:42:03 +0200 Subject: OE tree imported from monotone branch org.openembedded.oz354fam083 at revision 8b12e35772d79306d1d9de19c12b23681618532d. --- .../gpe-calculator-0.2/fix_makefile.patch | 47 ++++++++++++++++++++++ .../packages/gpe-calculator/gpe-calculator_0.2.bb | 9 +++++ 2 files changed, 56 insertions(+) create mode 100644 org.handhelds.familiar/packages/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch create mode 100644 org.handhelds.familiar/packages/gpe-calculator/gpe-calculator_0.2.bb (limited to 'org.handhelds.familiar/packages/gpe-calculator') diff --git a/org.handhelds.familiar/packages/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch b/org.handhelds.familiar/packages/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch new file mode 100644 index 0000000..b8c6d1a --- /dev/null +++ b/org.handhelds.familiar/packages/gpe-calculator/gpe-calculator-0.2/fix_makefile.patch @@ -0,0 +1,47 @@ +diff -urNd ../gpe-calculator-0.2-r0/gpe-calculator-0.2/Makefile gpe-calculator-0.2/Makefile +--- ../gpe-calculator-0.2-r0/gpe-calculator-0.2/Makefile 2004-08-03 04:24:09.000000000 +0100 ++++ gpe-calculator-0.2/Makefile 2004-08-03 13:12:48.000000000 +0100 +@@ -9,17 +9,17 @@ + GTKCFLAGS = `pkg-config --cflags gtk+-2.0` -DGTK_ENABLE_BROKEN + GTKLDFLAGS += `pkg-config --libs gtk+-2.0` + +-CPPFLAGS = -D_GNU_SOURCE ++PACKAGE_CPPFLAGS = -D_GNU_SOURCE + ifeq ($(DEBUG),yes) +-CFLAGS += -O2 -g +-LDFLAGS = -g #-lefence ++PACKAGE_CFLAGS += -O2 -g ++PACKAGE_LDFLAGS = -g #-lefence + else +-CFLAGS += -Os -fomit-frame-pointer ++PACKAGE_CFLAGS += -Os -fomit-frame-pointer + endif +-CFLAGS += -Wall $(GTKCFLAGS) +-LDFLAGS += $(GTKLDFLAGS) +-CPPFLAGS += -DPACKAGE=\"$(PACKAGE)\" -DPREFIX=\"$(PREFIX)\" -DPACKAGE_LOCALE_DIR=\"$(PREFIX)/share/locale\" -DPACKAGE_DATA_DIR=\"$(PREFIX)/share\" +-CFLAGS += -MD ++PACKAGE_CFLAGS += -Wall $(GTKCFLAGS) ++PACKAGE_LDFLAGS += $(GTKLDFLAGS) ++PACKAGE_CPPFLAGS += -DPACKAGE=\"$(PACKAGE)\" -DPREFIX=\"$(PREFIX)\" -DPACKAGE_LOCALE_DIR=\"$(PREFIX)/share/locale\" -DPACKAGE_DATA_DIR=\"$(PREFIX)/share\" ++PACKAGE_CFLAGS += -MD + + .SUFFIXES: .d + +@@ -36,14 +36,15 @@ + all: $(PACKAGE) + + $(PACKAGE): $(OBJS) +- $(CC) -o $@ $^ $(LDFLAGS) ++ $(CC) -o $@ $^ $(LDFLAGS) $(PACKAGE_LDFLAGS) + + install-program: all + install -D $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE) + install -D -m 644 $(PACKAGE).png $(DESTDIR)$(PREFIX)/share/pixmaps/$(PACKAGE).png + mkdir -p $(DESTDIR)$(PREFIX)/share/applications + install -m 644 $(PACKAGE).desktop $(DESTDIR)$(PREFIX)/share/applications +- strip $(DESTDIR)$(PREFIX)/bin/$(PACKAGE) ++ mkdir -p $(DESTDIR)$(PREFIX)/bin ++ install -s $(PACKAGE) $(DESTDIR)$(PREFIX)/bin/$(PACKAGE) + + clean: + rm -f $(PACKAGE) $(OBJS) $(DEPS) diff --git a/org.handhelds.familiar/packages/gpe-calculator/gpe-calculator_0.2.bb b/org.handhelds.familiar/packages/gpe-calculator/gpe-calculator_0.2.bb new file mode 100644 index 0000000..912d14a --- /dev/null +++ b/org.handhelds.familiar/packages/gpe-calculator/gpe-calculator_0.2.bb @@ -0,0 +1,9 @@ +inherit gpe pkgconfig + +DESCRIPTION = "A scientific calculator" +DEPENDS = "gtk+ libgpewidget" +SECTION = "gpe" +PRIORITY = "optional" +LICENSE = "GPL" + +SRC_URI += "file://fix_makefile.patch;patch=1" -- cgit v1.2.3-18-g5258