--- xvid4conf-1.12.orig/debian/changelog +++ xvid4conf-1.12/debian/changelog @@ -0,0 +1,18 @@ +xvid4conf (1.12-0.1) unstable; urgency=low + + * Rebuild for amd64. + + -- Christian Marillat Sun, 14 May 2006 14:43:21 +0200 + +xvid4conf (1.12-0.0) unstable; urgency=low + + * New upstream release. + + -- Christian Marillat Sat, 7 Feb 2004 16:53:56 +0100 + +xvid4conf (1.9-0.0) unstable; urgency=low + + * Initial Release. + + -- Christian Marillat Sun, 25 Jan 2004 14:16:20 +0100 + --- xvid4conf-1.12.orig/debian/compat +++ xvid4conf-1.12/debian/compat @@ -0,0 +1 @@ +4 --- xvid4conf-1.12.orig/debian/copyright +++ xvid4conf-1.12/debian/copyright @@ -0,0 +1,13 @@ +This package was debianized by Christian Marillat on +Sun, 25 Jan 2004 14:16:20 +0100. + +It was downloaded from http://zebra.fh-weingarten.de/~transcode/xvid4conf/ + +Upstream Author: Tilmann Bitterberg + +Copyright: 2003, 2004 Tilmann Bitterberg + + You should have received a copy of the GNU General Public License with the + Debian GNU/Linux distribution in file /usr/share/common-licenses/GPL; if + not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth + Floor, Boston, MA 02110-1301, USA. --- xvid4conf-1.12.orig/debian/control +++ xvid4conf-1.12/debian/control @@ -0,0 +1,15 @@ +Source: xvid4conf +Section: graphics +Priority: optional +Maintainer: Christian Marillat +Standards-Version: 3.7.2 +Build-Depends: debhelper (>= 4.0.0), libgtk2.0-dev + +Package: xvid4conf +Architecture: any +Depends: ${shlibs:Depends} +Description: creates XviD configuration files + This tool creates XviD configuration files. The generated configuration + file is meant to be read by transcodes xvid4 export module. This module + (and so the configuration file) is intended to be used with XviD 1.0 + (dev-api-4) --- xvid4conf-1.12.orig/debian/rules +++ xvid4conf-1.12/debian/rules @@ -0,0 +1,84 @@ +#!/usr/bin/make -f + +#export DH_VERBOSE=1 + +DEB_HOST_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) +DEB_BUILD_GNU_TYPE ?= $(shell dpkg-architecture -qDEB_BUILD_GNU_TYPE) + +CFLAGS = -Wall -g + +ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS))) + CFLAGS += -O0 +else + CFLAGS += -O2 +endif + +config.status: configure + dh_testdir + + CFLAGS="$(CFLAGS)" ./configure --host=$(DEB_HOST_GNU_TYPE) \ + --build=$(DEB_BUILD_GNU_TYPE) --prefix=/usr \ + --mandir=\$${prefix}/share/man --infodir=\$${prefix}/share/info + +build: build-stamp +build-stamp: config.status + dh_testdir + + $(MAKE) -j4 + + touch build-stamp + +clean: + dh_testdir + dh_testroot + rm -f build-stamp + + -$(MAKE) distclean + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(CURDIR)/debian/xvid4conf + +# Build architecture-independent files here. +binary-indep: build install +# We have nothing to do by default. + +# Build architecture-dependent files here. +binary-arch: build install + dh_testdir + dh_testroot + dh_installchangelogs ChangeLog + dh_installdocs + dh_installexamples +# dh_install +# dh_installmenu +# dh_installdebconf +# dh_installlogrotate +# dh_installemacsen +# dh_installpam +# dh_installmime +# dh_installinit +# dh_installcron +# dh_installinfo + dh_installman + dh_link + dh_strip + dh_compress + dh_fixperms +# dh_perl +# dh_python +# dh_makeshlibs + dh_installdeb + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +binary: binary-indep binary-arch +.PHONY: build clean binary-indep binary-arch binary install