This is an automated email from the git hooks/post-receive script.

roam-guest pushed a commit to branch master
in repository fenix.

commit 5b1e871867498507ab2733e08bb81f4d49af48e0
Author: Miriam Ruiz <mir...@debian.org>
Date:   Mon Jun 4 21:19:12 2007 +0000

    [svn-inject] Applying Debian modifications to trunk
---
 debian/changelog                 |  6 +++
 debian/compat                    |  1 +
 debian/control                   | 30 ++++++++++++++
 debian/copyright                 | 37 +++++++++++++++++
 debian/fenix0.92-runtime.install |  1 +
 debian/fenix0.92.docs            |  3 ++
 debian/fenix0.92.install         |  3 ++
 debian/rules                     | 87 ++++++++++++++++++++++++++++++++++++++++
 8 files changed, 168 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..a194dde
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,6 @@
+fenix0.92 (0.92a-1) unstable; urgency=low
+
+  * Initial release (Closes: #427558)
+
+ -- Miriam Ruiz <little_m...@yahoo.es>  Mon, 04 Jun 2007 17:46:25 +0000
+
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..7ed6ff8
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+5
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..dd35a0b
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,30 @@
+Source: fenix0.92
+Section: devel
+Priority: extra
+Maintainer: Miriam Ruiz <little_m...@yahoo.es>
+Build-Depends: dpkg-dev (>= 1.13.19), debhelper (>= 5), autotools-dev, 
libsdl1.2-dev, libsdl-mixer1.2-dev, zlib1g-dev, libungif4-dev, libpng12-dev, 
libsmpeg-dev
+Standards-Version: 3.7.2
+
+Package: fenix0.92-runtime
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}
+Description: runtime environment for executing 2D games made with fenix
+ Fenix is an interpreted script programming language, especially designed to
+ developing and running 2D games. It has a full graphic library, sound engine
+ and full featured 2D game engine, making game development extremely easy.
+ .
+ This package contains the interpreter needed to run games developed in fenix.
+ .
+  Homepage: http://fenix.divsite.net/
+
+Package: fenix0.92
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, fenix0.92-runtime (= 
${binary:Version})
+Description: development environment for making 2D games
+ Fenix is an interpreted script programming language, especially designed to
+ developing and running 2D games. It has a full graphic library, sound engine
+ and full featured 2D game engine, making game development extremely easy.
+ .
+ This package contains the programs needed to develop games in fenix.
+ .
+  Homepage: http://fenix.divsite.net/
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..9419f19
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,37 @@
+This package was debianized by Miriam Ruiz <little_m...@yahoo.es> on
+Mon, 04 Jun 2007 17:46:25 +0000.
+
+It was downloaded from http://sourceforge.net/projects/fenix
+
+Upstream Authors:
+    Fenix Team <fe...@divsite.net>
+
+    Jose Luis Cebrian, Jose Luis Cabello, Pedro A. Gracia Fajardo
+    Chui, Carlos Falo Hervas, SplinterGU
+
+Copyright: 
+
+    Copyright © 1999 José Luis Cebrián Pagüe
+    Copyright © 2002 Fenix Team
+
+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, Miriam Ruiz <little_m...@yahoo.es> and
+is licensed under the GPL, see above.
diff --git a/debian/fenix0.92-runtime.install b/debian/fenix0.92-runtime.install
new file mode 100644
index 0000000..e035080
--- /dev/null
+++ b/debian/fenix0.92-runtime.install
@@ -0,0 +1 @@
+usr/bin/fxi
\ No newline at end of file
diff --git a/debian/fenix0.92.docs b/debian/fenix0.92.docs
new file mode 100644
index 0000000..212ce21
--- /dev/null
+++ b/debian/fenix0.92.docs
@@ -0,0 +1,3 @@
+NEWS
+readme.html
+info.html
diff --git a/debian/fenix0.92.install b/debian/fenix0.92.install
new file mode 100644
index 0000000..ac4ec16
--- /dev/null
+++ b/debian/fenix0.92.install
@@ -0,0 +1,3 @@
+usr/bin/fpg
+usr/bin/fxc
+usr/bin/map
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..c57fcc4
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,87 @@
+#!/usr/bin/make -f
+
+# Uncomment this to turn on verbose mode.
+#export DH_VERBOSE=1
+
+# These are used for cross-compiling and for saving the configure script
+# from having to guess our platform (since we know it already)
+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
+ifneq "$(wildcard /usr/share/misc/config.sub)" ""
+       cp -f /usr/share/misc/config.sub config.sub
+endif
+ifneq "$(wildcard /usr/share/misc/config.guess)" ""
+       cp -f /usr/share/misc/config.guess config.guess
+endif
+       chmod +x configure
+       ./configure \
+               --host=$(DEB_HOST_GNU_TYPE) \
+               --build=$(DEB_BUILD_GNU_TYPE) \
+               --enable-fxc \
+               --enable-fxi \
+               --enable-map \
+               --enable-fpg \
+               --enable-dependency-tracking \
+               --prefix=/usr --mandir=\$${prefix}/share/man \
+               --infodir=\$${prefix}/share/info CFLAGS="$(CFLAGS)" \
+               LDFLAGS="-Wl,-z,defs"
+
+build: build-stamp
+build-stamp:  config.status
+       dh_testdir
+       $(MAKE)
+       #docbook-to-man debian/fenix0.92.sgml > fenix0.92.1
+       touch $@
+
+clean:
+       dh_testdir
+       dh_testroot
+       rm -f build-stamp 
+       -$(MAKE) distclean
+       rm -f config.{sub,guess}
+       dh_clean 
+
+install: build
+       dh_testdir
+       dh_testroot
+       dh_clean -k 
+       dh_installdirs
+       $(MAKE) DESTDIR=$(CURDIR)/debian/tmp install
+
+# Build architecture-independent files here.
+binary-indep: build install
+
+# Build architecture-dependent files here.
+binary-arch: build install
+       dh_testdir
+       dh_testroot
+       dh_installchangelogs
+       dh_installdocs
+       dh_installexamples
+       dh_install --sourcedir=$(CURDIR)/debian/tmp
+#      dh_installmenu
+       dh_installman
+       dh_link
+       dh_strip
+       dh_compress
+       dh_fixperms
+       dh_installdeb
+       dh_shlibdeps
+       dh_gencontrol
+       dh_md5sums
+       dh_builddeb
+
+binary: binary-indep binary-arch
+.PHONY: build clean binary-indep binary-arch binary install 

-- 
Alioth's /usr/local/bin/git-commit-notice on 
/srv/git.debian.org/git/pkg-games/fenix.git

_______________________________________________
Pkg-games-commits mailing list
Pkg-games-commits@lists.alioth.debian.org
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

Reply via email to