aboutsummaryrefslogtreecommitdiff
path: root/tools/osx/osx-depends/gettext
diff options
context:
space:
mode:
Diffstat (limited to 'tools/osx/osx-depends/gettext')
-rw-r--r--tools/osx/osx-depends/gettext/01-gettext-tools-Makefile.in.patch11
-rw-r--r--tools/osx/osx-depends/gettext/Makefile60
2 files changed, 0 insertions, 71 deletions
diff --git a/tools/osx/osx-depends/gettext/01-gettext-tools-Makefile.in.patch b/tools/osx/osx-depends/gettext/01-gettext-tools-Makefile.in.patch
deleted file mode 100644
index da129dea47..0000000000
--- a/tools/osx/osx-depends/gettext/01-gettext-tools-Makefile.in.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- gettext-tools/Makefile.in.orig 2010-06-03 16:38:55.000000000 -0500
-+++ gettext-tools/Makefile.in 2010-06-04 01:16:07.000000000 -0500
-@@ -724,7 +724,7 @@
- top_srcdir = @top_srcdir@
- AUTOMAKE_OPTIONS = 1.5 gnu no-dependencies
- ACLOCAL_AMFLAGS = -I m4 -I ../gettext-runtime/m4 -I ../autoconf-lib-link/m4 -I ../m4 -I gnulib-m4 -I libgettextpo/gnulib-m4
--SUBDIRS = doc intl gnulib-lib libgrep src libgettextpo po projects styles misc man m4 tests gnulib-tests examples
-+SUBDIRS = doc intl gnulib-lib libgrep src libgettextpo po projects styles misc man m4 tests gnulib-tests
-
- # Allow users to use "gnulib-tool --update".
-
diff --git a/tools/osx/osx-depends/gettext/Makefile b/tools/osx/osx-depends/gettext/Makefile
deleted file mode 100644
index 2f5895e79e..0000000000
--- a/tools/osx/osx-depends/gettext/Makefile
+++ /dev/null
@@ -1,60 +0,0 @@
-# A quick and dirty Makefile to download/build and install
-#
-# Usage:
-# make
-# sudo make install
-
-include ../config.mk
-
-# lib name, version
-LIBNAME=gettext
-VERSION=0.17
-SOURCE=$(LIBNAME)-$(VERSION)
-# download location and format
-BASE_URL=http://mirrors.xbmc.org/build-deps/darwin-libs
-ARCHIVE=$(SOURCE).tar.gz
-TARBALLS_LOCATION=/Users/Shared/xbmc-depends/tarballs
-RETRIEVE_TOOL=/usr/bin/curl
-RETRIEVE_TOOL_FLAGS=-Ls --create-dirs --output $(TARBALLS_LOCATION)/$(ARCHIVE)
-ARCHIVE_TOOL=tar
-ARCHIVE_TOOL_FLAGS=xf
-
-# configuration settings
-CONFIGURE=./configure --prefix=$(PREFIX) --host=$(HOST) --enable-shared \
- --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
-
-LIBDYLIB=$(SOURCE)/.libs/lib$(LIBNAME).dylib
-
-CLEAN_FILES=$(ARCHIVE) $(SOURCE)
-
-all: $(LIBDYLIB) .installed
-
-$(TARBALLS_LOCATION)/$(ARCHIVE):
- $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
-
-$(SOURCE): $(TARBALLS_LOCATION)/$(ARCHIVE)
- -rm -rf $(SOURCE)
- $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
- echo $(SOURCE) > .gitignore
- cd $(SOURCE); patch -p0 <../01-gettext-tools-Makefile.in.patch
- cd $(SOURCE); $(CONFIGURE)
-
-$(LIBDYLIB): $(SOURCE)
- make -C $(SOURCE)
-
-.installed:
- make -C $(SOURCE) install
- touch $@
-
-clean:
- make -C $(SOURCE) clean
- rm .installed
-
-distclean::
- rm -rf $(SOURCE) .installed