aboutsummaryrefslogtreecommitdiff
path: root/tools/android
diff options
context:
space:
mode:
authormontellese <montellese@xbmc.org>2012-10-05 13:26:58 +0200
committermontellese <montellese@xbmc.org>2012-10-05 13:26:58 +0200
commitd91f001238be9a7769c8805d1e9faf6522731d2e (patch)
tree5be007ad5c8b322223dfb73f0b30c27d3c4d4f4d /tools/android
parent2011d32c4efec184e4ae08c15f1086f041ef468c (diff)
[droid] remove remaining references to libid3tag
Diffstat (limited to 'tools/android')
-rw-r--r--tools/android/depends/Makefile.in3
-rw-r--r--tools/android/depends/libid3tag/Makefile45
2 files changed, 1 insertions, 47 deletions
diff --git a/tools/android/depends/Makefile.in b/tools/android/depends/Makefile.in
index e323715a5d..3ccf49f53b 100644
--- a/tools/android/depends/Makefile.in
+++ b/tools/android/depends/Makefile.in
@@ -7,7 +7,7 @@ SUBDIRS = \
libgcrypt bzip2 liblzo2 libzip freetype2 fontconfig \
openssl libssh2 curl \
libjpeg-turbo tiff jasper libpng \
- libogg libvorbis libflac libid3tag libmad fribidi libmpeg2 \
+ libogg libvorbis libflac libmad fribidi libmpeg2 \
libass libsamplerate \
libmodplug librtmp libxml2 yajl libmicrohttpd mysql libffi \
python26-native python26 samba alsa-lib libcdio afpfs-ng libshairport \
@@ -48,7 +48,6 @@ python26-native: buildtools
libsdl: buildtools
alsa-lib: rpl
libcec: rpl
-libid3tag: rpl
libmad: rpl
libmodplug: rpl
libmpeg2: rpl
diff --git a/tools/android/depends/libid3tag/Makefile b/tools/android/depends/libid3tag/Makefile
deleted file mode 100644
index 18d1e859c8..0000000000
--- a/tools/android/depends/libid3tag/Makefile
+++ /dev/null
@@ -1,45 +0,0 @@
-include ../Makefile.include
-DEPS= ../Makefile.include Makefile
-
-# lib name, version
-LIBNAME=libid3tag
-VERSION=0.15.1b
-SOURCE=$(LIBNAME)-$(VERSION)
-ARCHIVE=$(SOURCE).tar.gz
-
-# configuration settings
-
-CONFIGURE=cp -f $(CONFIG_SUB) $(CONFIG_GUESS) .; \
- ./configure --prefix=$(PREFIX) --build=$(BUILD) --host=$(HOST) \
-
-LIBDYLIB=$(PLATFORM)/.libs/$(LIBNAME).a
-
-CLEAN_FILES=$(ARCHIVE) $(PLATFORM)
-
-all: .installed-$(PLATFORM)
-
-$(TARBALLS_LOCATION)/$(ARCHIVE):
- $(RETRIEVE_TOOL) $(RETRIEVE_TOOL_FLAGS) $(BASE_URL)/$(ARCHIVE)
-
-$(PLATFORM): $(TARBALLS_LOCATION)/$(ARCHIVE) $(DEPS)
- rm -rf $(PLATFORM)/*; mkdir -p $(PLATFORM)
- $(ARCHIVE_TOOL) $(ARCHIVE_TOOL_FLAGS) $(TARBALLS_LOCATION)/$(ARCHIVE)
- cd $(PLATFORM); $(CONFIGURE)
-
-$(LIBDYLIB): $(PLATFORM)
- $(MAKE) -j 1 -C $(PLATFORM)
-
-.installed-$(PLATFORM): $(LIBDYLIB)
- $(MAKE) -C $(PLATFORM) install
- rm -f $(PREFIX)/lib/libid3tag.la $(PREFIX)/lib/libid3tag.so $(PREFIX)/lib/libid3tag.so.0
- mv -f $(PREFIX)/lib/libid3tag.so.0.3.0 $(PREFIX)/lib/libid3tag.so
- $(RPL) -e "libid3tag.so.0" "libid3tag.so\x00\x00" $(PREFIX)/lib/libid3tag.so
- -$(READELF) --dynamic $(PREFIX)/lib/libid3tag.so | grep ibrary
- touch $@
-
-clean:
- $(MAKE) -C $(PLATFORM) clean
- rm -f .installed-$(PLATFORM)
-
-distclean::
- rm -rf $(PLATFORM) .installed-$(PLATFORM)