[openxcom] 01/01: initial commit

Alexandre Detiste detiste-guest at moszumanska.debian.org
Sun Aug 2 13:27:11 UTC 2015


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

detiste-guest pushed a commit to branch debian
in repository openxcom.

commit fe606eac38702fdfd462a0f194b877e41c4abc64
Author: Alexandre Detiste <alexandre.detiste at gmail.com>
Date:   Sun Aug 2 15:26:32 2015 +0200

    initial commit
---
 debian/changelog     |  5 +++++
 debian/compat        |  1 +
 debian/control       | 29 +++++++++++++++++++++++++++++
 debian/copyright     | 30 ++++++++++++++++++++++++++++++
 debian/docs          |  1 +
 debian/rules         | 27 +++++++++++++++++++++++++++
 debian/source/format |  1 +
 7 files changed, 94 insertions(+)

diff --git a/debian/changelog b/debian/changelog
new file mode 100644
index 0000000..45d79ba
--- /dev/null
+++ b/debian/changelog
@@ -0,0 +1,5 @@
+openxcom (1.0-3) UNRELEASED; urgency=medium
+
+  * Initial release. (Closes: #XXXXXX)
+
+ -- Alexandre Detiste <alexandre.detiste at gmail.com>  Sun, 02 Aug 2015 10:22:03 +0200
diff --git a/debian/compat b/debian/compat
new file mode 100644
index 0000000..ec63514
--- /dev/null
+++ b/debian/compat
@@ -0,0 +1 @@
+9
diff --git a/debian/control b/debian/control
new file mode 100644
index 0000000..a7afc24
--- /dev/null
+++ b/debian/control
@@ -0,0 +1,29 @@
+Source: openxcom
+Section: contrib/games
+Priority: optional
+Maintainer: Debian Games Team <pkg-games-devel at lists.alioth.debian.org>
+Uploaders: Alexandre Detiste <alexandre.detiste at gmail.com>
+Build-Depends:
+	debhelper (>= 9),
+	libsdl1.2-dev,
+	libsdl-mixer1.2-dev,
+	libsdl-gfx1.2-dev (>= 2.0.22),
+	libsdl-image1.2-dev,
+	libyaml-cpp-dev (>= 0.5.1),
+	libboost-dev,
+	xmlto,
+Standards-Version: 3.9.6
+Homepage: http://openxcom.org/
+Vcs-Git: git://anonscm.debian.org/pkg-games/openxcom
+Vcs-Browser: https://http://anonscm.debian.org/cgit/pkg-games/openxcom.git/
+
+Package: openxcom
+Architecture: any
+Depends: ${shlibs:Depends}, ${misc:Depends}, libyaml-cpp0.5 (= 0.5.1-1)
+Suggests: openxcom-data
+Description: Open-source clone of UFO: Enemy Unknown
+ OpenXcom is an open-source clone of the popular UFO: Enemy Unknown
+ (X-COM: UFO Defense in USA) turn-based strategy game by MicroProse.
+ It is written in C++ / SDL and licensed under the GPL.
+ OpenXcom requires game resources from the original game
+ (DOS, Windows or Steam version).
diff --git a/debian/copyright b/debian/copyright
new file mode 100644
index 0000000..0e08d61
--- /dev/null
+++ b/debian/copyright
@@ -0,0 +1,30 @@
+Format: http://dep.debian.net/deps/dep5
+Upstream-Name: openxcom
+Source: http://openxcom.org/
+
+Files: *
+Copyright: 2009-2015 Daniel Filipe "SupSuper" <openxcom at gmail.com>
+           2009-2015 Others
+License: GPL-3.0+
+
+Files: debian/*
+Copyright: 2012-2014 Krzysztof Knapik "Knapsu" <knapsu at gmail.com>
+           2015 Alexandre Detiste <alexandre.detiste at gmail.com>
+License: GPL-3.0+
+
+License: GPL-3.0+
+ 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 3 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 program. If not, see <http://www.gnu.org/licenses/>.
+ .
+ On Debian systems, the complete text of the GNU General
+ Public License version 3 can be found in "/usr/share/common-licenses/GPL-3".
diff --git a/debian/docs b/debian/docs
new file mode 100644
index 0000000..b43bf86
--- /dev/null
+++ b/debian/docs
@@ -0,0 +1 @@
+README.md
diff --git a/debian/rules b/debian/rules
new file mode 100755
index 0000000..03d028b
--- /dev/null
+++ b/debian/rules
@@ -0,0 +1,27 @@
+#!/usr/bin/make -f
+
+#export DH_VERBOSE=1
+
+%:
+	dh $@ --parallel --with autotools-dev,autoreconf
+#--buildsystem=qmake
+
+override_dh_auto_configure:
+	./configure --prefix=/usr --bindir=/usr/games --disable-werror --without-docs
+
+override_dh_auto_install:
+	mkdir -p debian/openxcom/usr/share/openxcom/
+	dh_auto_install
+
+	# SVG icon not square nor centered
+	# only one of two PNG icon got installed
+	install -D -m 0644 res/linux/icons/openxcom_48x48.png debian/openxcom/usr/share/icons/hicolor/48x48/apps/openxcom.png
+	install -D -m 0644 res/linux/icons/openxcom_128x128.png debian/openxcom/usr/share/icons/hicolor/128x128/apps/openxcom.png
+	rm -vf debian/openxcom/usr/share/pixmaps/openxcom.png
+	rm -vf debian/openxcom/usr/share/pixmaps/openxcom.svg
+	rmdir --ignore-fail-on-non-empty debian/openxcom/usr/share/pixmaps
+
+	# copy of GPL 3
+	rm -vf debian/openxcom/usr/share/doc/openxcom/LICENSE.txt*
+	# same as changelog.txt.gz
+	rm -vf debian/openxcom/usr/share/doc/openxcom/CHANGELOG.txt*
diff --git a/debian/source/format b/debian/source/format
new file mode 100644
index 0000000..163aaf8
--- /dev/null
+++ b/debian/source/format
@@ -0,0 +1 @@
+3.0 (quilt)

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



More information about the Pkg-games-commits mailing list