comparison src/gtkglext.mk @ 967:9c41979b7f21

replace the $(SED) hacks with proper patches in package gtkglext
author Volker Grabsch <vog@notjusthosting.com>
date Fri, 14 May 2010 10:53:25 +0200
parents 7834f9cb6042
children 446515393768
comparison
equal deleted inserted replaced
966:409e4ebc0164 967:9c41979b7f21
19 grep -v '1\.1\.' | \ 19 grep -v '1\.1\.' | \
20 head -1 20 head -1
21 endef 21 endef
22 22
23 define $(PKG)_BUILD 23 define $(PKG)_BUILD
24 # wine confuses the cross-compiling detection, so set it explicitly 24 cd '$(1)' && autoconf
25 $(SED) -i 's,cross_compiling=no,cross_compiling=yes,' '$(1)/configure'
26 # don't require x backend for pango
27 $(SED) -i 's,pangox >= 1.0.0,,' '$(1)/configure'
28 cd '$(1)' && ./configure \ 25 cd '$(1)' && ./configure \
29 --host='$(TARGET)' \ 26 --host='$(TARGET)' \
30 --prefix='$(PREFIX)/$(TARGET)' \ 27 --prefix='$(PREFIX)/$(TARGET)' \
31 --disable-shared \ 28 --disable-shared \
32 --without-x \ 29 --without-x \
30 --with-gdktarget=win32 \
33 --disable-gtk-doc \ 31 --disable-gtk-doc \
34 --disable-man \ 32 --disable-man \
35 --disable-glibtest 33 --disable-glibtest
36 $(SED) -i 's, glib-mkenums, $$(GLIB_MKENUMS),' '$(1)/gdk/Makefile'
37 $(MAKE) -C '$(1)' -j '$(JOBS)' install \ 34 $(MAKE) -C '$(1)' -j '$(JOBS)' install \
38 bin_PROGRAMS= \ 35 bin_PROGRAMS= \
39 sbin_PROGRAMS= \ 36 sbin_PROGRAMS= \
40 noinst_PROGRAMS= \ 37 noinst_PROGRAMS= \
41 INFO_DEPS= \ 38 INFO_DEPS= \