package/: add gob2 for target/host and use for gmpc compilation

Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
Peter Korsgaard
2009-05-04 16:08:24 +02:00
parent 6f8a717e8e
commit 163a062727
5 changed files with 110 additions and 9 deletions

10
package/gob2/Config.in Normal file
View File

@@ -0,0 +1,10 @@
config BR2_PACKAGE_GOB2
bool "gob2"
select BR2_PACKAGE_LIBGLIB2
select BR2_PACKAGE_FLEX
select BR2_PACKAGE_BISON
help
GOB (GTK+ Object Builder) is a preprocessor which simplifies
the writing of GObjects in C.
http://www.jirka.org/gob.html

View File

@@ -0,0 +1,40 @@
[PATCH] Don't search $prefix/include for header files
Don't add $prefix/include to the header file search path, as that breaks
cross compilation (build $prefix/include isn't the same as target
$prefix/include).
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
---
src/Makefile.am | 3 +--
src/Makefile.in | 3 +--
2 files changed, 2 insertions(+), 4 deletions(-)
Index: gob2-2.0.15/src/Makefile.am
===================================================================
--- gob2-2.0.15.orig/src/Makefile.am
+++ gob2-2.0.15/src/Makefile.am
@@ -17,8 +17,7 @@ INCLUDES = \
-I$(top_builddir) \
-I$(top_builddir)/src \
-I$(top_srcdir) \
- -I$(top_srcdir)/src \
- -I$(includedir)
+ -I$(top_srcdir)/src
if NOINSTGOB
noinst_PROGRAMS = @NOINSTGOB@
Index: gob2-2.0.15/src/Makefile.in
===================================================================
--- gob2-2.0.15.orig/src/Makefile.in
+++ gob2-2.0.15/src/Makefile.in
@@ -193,8 +193,7 @@ INCLUDES = \
-I$(top_builddir) \
-I$(top_builddir)/src \
-I$(top_srcdir) \
- -I$(top_srcdir)/src \
- -I$(includedir)
+ -I$(top_srcdir)/src
@NOINSTGOB_TRUE@noinst_PROGRAMS = @NOINSTGOB@
@NOINSTGOB_FALSE@bin_PROGRAMS = @INSTGOB@

56
package/gob2/gob2.mk Normal file
View File

@@ -0,0 +1,56 @@
#############################################################
#
# gob2
#
#############################################################
GOB2_VERSION = 2.0.15
GOB2_SOURCE = gob2-$(GOB2_VERSION).tar.gz
GOB2_SITE = http://ftp.5z.com/pub/gob/
GOB2_DEPENDENCIES = libglib2 flex bison host-pkgconfig
$(eval $(call AUTOTARGETS,package,gob2))
# gob2 for the host
GOB2_HOST_DIR:=$(BUILD_DIR)/gob2-$(GOB2_VERSION)-host
GOB2_HOST_BINARY:=$(HOST_DIR)/usr/bin/gob2
$(DL_DIR)/$(GOB2_SOURCE):
$(call DOWNLOAD,$(GOB2_SITE),$(GOB2_SOURCE))
$(STAMP_DIR)/host_gob2_unpacked: $(DL_DIR)/$(GOB2_SOURCE)
mkdir -p $(GOB2_HOST_DIR)
$(INFLATE$(suffix $(GOB2_SOURCE))) $< | \
$(TAR) $(TAR_STRIP_COMPONENTS)=1 -C $(GOB2_HOST_DIR) $(TAR_OPTIONS) -
touch $@
$(STAMP_DIR)/host_gob2_configured: $(STAMP_DIR)/host_gob2_unpacked $(STAMP_DIR)/host_libglib2_installed
(cd $(GOB2_HOST_DIR); rm -rf config.cache; \
$(HOST_CONFIGURE_OPTS) \
CFLAGS="$(HOST_CFLAGS)" \
LDFLAGS="$(HOST_LDFLAGS)" \
./configure \
--prefix="$(HOST_DIR)/usr" \
--sysconfdir="$(HOST_DIR)/etc" \
)
touch $@
$(STAMP_DIR)/host_gob2_compiled: $(STAMP_DIR)/host_gob2_configured
$(HOST_MAKE_ENV) $(MAKE) -C $(GOB2_HOST_DIR)
touch $@
$(STAMP_DIR)/host_gob2_installed: $(STAMP_DIR)/host_gob2_compiled
$(HOST_MAKE_ENV) $(MAKE) -C $(GOB2_HOST_DIR) install
touch $@
host-gob2: $(STAMP_DIR)/host_gob2_installed
host-gob2-source: gob2-source
host-gob2-clean:
rm -f $(addprefix $(STAMP_DIR)/host_gob2_,unpacked configured compiled installed)
-$(MAKE) -C $(GOB2_HOST_DIR) uninstall
-$(MAKE) -C $(GOB2_HOST_DIR) clean
host-gob2-dirclean:
rm -rf $(GOB2_HOST_DIR)