--- movixmaker-2-0.8.4.orig/debian/compat +++ movixmaker-2-0.8.4/debian/compat @@ -0,0 +1 @@ +4 --- movixmaker-2-0.8.4.orig/debian/postinst +++ movixmaker-2-0.8.4/debian/postinst @@ -0,0 +1,9 @@ +#!/bin/sh + +set -e + +. /usr/share/debconf/confmodule + +if [ "$1" = "configure" ] && [ -x /usr/bin/update-menus ]; then update-menus ; fi + +#DEBHELPER# --- movixmaker-2-0.8.4.orig/debian/control +++ movixmaker-2-0.8.4/debian/control @@ -0,0 +1,19 @@ +Source: movixmaker-2 +Section: utils +Priority: extra +Maintainer: Pascal Giard +Build-Depends: debhelper (>> 4.0.0) +Standards-Version: 3.7.2.2 + +Package: movixmaker-2 +Architecture: all +Depends: ${perl:Depends}, libconfig-inifiles-perl, genisoimage, debconf | debconf-2.0 +Recommends: libgtk2-perl (>= 1.020), libgnome2-perl, libgtk2-gladexml-perl, libgnome2-vfs-perl +Description: Utility to create customized eMoviX/MoviX/MoviX² CD images + MoviXMaker-2 is a simple GUI or command line utility which purpose is to + create customized disk images of eMoviX, MoviX or MoviX². + . + eMoviX, MoviX and MoviX² are tiny GNU/Linux distributions dedicated to + multimedia playback (e.g. movies, music and slideshows). + . + You can visit [e]MoviX[²] website at : http://movix.sf.net/ --- movixmaker-2-0.8.4.orig/debian/changelog +++ movixmaker-2-0.8.4/debian/changelog @@ -0,0 +1,97 @@ +movixmaker-2 (0.8.4-2) unstable; urgency=low + + * [debian/control]: Depend on genisoimage, really fix #439367. + + -- Pascal Giard Sat, 08 Sep 2007 09:54:41 -0400 + +movixmaker-2 (0.8.4-1) unstable; urgency=low + + * New upstream release (closes: #439367). + * [debian/movixmaker-2.menu]: Apps becomes Applications. + * [debian/rules]: Fixed debian-rules-ignores-make-clean-error. + + -- Pascal Giard Sat, 08 Sep 2007 09:17:53 -0400 + +movixmaker-2 (0.8.3-4) unstable; urgency=low + + * [debian/copyright]: Fixed download url for uupdate. + * [debian/control]: Added debconf-2.0 as an alternative (closes: #408259). + + -- Pascal Giard Fri, 02 Feb 2007 01:11:28 -0500 + +movixmaker-2 (0.8.3-3) unstable; urgency=low + + * [debian/control]: Added depend on debconf (closes: #408259). + + -- Pascal Giard Wed, 24 Jan 2007 23:53:47 -0500 + +movixmaker-2 (0.8.3-2) unstable; urgency=low + + * [debian/rules]: Added binary-arch target (closes: #395622). + * [debian/control]: + - Updated maintainer email. + - Bumped Standards-Version to 3.7.2.2, no changes required. + - Fix lintian error, build depend on debhelper is arch dependant. + + -- Pascal Giard Tue, 14 Nov 2006 00:01:34 -0500 + +movixmaker-2 (0.8.3-1) unstable; urgency=low + + * New upstream release (closes: bug#275346). + * Updating the debian menus at postinst. + + -- Pascal Giard Sat, 09 Oct 2004 03:22:08 -0400 + +movixmaker-2 (0.8.2.cvs20040826-1) unstable; urgency=low + + * New release based on today's CVS snapshot. + + -- Pascal Giard Wed, 26 Aug 2004 08:12:36 -0400 + +movixmaker-2 (0.8.1.1-1) unstable; urgency=low + + * New upstream release + * debian/control: changed encoding to UTF-8. + + -- Pascal Giard Thu, 29 Jul 2004 14:57:07 -0400 + +movixmaker-2 (0.8.0-3) unstable; urgency=low + + * Reverted CVS mess. + * debian/control: put movixmaker-2 in "extra". + * debian/rules: all commands in binary-arch moved into binary-indep. + + -- Pascal Giard Sat, 22 May 2004 15:18:59 -0400 + +movixmaker-2 (0.8.0-2) unstable; urgency=low + + * Bad control file, updated. + + -- Pascal Giard Wed, 19 May 2004 20:52:03 -0400 + +movixmaker-2 (0.8.0-1) unstable; urgency=low + + * New upstream release + + -- Pascal Giard Wed, 19 May 2004 20:20:30 -0400 + +movixmaker-2 (0.6.3-1) unstable; urgency=low + + * New upstream version. + - Moved some dependancies to recommendations. + - Description update. + * Added missing dependency on mkisofs. + + -- Pascal Giard Mon, 12 Apr 2004 22:10:04 -0400 + +movixmaker-2 (0.6.2-2) unstable; urgency=low + + * Added missing libgnome2-perl dependancy (closes: bug#239998). + + -- Pascal Giard Thu, 25 Mar 2004 22:40:29 -0500 + +movixmaker-2 (0.6.2-1) unstable; urgency=low + + * Initial release (closes: bug#235565). + + -- Wolfgang Sourdeau Mon, 8 Mar 2004 02:18:18 -0500 --- movixmaker-2-0.8.4.orig/debian/movixmaker-2.docs +++ movixmaker-2-0.8.4/debian/movixmaker-2.docs @@ -0,0 +1,3 @@ +README +TODO +NEWS --- movixmaker-2-0.8.4.orig/debian/rules +++ movixmaker-2-0.8.4/debian/rules @@ -0,0 +1,52 @@ +#!/usr/bin/make -f + +# Uncomment this to turn on verbose mode. +#export DH_VERBOSE=1 + +DEBIAN_DIR = $(shell pwd)/debian + +build: build-stamp +build-stamp: + dh_testdir + ./configure --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man + touch build-stamp + +clean: + dh_testdir + dh_testroot + + [ ! -f Makefile ] || $(MAKE) distclean + -rm -f build-stamp + + dh_clean + +install: build + dh_testdir + dh_testroot + dh_clean -k + dh_installdirs + + $(MAKE) install DESTDIR=$(DEBIAN_DIR)/movixmaker-2 + +# Build architecture-independent files here. +binary-indep: build install + dh_testdir + dh_testroot + dh_installdocs + dh_installchangelogs + dh_installmenu + dh_compress + dh_fixperms + dh_installdeb + dh_perl + dh_shlibdeps + dh_gencontrol + dh_md5sums + dh_builddeb + +# This target is required by section 4.9 of the Debian policy +binary-arch: build-indep + +binary: binary-indep +.PHONY: build clean binary-indep binary-arch binary install configure + --- movixmaker-2-0.8.4.orig/debian/copyright +++ movixmaker-2-0.8.4/debian/copyright @@ -0,0 +1,23 @@ +This package was debianized by Pascal Giard +on Sat Aug 9 22:09:05 CDT 2003 + +It was downloaded from http://sv.nongnu.org/download/movixmaker/ + +Upstream author: Pascal Giard + +Copyright notice: + +MoviXMaker-2 is Copyright (C) 2003, 2004 Pascal Giard + +This program is free software; you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation; either version 2 of the License, or +(at your option) any later version. + +This program is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +On Debian GNU/Linux systems, the full text of the GNU General Public +License can be found in the file /usr/share/common-licenses/GPL. --- movixmaker-2-0.8.4.orig/debian/movixmaker-2.menu +++ movixmaker-2-0.8.4/debian/movixmaker-2.menu @@ -0,0 +1,6 @@ +?package(movixmaker-2):needs="x11" \ + section="Applications/Tools" \ + title="MoviXMaker-2" \ + longtitle="MoviXMaker-2, the [e]MoviX[2] customized disk image creator" \ + description="MoviXMaker-2 allows you to create customized disk images of all three MoviX flavors." \ + command="/usr/bin/movixmaker-2"