]> git.pld-linux.org Git - packages/freeciv.git/blobdiff - freeciv.spec
- server is required by client to play
[packages/freeciv.git] / freeciv.spec
index c6299a90eddebb7f2435448eb1f461496424e661..87dbc9b3fc4977bddd60d780a450ac9f3400f171 100644 (file)
+#
+# TODO
+# - dozen of unpackaged files
+#
+# Conditional build:
+%bcond_without gtk             # do not build gtk client
+%bcond_without  ggz_client     # build without ggz client
+%bcond_without  ggz_server     # build without ggz server
+#
 Summary:       FREE CIVilization clone
-Summary(pl):   Niekomercyjny klon CIVilization
+Summary(es.UTF-8):     Clon del juego Civilization
+Summary(pl.UTF-8):     Niekomercyjny klon CIVilization
+Summary(pt_BR.UTF-8):  Clone do jogo Civilization
 Name:          freeciv
-Version:       1.8.0
-Release:       1
-Copyright:     GPL
-Group:         X11/Games/Strategy
-Group(pl):     X11/Gry/Strategiczne
-Source0:       ftp://freeciv.ultraviolet.org/pub/freeciv/%{name}-%{version}.tar.bz2
-Source1:       freeciv-client.wmconfig
-Source2:       freeciv-server.wmconfig
-BuildPrereq:   Xaw3d-devel
-BuildPrereq:   XFree86-devel
+Version:       2.1.3
+Release:       0.1
+License:       GPL v2+
+Group:         X11/Applications/Games/Strategy
+Source0:       http://dl.sourceforge.net/freeciv/%{name}-%{version}.tar.bz2
+# Source0-md5: 2b5e96c6464212273150f8d3ec0bf7f7
+Source1:       ftp://ftp.freeciv.org/pub/freeciv/contrib/audio/soundsets/stdsounds3.tar.gz
+# Source1-md5: 77215914712f2f351092918f5e41e39e
+Source2:       ftp://ftp.freeciv.org/pub/freeciv/contrib/tilesets/freeland/freeland-normal-2.0.0.tar.gz
+# Source2-md5: c9f061fca82aa50a19fbbc89c06ff81d
+Patch0:                %{name}-link.patch
+Patch1:                %{name}-desktop.patch
 URL:           http://www.freeciv.org/
-Buildroot:     /tmp/%{name}-%{version}-root
+BuildRequires: SDL_mixer-devel
+BuildRequires: autoconf >= 2.52
+BuildRequires: automake
+BuildRequires: esound-devel
+%{?with_gtk:BuildRequires:     gtk+2-devel}
+%{?with_ggz_client:BuildRequires:      ggz-gtk-client-devel}
+%{?with_ggz_server:BuildRequires:      ggz-server-devel}
+BuildRequires: libggz-devel
+BuildRequires: pkgconfig
+BuildRequires: readline-devel
+BuildRequires: zlib-devel
+BuildRoot:     %{tmpdir}/%{name}-%{version}-root-%(id -u -n)
 
 %description
-Free clone of Sid Meiers Civilization. Free Civilization clone for unix and
-X. This is multiplayer strategic game and you can also play against
-computer-AI players.
-
-%description -l pl
-Freeciv jest to niekomercyjny (GPL) klon gry Civilization Sid'a Meiers'a.
-Jest to gra strategiczna pod X Window. Mo¿esz graæ w ni± z innymi osobami
-poprzez sieæ, a tak¿e przeciwko "graczom" zarz±dzanym przez komputer.
+Free clone of Sid Meier's Civilization. Free Civilization clone for
+Unix and X. This is multiplayer strategic game and you can also play
+against computer-AI players.
+
+%description -l es.UTF-8
+Clon del juego Civilization.
+
+%description -l pl.UTF-8
+Freeciv jest to niekomercyjny (GPL) klon gry Civilization Sida Meiera.
+Jest to gra strategiczna dla systemu X Window. Można grać w nią z
+innymi osobami poprzez sieć, a także przeciwko "graczom" zarządzanym
+przez komputer.
+
+%description -l pt_BR.UTF-8
+O FreeCiv é uma implementação do Civilization II para o Sistema X
+Window.
+
+%package client
+Summary:       Freeciv game client
+Summary(pl.UTF-8):     Klient gry Freeciv
+Group:         X11/Applications/Games/Strategy
+Requires:      %{name} = %{version}-%{release}
+Requires:      %{name}-server = %{version}-%{release}
+Requires:      SDL_mixer
+Requires:      esound
+
+%description client
+This package contains Freeciv game client.
+
+%description client -l pl.UTF-8
+Ten pakiet zawiera klienta gry Freeciv.
+
+%package server
+Summary:       Freeciv game server
+Summary(pl.UTF-8):     Serwer gry Freeciv
+Group:         X11/Applications/Games/Strategy
+Requires:      %{name} = %{version}-%{release}
+
+%description server
+This package contans Freeciv game server.
+
+%description server -l pl.UTF-8
+Ten pakiet zawiera server gry Freeciv.
 
 %prep
-%setup -q
+%setup -q -a1 -a2
+%patch0 -p1
+%patch1 -p1
 
 %build
-CFLAGS="$RPM_OPT_FLAGS" LDFLAGS="-s" \
-./configure %{_target} \
-       --prefix=/usr/X11R6 \
-       --with-xaw3d
-make
+%{__aclocal}
+%{__autoconf}
+%{__autoheader}
+%{__automake}
+%configure \
+%{?with_gtk:   --enable-client=gtk}
+%{!?with_ggz_client:   --without-ggz-client}
+%{!?with_ggz_server:   --without-ggz-server}
+
+%{__make}
 
 %install
 rm -rf $RPM_BUILD_ROOT
-install -d $RPM_BUILD_ROOT/{etc/X11/wmconfig,usr/X11R6/lib/X11/app-defaults}
+install -d $RPM_BUILD_ROOT{%{_desktopdir},%{_pixmapsdir}}
+
+%{__make} install \
+       DESTDIR=$RPM_BUILD_ROOT
 
-make install prefix=$RPM_BUILD_ROOT/usr/X11R6
+cp -f client/%{name}.desktop $RPM_BUILD_ROOT%{_desktopdir}/%{name}-client.desktop
+cp -f server/%{name}-server.desktop $RPM_BUILD_ROOT%{_desktopdir}
+cp -f data/icons/32x32/*.png $RPM_BUILD_ROOT%{_pixmapsdir}
+cp -rf data/stdsounds{,.soundspec} $RPM_BUILD_ROOT%{_datadir}/%{name}
+cp -f freeland.tilespec $RPM_BUILD_ROOT%{_datadir}/%{name}
+cp -rf freeland $RPM_BUILD_ROOT%{_datadir}/%{name}
 
-mv $RPM_BUILD_ROOT/usr/X11R6/share/freeciv/Freeciv \
-$RPM_BUILD_ROOT/usr/X11R6/lib/X11/app-defaults
+rm -rf $RPM_BUILD_ROOT%{_datadir}/locale/no
 
-install %{SOURCE1} $RPM_BUILD_ROOT/etc/X11/wmconfig/freeciv-client
-install %{SOURCE2} $RPM_BUILD_ROOT/etc/X11/wmconfig/freeciv-server
+%find_lang %{name}
 
 %clean
 rm -rf $RPM_BUILD_ROOT
 
-%files
+%files -f %{name}.lang
+%defattr(644,root,root,755)
+%doc AUTHORS README ChangeLog NEWS
+%{_pixmapsdir}/*
+%dir %{_datadir}/%{name}
+%{_datadir}/%{name}/helpdata.txt
+
+%files server
+%defattr(644,root,root,755)
+%attr(755,root,root) %{_bindir}/civserver
+%{_desktopdir}/%{name}-server.desktop
+%{_datadir}/%{name}/civ1
+%{_datadir}/%{name}/civ2
+%{_datadir}/%{name}/default
+%{_datadir}/%{name}/nation
+%{_datadir}/%{name}/scenario
+%{_datadir}/%{name}/*.serv
+%{_mandir}/man6/civserver.6*
+
+%files client
 %defattr(644,root,root,755)
-%doc AUTHORS README freeciv_hackers_guide.txt
-%doc HOWTOPLAY NEWS 
-/etc/X11/wmconfig/*
-%attr(755,root,root) /usr/X11R6/bin/*
-/usr/X11R6/share/freeciv
-/usr/X11R6/lib/X11/app-defaults/Freeciv
-
-%changelog
-* Sun Apr 11 1999 Jacek Konieczny <jajcus@zeus.polsl.gliwice.pl?
-  [1.8.0pre3-1]
-- NEWS instead of ChangeLog goes to %doc
-- New version
-
-* Tue Jan 26 1999 Micha³ Kuratczyk <kurkens@polbox.com>
-- added "Group(pl)"
-
-* Wed Dec 23 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.7.2-1]
-- removed all patches,
-- simplification in %files,
-- added --with-xaw3d to confirgure parameters.
-
-* Wed Dec 23 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.7.1-2]
-- added using LDFLAGS="-s" to ./configure enviroment,
-- added patch from freeciv contrib for using Xaw3d library instead Xaw.
-
-* Sat Aug 22 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.7.0-2]
-- removed CHANGES from %doc,
-- fixed some bugs in pl translation.
-
-* Thu Aug  6 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.7.0-1]
-- added -q %setup parameter,
-- added pl translation,
-- updated URL and %description (now ypu can play against AI players).
-
-* Sun Jun  7 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.6.2-1]
-- adde AUTHORS, ChangeLog, freeciv_hackers_guide.txt, HOWTOPLAY, ChangeLog
-  to %doc,
-- added use %{SOURCE#} in %install,
-- fixed typo in wmconfig file for freeciv srv console,
-- wmconfig entries for freeciv, freeciv srv console moved to Games/Strategy,
-- added all modification for building freeciv with using GNU autoconf.
-
-* Mon May 11 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.5.4-2]
-- changed Source url,
-- now freeciv is builded from tar.bz2,
-- added temporary hack (Source2 field) rpm 2.4.109 bug wihch can't include
-  Icon file in src.rpm.
-
-* Fri May  1 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.5.4-1]
-- added title in xterm with FC server console in wmconfig registration file,
-- %%{version} macro instead %%{PACKAGE_VERSION},
-- added using %%{name} macro in Buildroot,
-- added -q parametr for %setup.
-
-* Sun Apr 26 1998 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.5.3-1]
-- added %clean section,
-- added using %defattr macro (require rpm >= 2.4.99),
-- updated URL,
-- added wmconfig registration file for freeciv client and server console,
-- all data moved to /usr/X11R6/share/freeciv,
-- removed Packager field from spec (if you want recompile package and
-  redistribute this package later put this in your private .rpmrc).
-- changed %build procedure (using xmkmf),
-- added CDEBUGFLAGS="$RPM_OPT_FLAGS" make option.
-
-* Sun Sep 21 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.0k-1]
-- changed %attr on %doc to (-,root,root)
-
-* Sat Aug  9 1997 Tomasz K³oczko <kloczek@rudy.mif.pg.gda.pl>
-  [1.0j-1]
-- new version 1.0j,
-- all rewritetd for using Buildroot,
-- added:
-  - URL,
-  - %attr macros in %file (allows build package from non root account).
+%attr(755,root,root) %{_bindir}/civclient
+%attr(755,root,root) %{_bindir}/civmanual
+%{_desktopdir}/%{name}-client.desktop
+%{_datadir}/%{name}/amplio
+%{_datadir}/%{name}/freeciv.rc*
+%{_datadir}/%{name}/freeland
+%{_datadir}/%{name}/isophex
+%{_datadir}/%{name}/isotrident
+%{_datadir}/%{name}/misc
+%{_datadir}/%{name}/trident
+%{_datadir}/%{name}/flags
+%{_datadir}/%{name}/*.*spec
+%{_datadir}/%{name}/stdsounds
+%{_mandir}/man6/civclient.6*
This page took 0.062928 seconds and 4 git commands to generate.