Compare commits
41 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
98d4153fd2 | ||
|
|
4b643753ee | ||
|
|
7191323d87 | ||
|
|
6bb76fc2a8 | ||
|
|
6b9ae4b34e | ||
|
|
d677b09796 | ||
|
|
61ca77cb6c | ||
|
|
03edd535e2 | ||
|
|
929549b45e | ||
|
|
a9308ac6c0 | ||
|
|
46b9fc9c5c | ||
|
|
2c2f329b4a | ||
|
|
6193a8c676 | ||
|
|
6cbc68b46d | ||
|
|
9786e23d02 | ||
|
|
ef15be8623 | ||
|
|
25b41e2655 | ||
|
|
71b05bf93f | ||
|
|
085290f5d6 | ||
|
|
78c588ad1e | ||
|
|
cfe9250d10 | ||
|
|
136abd8055 | ||
|
|
54a9ee7657 | ||
|
|
3eec08da73 | ||
|
|
3610aa11ca | ||
|
|
66bb707e31 | ||
|
|
29d24fdf6d | ||
|
|
95f65606d1 | ||
|
|
2039e75bbc | ||
|
|
de33c0e744 | ||
|
|
1a6973d63f | ||
|
|
38025baebf | ||
|
|
af4b2dfb50 | ||
|
|
34c63958ec | ||
|
|
f33c737fca | ||
|
|
917f34fed9 | ||
|
|
9c2b19002b | ||
|
|
e2240de2d1 | ||
|
|
0754337f3e | ||
|
|
24314b0fd8 | ||
|
|
65db7417c5 |
6 changed files with 1 additions and 141 deletions
|
|
@ -1 +0,0 @@
|
|||
adonthell-0.3.5.tar.gz
|
||||
21
Makefile
21
Makefile
|
|
@ -1,21 +0,0 @@
|
|||
# Makefile for source rpm: adonthell
|
||||
# $Id$
|
||||
NAME := adonthell
|
||||
SPECFILE = $(firstword $(wildcard *.spec))
|
||||
|
||||
define find-makefile-common
|
||||
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(find-makefile-common))
|
||||
|
||||
ifeq ($(MAKEFILE_COMMON),)
|
||||
# attept a checkout
|
||||
define checkout-makefile-common
|
||||
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
|
||||
endef
|
||||
|
||||
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
|
||||
endif
|
||||
|
||||
include $(MAKEFILE_COMMON)
|
||||
117
adonthell.spec
117
adonthell.spec
|
|
@ -1,117 +0,0 @@
|
|||
%{!?python_sitearch: %define python_sitearch %(%{__python} -c "from distutils.sysconfig import get_python_lib; print get_python_lib(1)")}
|
||||
|
||||
Name: adonthell
|
||||
Version: 0.3.5
|
||||
Release: 0.3%{?dist}
|
||||
Summary: A 2D graphical RPG game
|
||||
|
||||
Group: Amusements/Games
|
||||
License: GPLv2+
|
||||
URL: http://adonthell.linuxgames.com/
|
||||
Source0: http://download.savannah.gnu.org/releases/adonthell/adonthell-0.3.5.tar.gz
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root-%(%{__id_u} -n)
|
||||
|
||||
BuildRequires: python-devel
|
||||
BuildRequires: freetype-devel
|
||||
BuildRequires: libxml2-devel
|
||||
BuildRequires: libogg-devel
|
||||
BuildRequires: libvorbis-devel
|
||||
BuildRequires: SDL_mixer-devel
|
||||
BuildRequires: SDL_ttf-devel
|
||||
BuildRequires: libpng-devel
|
||||
BuildRequires: swig
|
||||
BuildRequires: doxygen
|
||||
BuildRequires: graphviz
|
||||
|
||||
|
||||
%description
|
||||
A 2D, graphical, single player role playing game inspired by good old
|
||||
console RPGs from the 16 bit console gaming era.
|
||||
|
||||
This package contains the Adonthell engine. You will also need a game
|
||||
package to play Adonthell. For this release, the official package is
|
||||
Waste's Edge.
|
||||
|
||||
|
||||
%package doc
|
||||
Summary: API documentation for %{name}
|
||||
|
||||
Group: Documentation
|
||||
Requires: %{name} = %{version}-%{release}
|
||||
|
||||
%description doc
|
||||
API documentation for %{name} generated by doxygen in HTML format.
|
||||
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
# install locale files in the right place
|
||||
sed -i 's|myconfig.gamedir + "/locale"|"%{_datadir}/locale"|' src/nls.cc
|
||||
# remove hardcoded CFLAGS
|
||||
sed -i 's|^CFLAGS|^#CFLAGS|g' configure
|
||||
|
||||
|
||||
%build
|
||||
%configure --enable-doc
|
||||
make %{?_smp_mflags}
|
||||
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT INSTALL="install -p"
|
||||
|
||||
|
||||
%clean
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
|
||||
|
||||
%files
|
||||
%defattr(-,root,root,-)
|
||||
%doc AUTHORS COPYING FULLSCREEN.howto NEWBIE NEWS README
|
||||
%{_bindir}/%{name}
|
||||
%{_bindir}/%{name}-0.3
|
||||
%{_datadir}/%{name}/
|
||||
|
||||
%files doc
|
||||
%doc doc/devel/html
|
||||
|
||||
|
||||
%changelog
|
||||
* Tue Jun 03 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.5-0.3
|
||||
- added -p option to install
|
||||
|
||||
* Sat May 31 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.5-0.2
|
||||
- applied patch to configure instead of configure.in
|
||||
- removed trademarks names from description
|
||||
- removed explicit requires
|
||||
|
||||
* Tue May 27 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.5-0.1
|
||||
- switched to 0.3.5 release (includes bug fixes and fixes for building RPM for
|
||||
fedora like pythin finding and errors with fedora specific flags)
|
||||
|
||||
* Fri May 22 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.8
|
||||
- fixed license tag (GPLv2 to GPLv2+)
|
||||
- removed explicit requires
|
||||
- fixed directories ownership
|
||||
|
||||
* Thu Apr 17 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.7
|
||||
- fixed building on 64 bits arch (/lib was hard coded in configure.in)
|
||||
|
||||
* Fri Apr 04 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.6
|
||||
- fixed typo in doc description
|
||||
|
||||
* Fri Feb 22 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.5
|
||||
- search for translations in the right place so that wastesedge
|
||||
package can install them in the right place
|
||||
|
||||
* Thu Feb 21 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.4
|
||||
- separated the doc in a dedicated package
|
||||
|
||||
* Thu Feb 21 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.3
|
||||
- cleaned the spec file again
|
||||
|
||||
* Thu Feb 21 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.2
|
||||
- cleaned the spec file
|
||||
|
||||
* Mon Feb 18 2008 Mathieu Bridon <bochecha@no-log.org> 0.3.4-0.1
|
||||
- first version of the SPEC file
|
||||
1
dead.package
Normal file
1
dead.package
Normal file
|
|
@ -0,0 +1 @@
|
|||
Orphaned for 6+ weeks
|
||||
|
|
@ -1 +0,0 @@
|
|||
adonthell-0_3_5-0_3_fc9:HEAD:adonthell-0.3.5-0.3.fc9.src.rpm:1213817439
|
||||
1
sources
1
sources
|
|
@ -1 +0,0 @@
|
|||
64a344b1ed8a7808d7adafa337120a00 adonthell-0.3.5.tar.gz
|
||||
Reference in a new issue