r6612 - in packages/trunk/gimp-dds: . debian

Vincent Fourmond fourmond at alioth.debian.org
Thu Apr 17 18:20:30 UTC 2008


Author: fourmond
Date: 2008-04-17 18:20:30 +0000 (Thu, 17 Apr 2008)
New Revision: 6612

Added:
   packages/trunk/gimp-dds/debian/
   packages/trunk/gimp-dds/debian/changelog
   packages/trunk/gimp-dds/debian/compat
   packages/trunk/gimp-dds/debian/control
   packages/trunk/gimp-dds/debian/copyright
   packages/trunk/gimp-dds/debian/rules
   packages/trunk/gimp-dds/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: packages/trunk/gimp-dds/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: packages/trunk/gimp-dds/debian/changelog
===================================================================
--- packages/trunk/gimp-dds/debian/changelog	                        (rev 0)
+++ packages/trunk/gimp-dds/debian/changelog	2008-04-17 18:20:30 UTC (rev 6612)
@@ -0,0 +1,6 @@
+gimp-dds (2.0.3-1) unstable; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Vincent Fourmond <fourmond at debian.org>  Thu, 17 Apr 2008 20:13:37 +0200
+

Added: packages/trunk/gimp-dds/debian/compat
===================================================================
--- packages/trunk/gimp-dds/debian/compat	                        (rev 0)
+++ packages/trunk/gimp-dds/debian/compat	2008-04-17 18:20:30 UTC (rev 6612)
@@ -0,0 +1 @@
+5

Added: packages/trunk/gimp-dds/debian/control
===================================================================
--- packages/trunk/gimp-dds/debian/control	                        (rev 0)
+++ packages/trunk/gimp-dds/debian/control	2008-04-17 18:20:30 UTC (rev 6612)
@@ -0,0 +1,12 @@
+Source: gimp-dds
+Section: unknown
+Priority: extra
+Maintainer: Vincent Fourmond <fourmond at debian.org>
+Build-Depends: debhelper (>= 5)
+Standards-Version: 3.7.2
+
+Package: gimp-dds
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>

Added: packages/trunk/gimp-dds/debian/copyright
===================================================================
--- packages/trunk/gimp-dds/debian/copyright	                        (rev 0)
+++ packages/trunk/gimp-dds/debian/copyright	2008-04-17 18:20:30 UTC (rev 6612)
@@ -0,0 +1,24 @@
+This package was debianized by Vincent Fourmond <fourmond at debian.org> on
+Thu, 17 Apr 2008 20:13:37 +0200.
+
+It was downloaded from <url://example.com>
+
+Upstream Author(s): 
+
+    <put author's name and email here>
+    <likewise for another author>
+
+Copyright: 
+
+    <Copyright (C) YYYY Name OfAuthor>
+    <likewise for another author>
+
+License:
+
+    <Put the license of the package here indented by 4 spaces>
+
+The Debian packaging is (C) 2008, Vincent Fourmond <fourmond at debian.org> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
+
+# Please also look if there are files or directories which have a
+# different copyright/license attached and list them here.

Added: packages/trunk/gimp-dds/debian/rules
===================================================================
--- packages/trunk/gimp-dds/debian/rules	                        (rev 0)
+++ packages/trunk/gimp-dds/debian/rules	2008-04-17 18:20:30 UTC (rev 6612)
@@ -0,0 +1,90 @@
+#!/usr/bin/make -f
+# -*- makefile -*-
+# Sample debian/rules that uses debhelper.
+# This file was originally written by Joey Hess and Craig Small.
+# As a special exception, when this file is copied by dh-make into a
+# dh-make output file, you may use that output file without restriction.
+# This special exception was added by Craig Small in version 0.37 of dh-make.
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+
+
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	$(MAKE)
+	#docbook-to-man debian/gimp-dds.sgml > gimp-dds.1
+
+	touch $@
+
+clean:
+	dh_testdir
+	dh_testroot
+	rm -f build-stamp configure-stamp
+
+	# Add here commands to clean up after the build process.
+	$(MAKE) clean
+
+	dh_clean 
+
+install: build
+	dh_testdir
+	dh_testroot
+	dh_clean -k 
+	dh_installdirs
+
+	# Add here commands to install the package into debian/gimp-dds.
+	$(MAKE) DESTDIR=$(CURDIR)/debian/gimp-dds install
+
+
+# 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 
+	dh_installdocs
+	dh_installexamples
+#	dh_install
+#	dh_installmenu
+#	dh_installdebconf	
+#	dh_installlogrotate
+#	dh_installemacsen
+#	dh_installpam
+#	dh_installmime
+#	dh_python
+#	dh_installinit
+#	dh_installcron
+#	dh_installinfo
+	dh_installman
+	dh_link
+	dh_strip
+	dh_compress
+	dh_fixperms
+#	dh_perl
+#	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 configure


Property changes on: packages/trunk/gimp-dds/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: packages/trunk/gimp-dds/debian/watch
===================================================================
--- packages/trunk/gimp-dds/debian/watch	                        (rev 0)
+++ packages/trunk/gimp-dds/debian/watch	2008-04-17 18:20:30 UTC (rev 6612)
@@ -0,0 +1,22 @@
+# Example watch control file for uscan
+# Rename this file to "watch" and then you can run the "uscan" command
+# to check for upstream updates and more.
+# See uscan(1) for format
+
+# Compulsory line, this is a version 3 file
+version=3
+
+# Uncomment to examine a Webpage 
+# <Webpage URL> <string match>
+#http://www.example.com/downloads.php gimp-dds-(.*)\.tar\.gz
+
+# Uncomment to examine a Webserver directory
+#http://www.example.com/pub/gimp-dds-(.*)\.tar\.gz
+
+# Uncommment to examine a FTP server
+#ftp://ftp.example.com/pub/gimp-dds-(.*)\.tar\.gz debian uupdate
+
+# Uncomment to find new files on sourceforge, for debscripts >= 2.9
+# http://sf.net/gimp-dds/gimp-dds-(.*)\.tar\.gz
+
+




More information about the Pkg-games-commits mailing list