-rw-r--r-- | Makefile | 55 | ||||
-rw-r--r-- | Rules.make | 54 | ||||
-rw-r--r-- | Vars.make | 4 | ||||
-rw-r--r-- | packages | 2 |
4 files changed, 64 insertions, 51 deletions
@@ -14,3 +14,3 @@ noconfig_targets := xconfig menuconfig config oldconfig randconfig \ -configs += $(TOPDIR)/core/applets/config.in $(TOPDIR)/core/apps/config.in $(TOPDIR)/core/multimedia/config.in $(TOPDIR)/core/pim/config.in $(TOPDIR)/core/pim/today/plugins/config.in $(TOPDIR)/core/settings/config.in $(TOPDIR)/development/config.in $(TOPDIR)/inputmethods/config.in $(TOPDIR)/libopie/ofileselector/config.in $(TOPDIR)/libopie/pim/config.in $(TOPDIR)/libsql/config.in $(TOPDIR)/noncore/applets/config.in $(TOPDIR)/noncore/apps/opie-console/test/config.in $(TOPDIR)/noncore/apps/config.in $(TOPDIR)/noncore/comm/config.in $(TOPDIR)/noncore/decorations/config.in $(TOPDIR)/noncore/games/config.in $(TOPDIR)/noncore/graphics/config.in $(TOPDIR)/noncore/multimedia/config.in $(TOPDIR)/noncore/net/config.in $(TOPDIR)/noncore/net/opietooth/config.in $(TOPDIR)/noncore/settings/config.in $(TOPDIR)/noncore/styles/config.in $(TOPDIR)/noncore/tools/calc2/config.in $(TOPDIR)/noncore/tools/config.in $(TOPDIR)/noncore/todayplugins/config.in +configs += $(TOPDIR)/core/applets/config.in $(TOPDIR)/core/apps/config.in $(TOPDIR)/core/multimedia/config.in $(TOPDIR)/core/pim/config.in $(TOPDIR)/core/pim/today/plugins/config.in $(TOPDIR)/core/settings/config.in $(TOPDIR)/development/config.in $(TOPDIR)/inputmethods/config.in $(TOPDIR)/libopie/pim/config.in $(TOPDIR)/noncore/applets/config.in $(TOPDIR)/noncore/apps/opie-console/test/config.in $(TOPDIR)/noncore/apps/config.in $(TOPDIR)/noncore/comm/config.in $(TOPDIR)/noncore/decorations/config.in $(TOPDIR)/noncore/games/config.in $(TOPDIR)/noncore/graphics/config.in $(TOPDIR)/noncore/multimedia/config.in $(TOPDIR)/noncore/net/config.in $(TOPDIR)/noncore/net/opietooth/config.in $(TOPDIR)/noncore/settings/config.in $(TOPDIR)/noncore/styles/config.in $(TOPDIR)/noncore/tools/calc2/config.in $(TOPDIR)/noncore/tools/config.in $(TOPDIR)/noncore/todayplugins/config.in @@ -64,40 +64,2 @@ $(TOPDIR)/.config: $(TOPDIR)/.depends.cfgs $(configs) -# config rules must have the $(configs) var defined -# at the time that they run. we must ensure that .depends.cfgs -# is built and included by the time we reach this point. - -xconfig : - $(call descend,scripts/kconfig,qconf) - LD_LIBRARY_PATH=$$LD_LIBRARY_PATH:$(TOPDIR)/scripts/kconfig \ - ./scripts/kconfig/qconf ./config.in - -menuconfig : $(TOPDIR)/scripts/lxdialog/lxdialog - $(call descend,scripts/kconfig,mconf) - ./scripts/kconfig/mconf ./config.in - -config : - $(call descend,scripts/kconfig,conf) - ./scripts/kconfig/conf ./config.in - -oldconfig : - $(call descend,scripts/kconfig,conf) - ./scripts/kconfig/conf -o ./config.in - -randconfig : - $(call descend,scripts/kconfig,conf) - ./scripts/kconfig/conf -r ./config.in - -allyesconfig : - $(call descend,scripts/kconfig,conf) - ./scripts/kconfig/conf -y ./config.in - -allnoconfig : - $(call descend,scripts/kconfig,conf) - ./scripts/kconfig/conf -n ./config.in - -defconfig : - $(call descend,scripts/kconfig,conf) - ./scripts/kconfig/conf -d ./config.in - - export @@ -121,4 +83,15 @@ lupdate lrelease: -opie-lupdate opie-lrelease: - @for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done +opie-lupdate opie-lrelease messages: + @for i in $(SUBDIRS); do $(MAKE) -C $$i $@; done; + +# from kde +qtmessages: + cd $(QTDIR)/src ; \ + sed -e "s,#define,," xml/qxml.cpp > qxml_clean.cpp ;\ + find . -name "*.cpp" | grep -v moc_ > list ;\ + for file in qfiledialog qcolordialog qprintdialog \ + qurloperator qftp qhttp qlocal qerrormessage; do \ + grep -v $$file list > list.new && mv list.new list ;\ + done ;\ + xgettext -C -ktr -kQT_TRANSLATE_NOOP -n `cat list` -o $(OPIEDIR)/qt-messages.pot @@ -1,2 +1,3 @@ -.PHONY: FORCE +.phony: force +force: @@ -59,4 +60,3 @@ $(OPIEDIR)/stamp-headers : $(TOPDIR)/include/opie \ - $(TOPDIR)/include/qtopia/private \ - $(TOPDIR)/include/opie2 + $(TOPDIR)/include/qtopia/private ( cd include/qpe && rm -f *.h; ln -sf ../../library/*.h .; ln -sf ../../library/backend/*.h .; rm -f *_p.h; ) @@ -65,3 +65,2 @@ $(OPIEDIR)/stamp-headers : ( cd include/opie && rm -f *.h; ln -sf ../../libopie/*.h .; rm -f *_p.h; ) - ( cd include/opie && ln -sf ../../libsql/*.h .; ) ( cd include/opie && ln -sf ../../libopie/pim/*.h .; ) @@ -100,4 +99,40 @@ $(TOPDIR)/library/custom.h : $(TOPDIR)/.config -$(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/conf scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/mconf scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/qconf scripts/kconfig/qconf $(TOPDIR)/qmake/qmake : - $(call descend,$(shell dirname $@),$(shell basename $@)) +$(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf $(TOPDIR)/scripts/kconfig/conf $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/qmake/qmake: + @$(call descend,$(shell dirname $@),$(shell basename $@)) + +menuconfig: $(TOPDIR)/scripts/lxdialog/lxdialog $(TOPDIR)/scripts/kconfig/mconf ./config.in + $(TOPDIR)/scripts/kconfig/mconf ./config.in + @touch ./.config.stamp + +xconfig: $(TOPDIR)/scripts/kconfig/qconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in + $(TOPDIR)/scripts/kconfig/qconf ./config.in + @touch .config.stamp + +gconfig: $(TOPDIR)/scripts/kconfig/gconf $(TOPDIR)/scripts/kconfig/libkconfig.so ./config.in + $(TOPDIR)/scripts/kconfig/gconf ./config.in + @touch .config.stamp + +config: $(TOPDIR)/scripts/kconfig/conf ./config.in + $(TOPDIR)/scripts/kconfig/conf ./config.in + @touch .config.stamp + +oldconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in + $(TOPDIR)/scripts/kconfig/conf -o ./config.in + @touch .config.stamp + +randconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in + $(TOPDIR)/scripts/kconfig/conf -r ./config.in + @touch .config.stamp + +allyesconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in + $(TOPDIR)/scripts/kconfig/conf -y ./config.in + @touch .config.stamp + +allnoconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in + $(TOPDIR)/scripts/kconfig/conf -n ./config.in + @touch .config.stamp + +defconfig: $(TOPDIR)/scripts/kconfig/conf ./config.in + $(TOPDIR)/scripts/kconfig/conf -d ./config.in + @touch .config.stamp @@ -108,3 +143,3 @@ $(TOPDIR)/mkspecs/default : -$(TOPDIR)/scripts/subst : FORCE +$(TOPDIR)/scripts/subst : force @( \ @@ -115,2 +150,3 @@ $(TOPDIR)/scripts/subst : FORCE echo 's,\$$SUB_VERSION,$(SUB_VERSION),g'; \ + echo 's,\$$EXTRAVERSION,$(EXTRAVERSION),g'; \ echo 's,\$$QTE_BASEVERSION,$(QTE_BASEVERSION),g'; \ @@ -118,3 +154,3 @@ $(TOPDIR)/scripts/subst : FORCE -$(TOPDIR)/scripts/filesubst : FORCE +$(TOPDIR)/scripts/filesubst : force @( \ @@ -136,2 +172,4 @@ $(TOPDIR)/scripts/filesubst : FORCE echo 's,^\(\./\)*share/,$(prefix)/share/,g'; \ + echo 's,^\(\./\)*i18n/,$(prefix)/i18n/,g'; \ + echo 's,^\(\./\)*help/,$(prefix)/help/,g'; \ ) > $@ || ( rm -f $@; exit 1 ) @@ -57,2 +57,6 @@ export SUB_VERSION +ifneq ($(strip $(SUB_VERSION)),) +EXTRAVERSION=-$(SUB_VERSION) +endif + ifeq ($(QTE_REVISION),) @@ -97,5 +97,3 @@ CONFIG_OAPP core/apps/oapp oapp.pro CONFIG_OBEX core/applets/obex2 obex.pro -CONFIG_OCOPSERVER x11/ipc/server ocopserver.pro CONFIG_ODICT noncore/apps/odict odict.pro -CONFIG_OFILESELECTOR libopie/ofileselector ofileselector.pro CONFIG_OIPKG core/apps/oipkg oipkg.pro |