r3821 - in packages/trunk/a7xpg: . debian
Miriam Ruiz
baby-guest at alioth.debian.org
Sat Aug 25 20:35:42 UTC 2007
Author: baby-guest
Date: 2007-08-25 20:35:41 +0000 (Sat, 25 Aug 2007)
New Revision: 3821
Added:
packages/trunk/a7xpg/debian/
packages/trunk/a7xpg/debian/README.Debian
packages/trunk/a7xpg/debian/changelog
packages/trunk/a7xpg/debian/compat
packages/trunk/a7xpg/debian/control
packages/trunk/a7xpg/debian/copyright
packages/trunk/a7xpg/debian/docs
packages/trunk/a7xpg/debian/rules
Log:
[svn-inject] Applying Debian modifications to trunk
Property changes on: packages/trunk/a7xpg/debian
___________________________________________________________________
Name: mergeWithUpstream
+ 1
Added: packages/trunk/a7xpg/debian/README.Debian
===================================================================
--- packages/trunk/a7xpg/debian/README.Debian (rev 0)
+++ packages/trunk/a7xpg/debian/README.Debian 2007-08-25 20:35:41 UTC (rev 3821)
@@ -0,0 +1,6 @@
+a7xpg for Debian
+----------------
+
+<possible notes regarding this package - if none, delete this file>
+
+ -- Miriam Ruiz <little_miry at yahoo.es> Sat, 25 Aug 2007 19:58:40 +0000
Added: packages/trunk/a7xpg/debian/changelog
===================================================================
--- packages/trunk/a7xpg/debian/changelog (rev 0)
+++ packages/trunk/a7xpg/debian/changelog 2007-08-25 20:35:41 UTC (rev 3821)
@@ -0,0 +1,5 @@
+a7xpg (0.11.dfsg1-1) unstable; urgency=low
+
+ * Initial release (Closes: #439595)
+
+ -- Miriam Ruiz <little_miry at yahoo.es> Sat, 25 Aug 2007 19:58:40 +0000
Added: packages/trunk/a7xpg/debian/compat
===================================================================
--- packages/trunk/a7xpg/debian/compat (rev 0)
+++ packages/trunk/a7xpg/debian/compat 2007-08-25 20:35:41 UTC (rev 3821)
@@ -0,0 +1 @@
+5
Added: packages/trunk/a7xpg/debian/control
===================================================================
--- packages/trunk/a7xpg/debian/control (rev 0)
+++ packages/trunk/a7xpg/debian/control 2007-08-25 20:35:41 UTC (rev 3821)
@@ -0,0 +1,13 @@
+Source: a7xpg
+Section: games
+Priority: extra
+Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
+Uploaders: Miriam Ruiz <little_miry at yahoo.es>
+Build-Depends: debhelper (>= 5), gdc
+Standards-Version: 3.7.2
+
+Package: a7xpg
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: <insert up to 60 chars description>
+ <insert long description, indented with spaces>
Added: packages/trunk/a7xpg/debian/copyright
===================================================================
--- packages/trunk/a7xpg/debian/copyright (rev 0)
+++ packages/trunk/a7xpg/debian/copyright 2007-08-25 20:35:41 UTC (rev 3821)
@@ -0,0 +1,40 @@
+This package was debianized by Miriam Ruiz <little_miry at yahoo.es> on
+Sat, 25 Aug 2007 19:58:40 +0000.
+
+It was downloaded from http://www.asahi-net.or.jp/~cs8k-cyu/windows/a7xpg_e.html
+
+Upstream Author:
+
+ Kenta Cho <cs8k-cyu at asahi-net.or.jp>
+
+Copyright:
+
+ Copyright 2003 Kenta Cho
+
+License:
+
+ Redistribution and use in source and binary forms, with or without
+ modification, are permitted provided that the following conditions
+ are met:
+
+ 1. Redistributions of source code must retain the above copyright notice,
+ this list of conditions and the following disclaimer.
+
+ 2. Redistributions in binary form must reproduce the above copyright notice,
+ this list of conditions and the following disclaimer in the documentation
+ and/or other materials provided with the distribution.
+
+ THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
+ INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+ FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
+ THE REGENTS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+ SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
+ PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS;
+ OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
+ WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR
+ OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
+ ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+
+The Debian packaging is (C) 2007, Miriam Ruiz <little_miry at yahoo.es> and
+is licensed under the GPL, see `/usr/share/common-licenses/GPL'.
Added: packages/trunk/a7xpg/debian/docs
===================================================================
--- packages/trunk/a7xpg/debian/docs (rev 0)
+++ packages/trunk/a7xpg/debian/docs 2007-08-25 20:35:41 UTC (rev 3821)
@@ -0,0 +1,4 @@
+readme_e.txt
+readme_e.txt
+readme.txt
+readme.txt
Added: packages/trunk/a7xpg/debian/rules
===================================================================
--- packages/trunk/a7xpg/debian/rules (rev 0)
+++ packages/trunk/a7xpg/debian/rules 2007-08-25 20:35:41 UTC (rev 3821)
@@ -0,0 +1,94 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+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 $@
+
+build: build-stamp
+build-stamp: configure-stamp
+ dh_testdir
+ # Add here commands to compile the package.
+ $(MAKE)
+ #docbook-to-man debian/a7xpg.sgml > a7xpg.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/a7xpg.
+ $(MAKE) DESTDIR=$(CURDIR)/debian/a7xpg 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
+
+get-orig-source:
+ dh_testdir
+ dh_testroot
+ wget http://www.asahi-net.or.jp/~cs8k-cyu/windows/a7xpg0_11.zip
+ unzip a7xpg0_11.zip
+ rm a7xpg/*.dll
+ rm a7xpg/*.exe
+ rm a7xpg/lib/*.lib
+ rm a7xpg/resource/*.RES
+ tar cvfz ../a7xpg_0.11.dfsg1.orig.tar.gz a7xpg
+ rm -rf a7xpg.zip a7xpg
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install configure get-orig-source
Property changes on: packages/trunk/a7xpg/debian/rules
___________________________________________________________________
Name: svn:executable
+ *
More information about the Pkg-games-commits
mailing list