~nik90/ubuntu/precise/vlc/keywords

« back to all changes in this revision

Viewing changes to contrib/src/src/iconv/rules.mak

  • Committer: Package Import Robot
  • Author(s): Benjamin Drung
  • Date: 2012-02-13 01:34:02 UTC
  • mfrom: (1.1.44)
  • Revision ID: package-import@ubuntu.com-20120213013402-7utx6r7s9dg3r0pf
Tags: 2.0.0~unix-0ubuntu1
* New upstream release (Closes: #499381, #573064, #624027, LP: #455825,
  #573775, #695882, #705151, #708448, #738381, #743581, #747757, #817924,
  #931083).
* Remove dropped mozilla-plugin-vlc, vlc-plugin-ggi, and vlc-plugin-svgalib.
  The Mozilla browser plug-in is now provided by a separate source tarball.
* Add new plugins to and remove dropped plugins from vlc-nox.
* Add new and remove dropped build dependencies:
  + libbluray-dev (for Blu-ray support)
  + libresid-builder-dev
  + libsamplerate0-dev
  + libsidplay2-dev
  + lbspeexdsp-dev
  + libxcb-composite0-dev
  - libgtk2.0-dev
  - xulrunner-dev
* vlc-plugin-fluidsynth depends on fluid-soundfont-gm or
  musescore-soundfont-gm for having a sound font for playing MIDI files.
* Drop all patches (they were either backported or accepted by upstream).
* Update symbols for libvlc5.
* Install plugins.dat instead of running vlc-cache-gen in postinst.
* Update minimum version of build dependencies.
* Change Build-Dependency from libupnp3-dev to unversioned libupnp-dev.
  (Closes: #656831)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# libiconv
 
2
LIBICONV_VERSION=1.13.1
 
3
LIBICONV_URL=$(GNU)/libiconv/libiconv-$(LIBICONV_VERSION).tar.gz
 
4
 
 
5
PKGS += iconv
 
6
# iconv cannot be detect with pkg-config, but it is mandated by POSIX.
 
7
# Hard-code based on the operating system.
 
8
ifndef HAVE_WIN32
 
9
PKGS_FOUND += iconv
 
10
endif
 
11
 
 
12
$(TARBALLS)/libiconv-$(LIBICONV_VERSION).tar.gz:
 
13
        $(call download,$(LIBICONV_URL))
 
14
 
 
15
.sum-iconv: libiconv-$(LIBICONV_VERSION).tar.gz
 
16
 
 
17
iconv: libiconv-$(LIBICONV_VERSION).tar.gz .sum-iconv
 
18
        $(UNPACK)
 
19
ifdef HAVE_WIN64
 
20
        $(APPLY) $(SRC)/iconv/libiconv-win64.patch
 
21
endif
 
22
ifdef HAVE_WINCE
 
23
        $(APPLY) $(SRC)/iconv/libiconv-wince.patch
 
24
        $(APPLY) $(SRC)/iconv/libiconv-wince-hack.patch
 
25
endif
 
26
        $(MOVE)
 
27
 
 
28
.iconv: iconv
 
29
        cd $< && $(HOSTVARS) ./configure $(HOSTCONF) --disable-nls
 
30
        cd $< && $(MAKE) install
 
31
        touch $@