2001-02-21 22:32:57 +00:00
|
|
|
#!/usr/bin/make -f
|
|
|
|
|
2002-10-03 03:02:08 +00:00
|
|
|
version=0.4.1
|
2002-09-20 03:35:46 +00:00
|
|
|
|
2001-02-21 22:32:57 +00:00
|
|
|
#export DH_VERBOSE=1
|
2001-03-22 16:05:17 +00:00
|
|
|
export DH_COMPAT=3
|
2001-02-21 22:32:57 +00:00
|
|
|
export DH_OPTIONS
|
|
|
|
|
2001-12-12 03:18:08 +00:00
|
|
|
export DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE)
|
|
|
|
export DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE)
|
|
|
|
|
2002-03-21 08:21:40 +00:00
|
|
|
ifeq ($(DEB_BUILD_GNU_TYPE), $(DEB_HOST_GNU_TYPE))
|
|
|
|
confflags += --build $(DEB_HOST_GNU_TYPE)
|
|
|
|
else
|
|
|
|
confflags += --build $(DEB_BUILD_GNU_TYPE) --host $(DEB_HOST_GNU_TYPE)
|
|
|
|
endif
|
|
|
|
|
2002-10-03 03:02:08 +00:00
|
|
|
debian/control: debian/rules debian/control.in
|
2002-09-20 03:35:46 +00:00
|
|
|
sed 's/@VERSION@/$(version)/g' debian/control.in >debian/control
|
2002-10-03 03:02:08 +00:00
|
|
|
|
|
|
|
debian/libgstreamer$(version).files: debian/control.in debian/libgstreamerVERSION.files
|
|
|
|
cp -f debian/libgstreamerVERSION.files debian/libgstreamer$(version).files
|
|
|
|
|
|
|
|
maint: debian/control debian/libgstreamer$(version).files
|
2002-09-20 03:35:46 +00:00
|
|
|
|
2001-02-21 22:32:57 +00:00
|
|
|
configure: configure-stamp
|
|
|
|
configure-stamp:
|
|
|
|
dh_testdir
|
2002-01-12 01:31:57 +00:00
|
|
|
|
2001-02-21 22:32:57 +00:00
|
|
|
# Add here commands to configure the package.
|
2001-02-24 21:07:23 +00:00
|
|
|
./configure \
|
2002-03-21 08:21:40 +00:00
|
|
|
$(confflags) \
|
2001-02-24 21:07:23 +00:00
|
|
|
--prefix=/usr \
|
|
|
|
--mandir=\$${prefix}/share/man \
|
|
|
|
--infodir=\$${prefix}/share/info \
|
2002-01-12 01:31:57 +00:00
|
|
|
--with-html-dir=\$${prefix}/share/doc/gstreamer-doc \
|
2001-07-20 06:52:18 +00:00
|
|
|
--sysconfdir=/etc \
|
2001-02-24 21:07:23 +00:00
|
|
|
--with-configdir=/etc/gstreamer \
|
2002-11-28 13:29:52 +00:00
|
|
|
--localstatedir=/var \
|
|
|
|
--with-cachedir=/var/cache/gstreamer \
|
2001-07-20 06:52:18 +00:00
|
|
|
--disable-plugin-builddir \
|
2001-06-06 19:23:21 +00:00
|
|
|
--disable-tests \
|
|
|
|
--disable-examples \
|
2002-01-12 01:31:57 +00:00
|
|
|
--enable-docs-build \
|
2001-09-01 01:13:41 +00:00
|
|
|
--enable-DEBUG \
|
|
|
|
--enable-debug
|
2001-02-21 22:32:57 +00:00
|
|
|
|
|
|
|
touch configure-stamp
|
|
|
|
|
|
|
|
build: configure-stamp build-stamp
|
|
|
|
build-stamp:
|
|
|
|
dh_testdir
|
|
|
|
|
|
|
|
$(MAKE)
|
|
|
|
|
|
|
|
touch build-stamp
|
|
|
|
|
|
|
|
clean:
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
rm -f build-stamp configure-stamp
|
|
|
|
|
2001-09-01 01:13:41 +00:00
|
|
|
# why does distclean not get the docs? who knows?
|
|
|
|
-(cd docs; $(MAKE) clean)
|
2001-02-21 22:32:57 +00:00
|
|
|
-$(MAKE) distclean
|
|
|
|
|
|
|
|
dh_clean
|
|
|
|
|
|
|
|
install: DH_OPTIONS=
|
|
|
|
install: build
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
|
|
|
dh_clean -k
|
|
|
|
dh_installdirs
|
|
|
|
|
|
|
|
# Add here commands to install the package into debian/gstreamer.
|
2002-01-07 22:05:17 +00:00
|
|
|
$(MAKE) prefix=$(CURDIR)/debian/gstreamer/usr install
|
|
|
|
|
|
|
|
# move around the doc dirs
|
2002-01-12 01:31:57 +00:00
|
|
|
mkdir -p debian/gstreamer/usr/share/doc/gstreamer-doc
|
2002-10-03 03:02:08 +00:00
|
|
|
-cp -r docs/fwg/gst-plugin-writers-guide \
|
2002-01-12 01:31:57 +00:00
|
|
|
docs/manual/gstreamer-manual \
|
|
|
|
debian/gstreamer/usr/share/doc/gstreamer-doc
|
2002-08-09 09:20:58 +00:00
|
|
|
|
|
|
|
# devhelp files not installed by default
|
|
|
|
mkdir -p debian/gstreamer/usr/share/devhelp/specs
|
|
|
|
-cp docs/devhelp/*.devhelp debian/gstreamer/usr/share/devhelp/specs
|
|
|
|
|
2002-04-15 09:32:43 +00:00
|
|
|
# -doc lintian overrides
|
|
|
|
mkdir -p debian/gstreamer-doc/usr/share/lintian/overrides/
|
|
|
|
cp -a debian/gstreamer-doc.lintian debian/gstreamer-doc/usr/share/lintian/overrides/gstreamer-doc
|
2001-02-21 22:32:57 +00:00
|
|
|
|
|
|
|
dh_movefiles --sourcedir=debian/gstreamer
|
|
|
|
|
|
|
|
# Build architecture-independent files here.
|
|
|
|
# Pass -i to all debhelper commands in this target to reduce clutter.
|
|
|
|
binary-indep: DH_OPTIONS=-i
|
|
|
|
binary-indep: build install
|
|
|
|
# Need this version of debhelper for DH_OPTIONS to work.
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2002-01-07 22:05:17 +00:00
|
|
|
dh_installdocs -A debian/README.Debian
|
2001-02-21 22:32:57 +00:00
|
|
|
dh_installexamples
|
|
|
|
dh_installmenu
|
2001-03-22 16:05:17 +00:00
|
|
|
dh_installman
|
2002-01-07 22:05:17 +00:00
|
|
|
dh_installchangelogs
|
2001-02-21 22:32:57 +00:00
|
|
|
dh_strip
|
2002-08-09 09:20:58 +00:00
|
|
|
dh_link
|
2001-02-21 22:32:57 +00:00
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
2001-07-20 06:52:18 +00:00
|
|
|
dh_installdeb
|
2001-02-21 22:32:57 +00:00
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
|
|
|
|
|
|
|
# Build architecture-dependent files here.
|
|
|
|
# Pass -a to all debhelper commands in this target to reduce clutter.
|
|
|
|
binary-arch: DH_OPTIONS=-a
|
2002-01-07 23:34:32 +00:00
|
|
|
binary-arch: build install
|
2001-02-21 22:32:57 +00:00
|
|
|
# Need this version of debhelper for DH_OPTIONS to work.
|
|
|
|
dh_testdir
|
|
|
|
dh_testroot
|
2002-01-07 22:05:17 +00:00
|
|
|
dh_installdocs -A debian/README.Debian
|
2001-02-21 22:32:57 +00:00
|
|
|
dh_installexamples
|
|
|
|
dh_installmenu
|
2001-03-22 16:05:17 +00:00
|
|
|
dh_installman
|
2002-01-07 22:05:17 +00:00
|
|
|
dh_installchangelogs
|
2001-02-21 22:32:57 +00:00
|
|
|
dh_strip
|
|
|
|
dh_compress
|
|
|
|
dh_fixperms
|
|
|
|
dh_makeshlibs
|
2001-07-20 06:52:18 +00:00
|
|
|
dh_installdeb
|
2002-10-03 03:02:08 +00:00
|
|
|
dh_shlibdeps -l`pwd`/debian/libgstreamer$(version)/usr/lib:`pwd`/debian/gstreamer-core-libs/usr/lib
|
2001-02-21 22:32:57 +00:00
|
|
|
dh_gencontrol
|
|
|
|
dh_md5sums
|
|
|
|
dh_builddeb
|
|
|
|
|
|
|
|
binary: binary-indep binary-arch
|
|
|
|
.PHONY: build clean binary-indep binary-arch binary install configure
|