[Demudi-commits] r1218 - in create/trunk: . debian

Free Ekanayaka free-guest at alioth.debian.org
Thu Apr 19 07:19:49 UTC 2007


Author: free-guest
Date: 2007-04-19 07:19:48 +0000 (Thu, 19 Apr 2007)
New Revision: 1218

Added:
   create/trunk/debian/
   create/trunk/debian/changelog
   create/trunk/debian/compat
   create/trunk/debian/control
   create/trunk/debian/copyright
   create/trunk/debian/dirs
   create/trunk/debian/menu
   create/trunk/debian/rules
   create/trunk/debian/watch
Log:
[svn-inject] Applying Debian modifications to trunk


Property changes on: create/trunk/debian
___________________________________________________________________
Name: mergeWithUpstream
   + 1

Added: create/trunk/debian/changelog
===================================================================
--- create/trunk/debian/changelog	2007-04-19 07:19:20 UTC (rev 1217)
+++ create/trunk/debian/changelog	2007-04-19 07:19:48 UTC (rev 1218)
@@ -0,0 +1,6 @@
+create (0.1.3-1) UNRELEASED; urgency=low
+
+  * Initial release (Closes: #nnnn)  <nnnn is the bug number of your ITP>
+
+ -- Free Ekanayaka <freee at debian.org>  Thu, 19 Apr 2007 08:37:50 +0200
+

Added: create/trunk/debian/compat
===================================================================
--- create/trunk/debian/compat	2007-04-19 07:19:20 UTC (rev 1217)
+++ create/trunk/debian/compat	2007-04-19 07:19:48 UTC (rev 1218)
@@ -0,0 +1 @@
+5

Added: create/trunk/debian/control
===================================================================
--- create/trunk/debian/control	2007-04-19 07:19:20 UTC (rev 1217)
+++ create/trunk/debian/control	2007-04-19 07:19:48 UTC (rev 1218)
@@ -0,0 +1,15 @@
+Source: create
+Section: sound
+Priority: extra
+Maintainer: Debian Multimedia Team <debian-multimedia at lists.debian.org>
+Uploaders: Free Ekanayaka <freee at debian.org>
+Build-Depends: debhelper (>= 5), dpatch, scons
+Standards-Version: 3.7.2
+
+Package: create
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: shared resources for use by creative applications
+ The Create Project is produces shared resources for use by creative
+ applications such as Blender, CinePaint, the GIMP, Inkscape, Scribus,
+ Audacity and the Open Clip Art Library.

Added: create/trunk/debian/copyright
===================================================================
--- create/trunk/debian/copyright	2007-04-19 07:19:20 UTC (rev 1217)
+++ create/trunk/debian/copyright	2007-04-19 07:19:48 UTC (rev 1218)
@@ -0,0 +1,30 @@
+This package was debianized by Free Ekanayaka <freee at debian.org> on
+Thu, 19 Apr 2007 08:37:50 +0200.
+
+It was downloaded from http://create.freedesktop.org/
+
+Upstream Author: Jon Phillips
+
+Copyright: 2005-2007, Jon Phillips
+
+License:
+
+   This package 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 package 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.
+
+   You should have received a copy of the GNU General Public License
+   along with this package; if not, write to the Free Software
+   Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
+
+On Debian systems, the complete text of the GNU General
+Public License can be found in `/usr/share/common-licenses/GPL'.
+
+The Debian packaging is (C) 2007, Free Ekanayaka <freee at debian.org> and
+is licensed under the GPL, see above.

Added: create/trunk/debian/dirs
===================================================================
--- create/trunk/debian/dirs	2007-04-19 07:19:20 UTC (rev 1217)
+++ create/trunk/debian/dirs	2007-04-19 07:19:48 UTC (rev 1218)
@@ -0,0 +1 @@
+usr/

Added: create/trunk/debian/menu
===================================================================
--- create/trunk/debian/menu	2007-04-19 07:19:20 UTC (rev 1217)
+++ create/trunk/debian/menu	2007-04-19 07:19:48 UTC (rev 1218)
@@ -0,0 +1,2 @@
+?package(create):needs="X11" section="Apps/Sound\
+  title="create" command="/usr/bin/create"

Added: create/trunk/debian/rules
===================================================================
--- create/trunk/debian/rules	2007-04-19 07:19:20 UTC (rev 1217)
+++ create/trunk/debian/rules	2007-04-19 07:19:48 UTC (rev 1218)
@@ -0,0 +1,97 @@
+#!/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
+
+include /usr/share/dpatch/dpatch.make
+
+
+CFLAGS = -Wall -g
+
+ifneq (,$(findstring noopt,$(DEB_BUILD_OPTIONS)))
+	CFLAGS += -O0
+else
+	CFLAGS += -O2
+endif
+
+configure: configure-stamp
+configure-stamp:
+	dh_testdir
+	# Add here commands to configure the package.
+
+	touch configure-stamp
+
+
+build: build-stamp
+
+build-stamp: patch-stamp configure-stamp 
+	dh_testdir
+
+	# Add here commands to compile the package.
+	#$(MAKE)
+	#docbook-to-man debian/create.sgml > create.1
+
+	touch $@
+
+clean: unpatch
+	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/create.
+	scons -Q install PREFIX=$(CURDIR)/debian/create/usr
+
+# 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: create/trunk/debian/rules
___________________________________________________________________
Name: svn:executable
   + *

Added: create/trunk/debian/watch
===================================================================
--- create/trunk/debian/watch	2007-04-19 07:19:20 UTC (rev 1217)
+++ create/trunk/debian/watch	2007-04-19 07:19:48 UTC (rev 1218)
@@ -0,0 +1,3 @@
+# Site		Directory	Pattern		Version	Script
+version=3
+http://create.freedesktop.org/releases/create/create-(.*)\.tar\.bz2	debian	uupdate




More information about the Demudi-commits mailing list