This is an automated email from the git hooks/post-receive script. apo-guest pushed a commit to branch master in repository lordsawar.
commit 00eb48a28038f6e69b07ab9b3e8c5f1ae51ba8ab Author: Barry deFreese <[email protected]> Date: Tue Oct 2 18:51:54 2007 +0000 Fix copyright issues Split into data package Remove technical details from description --- debian/changelog | 1 + debian/control | 16 +++++++++-- debian/copyright | 23 ++++++++++++++++ debian/dirs | 1 - debian/lordsawar-data.install | 2 ++ debian/{docs => lordsawar.docs} | 0 debian/lordsawar.install | 2 ++ debian/{manpages => lordsawar.manpages} | 0 debian/{menu => lordsawar.menu} | 0 debian/rules | 49 +++++++++++++++++++++------------ 10 files changed, 73 insertions(+), 21 deletions(-) diff --git a/debian/changelog b/debian/changelog index 32a6fdf..fb07fa7 100644 --- a/debian/changelog +++ b/debian/changelog @@ -2,6 +2,7 @@ lordsawar (0.0.3-1) UNRELEASED; urgency=low * Initial release * Add simple man pages for executables + * Split into binary and data packages -- Barry deFreese <[email protected]> Thu, 27 Sep 2007 21:27:07 -0400 diff --git a/debian/control b/debian/control index b589e47..acede4d 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Standards-Version: 3.7.2 Package: lordsawar Architecture: any -Depends: ${shlibs:Depends}, ${misc:Depends} +Depends: ${shlibs:Depends}, ${misc:Depends}, lordsawar-data Description: A clone of the popular SSG game Warlords II. A 2d turn-based strategy game where up to 8 players strive for control of as many cities as possible. Produce new armies in cities to conquer @@ -17,7 +17,17 @@ Description: A clone of the popular SSG game Warlords II. . Play with others or against the computer. Network play is currently broken. . - The abandoned freelords C++ codebase has been used as a starting point. It - also utilizes SDL for graphics and gtkmm for menus and windowing. + Homepage: http://www.lordsawar.com + +Package: lordsawar-data +Architecture: all +Description: A clone of the popular SSG game Warlords II. + A 2d turn-based strategy game where up to 8 players strive for control + of as many cities as possible. Produce new armies in cities to conquer + nearby cities. Using the income from those cities, make more armies to + take more cities. Send a hero to a temple to get a quest, or maybe search + a nearby ruin instead. Game should run well on modest hardware. + . + This package contains LordsAWar graphics and data files. . Homepage: http://www.lordsawar.com diff --git a/debian/copyright b/debian/copyright index 92a7c38..7ba79ee 100644 --- a/debian/copyright +++ b/debian/copyright @@ -52,10 +52,33 @@ Upstream Authors: Copyright: + po/pl.po:# Copyright (C) 2006 Piotr Cychowski + po/de.po:# Copyright (C) 2004 Ulf Lorenz + src/ucompose.hpp: * Copyright (c) 2002, 03, 04 Ole Laursen <[email protected]> <Copyright (C) 1995-2007 Free Software Foundation, Inc.> License: +src/ucompose.hpp: + This library is free software; you can redistribute it and/or + modify it under the terms of the GNU Lesser General Public License + as published by the Free Software Foundation; either version 2.1 of + the License, or (at your option) any later version. + + This program 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 + Lesser General Public License for more details. + + You should have received a copy of the GNU Lesser General Public + License along with this library; if not, write to the Free Software + Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 + USA. + + On Debian GNU/Linux systems, the complete text of the GNU General + Public License can be found in `/usr/share/common-licenses/LGPL'. + + 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 2 of the License, or diff --git a/debian/dirs b/debian/dirs deleted file mode 100644 index e772481..0000000 --- a/debian/dirs +++ /dev/null @@ -1 +0,0 @@ -usr/bin diff --git a/debian/lordsawar-data.install b/debian/lordsawar-data.install new file mode 100644 index 0000000..f00d2bd --- /dev/null +++ b/debian/lordsawar-data.install @@ -0,0 +1,2 @@ +/usr/share/lordsawar/ +/usr/share/locale/ diff --git a/debian/docs b/debian/lordsawar.docs similarity index 100% rename from debian/docs rename to debian/lordsawar.docs diff --git a/debian/lordsawar.install b/debian/lordsawar.install new file mode 100644 index 0000000..4bf0451 --- /dev/null +++ b/debian/lordsawar.install @@ -0,0 +1,2 @@ +usr/bin/ +usr/share/applications/ diff --git a/debian/manpages b/debian/lordsawar.manpages similarity index 100% rename from debian/manpages rename to debian/lordsawar.manpages diff --git a/debian/menu b/debian/lordsawar.menu similarity index 100% rename from debian/menu rename to debian/lordsawar.menu diff --git a/debian/rules b/debian/rules index 0845c24..8a9873b 100755 --- a/debian/rules +++ b/debian/rules @@ -49,28 +49,43 @@ install: build dh_clean -k dh_installdirs - $(MAKE) DESTDIR=$(CURDIR)/debian/lordsawar install + $(MAKE) install DESTDIR=$(CURDIR)/debian/tmp + + dh_install --sourcedir=debian/tmp --list-missing binary-indep: build install + dh_testdir -i + dh_testroot -i + dh_installchangelogs -i ChangeLog + dh_installdocs -i + dh_installexamples -i + dh_link -i + dh_strip -i + dh_compress -i + dh_fixperms -i + dh_installdeb -i + dh_gencontrol -i + dh_md5sums -i + dh_builddeb -i binary-arch: build install - dh_testdir - dh_testroot - dh_installchangelogs ChangeLog - dh_installdocs - dh_installexamples - dh_installmenu - dh_installman - dh_link - dh_strip - dh_compress - dh_fixperms - dh_installdeb - dh_shlibdeps - dh_gencontrol - dh_md5sums - dh_builddeb + dh_testdir -a + dh_testroot -a + dh_installchangelogs -a ChangeLog + dh_installdocs -a + dh_installexamples -a + dh_installmenu -a + dh_installman -a + dh_link -a + dh_strip -a + dh_compress -a + dh_fixperms -a + dh_installdeb -a + dh_shlibdeps -a + dh_gencontrol -a + dh_md5sums -a + dh_builddeb -a 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/lordsawar.git _______________________________________________ Pkg-games-commits mailing list [email protected] http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/pkg-games-commits

