]> git.sesse.net Git - vlc/blob - debian/rules
s/wxwindows/wxwidgets
[vlc] / debian / rules
1 #!/usr/bin/make -f
2 # debian/rules for the VLC media player - uses debhelper.
3 # $Id$
4 # based on Joey Hess's one.
5
6 # Uncomment this to turn on verbose mode.
7 #export DH_VERBOSE=1
8 include /usr/share/dpatch/dpatch.make
9
10 #
11 # Compilation options
12 #
13
14 CONFIG_FLAGS = --enable-release --prefix=/usr
15 CONFIG_FLAGS += \
16         --disable-gnome \
17         --disable-gtk \
18         --disable-familiar \
19         --disable-fb \
20         --enable-ggi \
21         --enable-sdl \
22         --enable-esd \
23         --disable-qt \
24         --enable-mad \
25         --enable-arts \
26         --enable-alsa \
27         --enable-lirc \
28         --enable-a52 \
29         --enable-aa \
30         --enable-dvbpsi \
31         --enable-xosd \
32         --enable-mozilla \
33         --disable-kde \
34         --enable-mp4 \
35         --enable-dvb \
36         --enable-dv \
37         --disable-satellite \
38         --enable-ogg \
39         --enable-vorbis \
40         --enable-wxwidgets \
41         --with-wx-config=wxgtk-2.4-config \
42         --disable-slp \
43         --enable-flac \
44         --disable-skins \
45         --disable-basic-skins \
46         --enable-skins2 \
47         --enable-freetype \
48         --enable-mkv \
49         --enable-v4l \
50         --enable-pvr \
51         --disable-speex \
52         --enable-caca \
53         --enable-livedotcom \
54         --enable-libmpeg2 \
55         --enable-dts \
56         --enable-fribidi \
57         --enable-cdio \
58         --enable-mod \
59         --enable-theora \
60         --enable-modplug \
61         --enable-dvdnav \
62         --enable-gnutls \
63         --enable-ffmpeg \
64         --enable-ncurses \
65         $(NULL)
66
67 # These ones are currently shipped with VLC
68 CONFIG_FLAGS += --enable-faad --with-faad-tree=extras/faad2
69 CONFIG_FLAGS += --enable-x264 --with-x264-tree=extras/x264
70
71 # Glide and svgalib are only for x86
72 ifeq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386)
73 CONFIG_FLAGS += --enable-glide
74 CONFIG_FLAGS += --enable-svgalib
75 endif
76
77 # Remove --without-dvdcss in non-totalitarian countries
78 CONFIG_FLAGS += --enable-dvd --without-dvdcss
79
80 # A few shortcuts
81 VIDDIR = usr/share/vlc
82 PIXDIR = usr/share/pixmaps
83 GNOMEDIR = usr/share/gnome/apps/Multimedia
84
85 #
86 # Build rules
87 #
88
89 configure: configure-stamp
90 configure-stamp:
91         dh_testdir
92
93         # Touch stuff
94         touch configure.ac
95         touch aclocal.m4
96         touch configure
97         touch config.h.in
98         touch `find . -name Makefile.in`
99
100         # Check that we have an x264 tree in here (can be a symlink)
101         test -d extras/x264
102         if test ! '(' -d CVS -o -d .svn ')'; then \
103           cd extras/x264 \
104           && jam -dx libx264.a; \
105         fi
106
107         # Check that we have an faad2 tree in here (can be a symlink)
108         test -d extras/faad2
109         if test ! '(' -d CVS -o -d .svn ')'; then \
110           cd extras/faad2 \
111           && touch `find . -name configure.in` \
112           && touch `find . -name aclocal.m4` \
113           && touch `find . -name configure` \
114           && touch `find . -name config.h.in` \
115           && touch `find . -name Makefile.in` \
116           && ./configure --disable-shared \
117           && cd libfaad \
118           && $(MAKE); \
119         fi
120
121         # Configure VLC
122         ./configure --mandir=$${prefix}/share/man \
123           --infodir=$${prefix}/share/info $(CONFIG_FLAGS)
124
125         touch configure-stamp
126
127 build: build-stamp
128 build-stamp: patch configure-stamp
129         dh_testdir
130
131         # Build only VLC, with the non-PIC libs
132         $(MAKE) include/vlc_symbols.h
133         cd modules && AM_MAKEFLAGS='plugin=no pic=no' $(MAKE)
134         $(MAKE) vlc
135
136         # Hackety hackety hack
137         if test ! '(' -d CVS -o -d .svn ')'; then \
138           cd extras/x264 \
139           && jam -dx clean \
140           && rm -f Jamfile.pic \
141           && sed 's/^CCFLAGS *=/& -fPIC -DPIC /' <Jamfile >Jamfile.pic \
142           && jam -dx -sJAMFILE=Jamfile.pic libx264.a \
143           && rm -f Jamfile.pic; \
144         fi
145
146         # HACKETY HACKETY HACK
147         if test ! '(' -d CVS -o -d .svn ')'; then \
148           cd extras/faad2/libfaad \
149           && $(MAKE) clean \
150           && $(MAKE) AM_CFLAGS=-fPIC; \
151         fi
152
153         # Build all the rest, with the PIC libs
154         AM_MAKEFLAGS='builtin=no' $(MAKE)
155
156         touch build-stamp
157
158 clean: unpatch
159         dh_testdir
160         dh_testroot
161         rm -f configure-stamp build-stamp
162
163         # Check that we have an x264 tree in here (can be a symlink)
164         test -d extras/x264
165         -if test ! '(' -d CVS -o -d .svn ')'; then \
166           cd extras/x264 && jam -dx clean; \
167         fi
168         # Check that we have an faad2 tree in here (can be a symlink)
169         test -d extras/faad2
170         -if test ! '(' -d CVS -o -d .svn ')'; then \
171           cd extras/faad2 && $(MAKE) distclean; \
172         fi
173
174         # Removed ugly cruft
175         rm -f src/misc/modules_builtin.h
176         rm -f mozilla/vlcintf.xpt mozilla/vlcintf.h
177
178         # Remove spurious autotools stuff
179         rm -f config.log confdefs.h
180
181         -$(MAKE) distclean
182
183         dh_clean
184
185 install: build
186         dh_testdir
187         dh_testroot
188         dh_clean -k
189         dh_installdirs
190
191         DESTDIR=`pwd`/debian/vlc/ $(MAKE) install prefix=/usr
192
193         # Package: vlc
194         mv debian/vlc/$(VIDDIR)/vlc48x48.png debian/vlc/$(PIXDIR)/vlc.png
195         mv debian/vlc/$(VIDDIR)/vlc32x32.xpm debian/vlc/$(VIDDIR)/vlc.xpm
196         cp debian/gvlc.desktop debian/gvlc/$(GNOMEDIR)
197         cp debian/gnome-vlc.desktop debian/gnome-vlc/$(GNOMEDIR)
198
199         #cp doc/fortunes.txt debian/vlc/usr/share/games/fortunes/vlc
200         #strfile doc/fortunes.txt debian/vlc/usr/share/games/fortunes/vlc.dat
201
202         rm -Rf debian/vlc/$(VIDDIR)/skins
203         ln -s vlc.1.gz debian/vlc/usr/share/man/man1/svlc.1.gz
204
205         # Package: libvlc0-dev
206         mv debian/vlc/usr/bin/vlc-config debian/libvlc0-dev/usr/bin/
207         mv debian/vlc/usr/lib/*.a debian/libvlc0-dev/usr/lib/
208         mv debian/vlc/usr/lib/vlc/*.a debian/libvlc0-dev/usr/lib/vlc/
209         mv debian/vlc/usr/include/vlc/*.h debian/libvlc0-dev/usr/include/vlc/
210         rm -Rf debian/vlc/usr/include
211         ln -s vlc debian/libvlc0-dev/usr/share/doc/libvlc0-dev
212
213         # Package: gnome-vlc
214         #mv debian/vlc/usr/bin/gnome-vlc debian/gnome-vlc/usr/bin/
215         ln -s vlc debian/gnome-vlc/usr/share/doc/gnome-vlc
216         #mv debian/vlc/usr/lib/vlc/misc/libgnome_main_plugin.so \
217         #  debian/gnome-vlc/usr/lib/vlc/gui/
218         #mv debian/vlc/usr/lib/vlc/gui/libgnome_plugin.so \
219         #  debian/gnome-vlc/usr/lib/vlc/gui/
220         #ln -s vlc.1.gz debian/gnome-vlc/usr/share/man/man1/gnome-vlc.1.gz
221         #mv debian/vlc/$(VIDDIR)/gnome-vlc32x32.xpm debian/gnome-vlc/$(VIDDIR)/gnome-vlc.xpm
222         #mv debian/vlc/$(VIDDIR)/gnome-vlc48x48.png debian/gnome-vlc/$(PIXDIR)/gnome-vlc.png
223
224         # Package: gvlc
225         #mv debian/vlc/usr/bin/gvlc debian/gvlc/usr/bin/
226         ln -s vlc debian/gvlc/usr/share/doc/gvlc
227         #mv debian/vlc/usr/lib/vlc/misc/libgtk_main_plugin.so \
228         #  debian/gvlc/usr/lib/vlc/gui/
229         #mv debian/vlc/usr/lib/vlc/gui/libgtk_plugin.so \
230         #  debian/gvlc/usr/lib/vlc/gui/
231         #mv debian/vlc/usr/lib/vlc/gui/libfamiliar_plugin.so \
232         #  debian/gvlc/usr/lib/vlc/gui/
233         #ln -s vlc.1.gz debian/gvlc/usr/share/man/man1/gvlc.1.gz
234         #mv debian/vlc/$(VIDDIR)/gvlc32x32.xpm debian/gvlc/$(VIDDIR)/gvlc.xpm
235         #mv debian/vlc/$(VIDDIR)/gvlc48x48.png debian/gvlc/$(PIXDIR)/gvlc.png
236
237         # Package: vlc-plugin-esd
238         ln -s vlc debian/vlc-plugin-esd/usr/share/doc/vlc-plugin-esd
239         mv debian/vlc/usr/lib/vlc/audio_output/libesd_plugin.so \
240           debian/vlc-plugin-esd/usr/lib/vlc/audio_output/
241
242         # Package: vlc-plugin-alsa
243         ln -s vlc debian/vlc-plugin-alsa/usr/share/doc/vlc-plugin-alsa
244         mv debian/vlc/usr/lib/vlc/audio_output/libalsa_plugin.so \
245           debian/vlc-plugin-alsa/usr/lib/vlc/audio_output/
246
247         # Package: vlc-plugin-sdl
248         ln -s vlc debian/vlc-plugin-sdl/usr/share/doc/vlc-plugin-sdl
249         mv debian/vlc/usr/lib/vlc/audio_output/libaout_sdl_plugin.so \
250           debian/vlc-plugin-sdl/usr/lib/vlc/audio_output/
251         mv debian/vlc/usr/lib/vlc/video_output/libvout_sdl_plugin.so \
252           debian/vlc-plugin-sdl/usr/lib/vlc/video_output/
253
254         # Package: vlc-plugin-ggi
255         ln -s vlc debian/vlc-plugin-ggi/usr/share/doc/vlc-plugin-ggi
256         mv debian/vlc/usr/lib/vlc/video_output/libggi_plugin.so \
257           debian/vlc-plugin-ggi/usr/lib/vlc/video_output/
258
259         # Package: vlc-plugin-glide
260 ifeq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386)
261         ln -s vlc debian/vlc-plugin-glide/usr/share/doc/vlc-plugin-glide
262         mv debian/vlc/usr/lib/vlc/video_output/libglide_plugin.so \
263           debian/vlc-plugin-glide/usr/lib/vlc/video_output/
264 endif
265
266         # Package: qvlc
267         #mv debian/vlc/usr/bin/qvlc debian/qvlc/usr/bin/
268         ln -s vlc debian/qvlc/usr/share/doc/qvlc
269         #mv debian/vlc/usr/lib/vlc/gui/libqt_plugin.so \
270         #  debian/qvlc/usr/lib/vlc/gui/
271         #ln -s vlc.1.gz debian/qvlc/usr/share/man/man1/qvlc.1.gz
272         #mv debian/vlc/$(VIDDIR)/qvlc32x32.xpm debian/qvlc/$(VIDDIR)/qvlc.xpm
273         #mv debian/vlc/$(VIDDIR)/qvlc48x48.png debian/qvlc/$(PIXDIR)/qvlc.png
274
275         # Package: vlc-plugin-arts
276         ln -s vlc debian/vlc-plugin-arts/usr/share/doc/vlc-plugin-arts
277         mv debian/vlc/usr/lib/vlc/audio_output/libarts_plugin.so \
278           debian/vlc-plugin-arts/usr/lib/vlc/audio_output/
279
280         # Package: mozilla-plugin-vlc
281         ln -s vlc debian/mozilla-plugin-vlc/usr/share/doc/mozilla-plugin-vlc
282         mv debian/vlc/usr/lib/mozilla debian/mozilla-plugin-vlc/usr/lib
283         # links for firefox
284         mkdir -p debian/mozilla-plugin-vlc/usr/lib/mozilla-firefox/plugins/
285         ln -s ../../mozilla/plugins/libvlcplugin.so debian/mozilla-plugin-vlc/usr/lib/mozilla-firefox/plugins/
286         mkdir -p debian/mozilla-plugin-vlc/usr/lib/mozilla-firefox/components/
287         ln -s ../../mozilla/components/vlcintf.xpt debian/mozilla-plugin-vlc/usr/lib/mozilla-firefox/components/
288
289         # Package: kvlc
290         #mv debian/vlc/usr/bin/kvlc debian/kvlc/usr/bin/
291         ln -s vlc debian/kvlc/usr/share/doc/kvlc
292         #mv debian/vlc/usr/lib/vlc/gui/libkde_plugin.so \
293         #  debian/kvlc/usr/lib/vlc/gui/
294         #mv debian/vlc/$(VIDDIR)/ui.rc debian/kvlc/$(VIDDIR)
295         #ln -s vlc.1.gz debian/kvlc/usr/share/man/man1/kvlc.1.gz
296         #mv debian/vlc/$(VIDDIR)/kvlc32x32.xpm debian/kvlc/$(VIDDIR)/kvlc.xpm
297         #mv debian/vlc/$(VIDDIR)/kvlc48x48.png debian/kvlc/$(PIXDIR)/kvlc.png
298
299         # Package: vlc-plugin-svgalib
300 ifeq ($(shell dpkg-architecture -qDEB_BUILD_GNU_CPU),i386)
301         ln -s vlc debian/vlc-plugin-svgalib/usr/share/doc/vlc-plugin-svgalib
302         mv debian/vlc/usr/lib/vlc/video_output/libsvgalib_plugin.so \
303           debian/vlc-plugin-svgalib/usr/lib/vlc/video_output
304 endif
305
306         # Package: wxvlc
307         mv debian/vlc/usr/bin/wxvlc debian/wxvlc/usr/bin/
308         ln -s vlc debian/wxvlc/usr/share/doc/wxvlc
309         cp debian/vlc/$(VIDDIR)/vlc.xpm debian/wxvlc/$(VIDDIR)/wxvlc.xpm
310         mv debian/vlc/usr/lib/vlc/gui/libwxwidgets_plugin.so \
311           debian/wxvlc/usr/lib/vlc/gui/
312         ln -s vlc.1.gz debian/wxvlc/usr/share/man/man1/wxvlc.1.gz
313
314         # Clean up
315         rm -f debian/vlc/$(VIDDIR)/*.png
316
317         #gzip -9 < doc/vlc.1 >| debian/vlc/usr/share/man/man1/vlc.1.gz
318
319 # Build architecture-independent files here.
320 binary-indep: build install
321 # We have nothing to do by default.
322
323 # Build architecture-dependent files here.
324 binary-arch: build install
325 #       dh_testversion
326         dh_testdir
327         dh_testroot
328 #       dh_installdebconf       
329         dh_installdocs -p vlc
330 #       dh_installexamples
331         dh_installmenu -s
332         dh_installmime -s
333         dh_installman doc/vlc.1 -p vlc
334         dh_installman doc/vlc-config.1 -p libvlc0-dev
335         dh_installchangelogs ChangeLog -p vlc
336         for x in doc/ChangeLog-* ; do cp "doc/ChangeLog-$${x#*-}" "debian/vlc/usr/share/doc/vlc/changelog$${x#*-}" ; done
337         dh_link -s
338         dh_strip -s
339         dh_compress -s
340         dh_fixperms -s
341         dh_makeshlibs -s
342         dh_installdeb -s
343 #       dh_perl
344         dh_shlibdeps -s
345         dh_gencontrol -s
346         dh_md5sums -s
347         dh_builddeb -s
348
349 binary: binary-indep binary-arch
350 .PHONY: build clean binary-indep binary-arch binary install
351