aboutsummaryrefslogtreecommitdiff
path: root/tools/depends/target/gettext/Makefile
diff options
context:
space:
mode:
authorCory Fields <theuni-nospam-@xbmc.org>2013-03-08 23:16:23 -0500
committerCory Fields <theuni-nospam-@xbmc.org>2013-03-11 00:16:02 -0400
commit592d4c0b147ab05f2822c7ba5f4e9112784b6ce1 (patch)
tree690a46b49e80cc55c4329d5aebdfea917b0fc800 /tools/depends/target/gettext/Makefile
parentcdf099d0f824a787904d828c5573c70bf8489738 (diff)
depends: add mess of depends
Diffstat (limited to 'tools/depends/target/gettext/Makefile')
-rw-r--r--tools/depends/target/gettext/Makefile48
1 files changed, 48 insertions, 0 deletions
diff --git a/tools/depends/target/gettext/Makefile b/tools/depends/target/gettext/Makefile
new file mode 100644
index 0000000000..85ca94d4bc
--- /dev/null
+++ b/tools/depends/target/gettext/Makefile
@@ -0,0 +1,48 @@
+include ../../Makefile.include
+DEPS= ../../Makefile.include Makefile
+
+# lib name, version
+LIBNAME=gettext
+VERSION=0.18.2
+SOURCE=$(LIBNAME)-$(VERSION)
+ARCHIVE=$(SOURCE).tar.gz
+
+# configuration settings
+CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) build-aux/; \
+ ./configure --prefix=$(PREFIX) \
+ --disable-csharp --disable-native-java --disable-java --without-emacs \
+ --disable-libasprintf --disable-openmp \
+ --with-included-gettext \
+ --with-included-glib \
+ --with-included-libcroco \
+ --with-included-libxml \
+ --without-git --without-cvs --disable-shared --disable-curses \
+
+LIBDYLIB=$(PLATFORM)/gettext-runtime/intl/.libs/libintl.a
+
+CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
+
+all: .installed-$(PLATFORM)
+
+$(TARBALLS_LOCATION)/$(ARCHIVE):
+ cd $(TARBALLS_LOCATION); $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
+
+$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
+ rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM)
+ cd $(PLATFORM); $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
+ cd $(PLATFORM); $(CONFIGURE)
+
+$(LIBDYLIB): $(PLATFORM)
+ $(MAKE) -C $(PLATFORM)/gettext-runtime
+
+.installed-$(PLATFORM): $(LIBDYLIB)
+ $(MAKE) -C $(PLATFORM)/gettext-runtime install
+ touch $@
+
+clean:
+ $(MAKE) -C $(PLATFORM) clean
+ rm -f .installed-$(PLATFORM)
+
+distclean::
+ rm -rf $(PLATFORM) .installed-$(PLATFORM)
+