1 2 # spec file for package SUNWgnome-games 3 # 4 # includes module(s): gnome-games, libggz, ggz-client-libs 5 # 6 # Copyright 2008 Sun Microsystems, Inc. 7 # This file and all modifications and additions to the pristine 8 # package are under the same license as the package itself. 9 # 10 # Owner: migi 11 # 12 %include Solaris.inc 13 14 %define makeinstall make install DESTDIR=$RPM_BUILD_ROOT 15 %use gnome_games = gnome-games.spec 16 %use libggz = libggz.spec 17 %use ggz_client_libs = ggz-client-libs.spec 18 19 Name: SUNWgnome-games 20 Summary: GNOME games 21 Version: %{default_pkg_version} 22 Source: %{name}-manpages-0.1.tar.gz 23 SUNW_BaseDir: %{_basedir} 24 SUNW_Copyright: %{name}.copyright 25 BuildRoot: %{_tmppath}/%{name}-%{version}-build 26 27 %include default-depend.inc 28 BuildRequires: SUNWlibrsvg-devel 29 BuildRequires: SUNWPython-devel 30 BuildRequires: SUNWpython-setuptools 31 BuildRequires: SUNWgnome-libs-devel 32 BuildRequires: SUNWgnome-vfs-devel 33 BuildRequires: SUNWgnome-config-devel 34 BuildRequires: SUNWgnome-base-libs-devel 35 BuildRequires: SUNWgnome-python-desktop-devel 36 BuildRequires: SUNWlibsdl-devel 37 BuildRequires: SUNWgnome-media-devel 38 Requires: SUNWgnome-libs 39 Requires: SUNWgnome-config 40 Requires: SUNWlibms 41 Requires: SUNWgnome-base-libs 42 Requires: SUNWgnome-python-desktop 43 Requires: SUNWlibrsvg 44 Requires: SUNWPython 45 Requires: SUNWpostrun 46 Requires: SUNWgnome-media 47 48 %if %build_l10n 49 %package l10n 50 Summary: %{summary} - l10n files 51 SUNW_BaseDir: %{_basedir} 52 %include default-depend.inc 53 Requires: %{name} 54 %endif 55 56 %package root 57 Summary: %{summary} - / filesystem 58 SUNW_BaseDir: / 59 %include default-depend.inc 60 Requires: SUNWgnome-libs 61 Requires: SUNWpostrun-root 62 Requires: SUNWgnome-config 63 64 %package devel 65 Summary: %{summary} - development files 66 SUNW_BaseDir: %{_basedir} 67 %include default-depend.inc 68 Requires: %{name} 69 70 %prep 71 rm -rf %name-%version 72 mkdir %name-%version 73 %libggz.prep -d %name-%version 74 %ggz_client_libs.prep -d %name-%version 75 %gnome_games.prep -d %name-%version 76 cd %{_builddir}/%name-%version 77 gzcat %SOURCE0 | tar xf - 78 79 %build 80 %define libggz_build_dir %{_builddir}/%name-%version/libggz-%{libggz.version} 81 %define ggzclient_build_dir %{_builddir}/%name-%version/ggz-client-libs-%{ggz_client_libs.version} 82 83 export PKG_CONFIG_PATH=%{_pkg_config_path} 84 export CFLAGS="%optflags -I%{_includedir} -I/usr/sfw/include -xc99 -I%{libggz_build_dir}/src -I%{ggzclient_build_dir}/ggzmod -I%{ggzclient_build_dir}/ggzcore" 85 export RPM_OPT_FLAGS="$CFLAGS" 86 export LDFLAGS="%_ldflags -lX11 -L/usr/sfw/lib -lexpat -L%{libggz_build_dir}/src/.libs -L%{ggzclient_build_dir}/ggzmod/.libs -L%{ggzclient_build_dir}/ggzcore/.libs" 87 export LD_LIBRARY_PATH="%{libggz_build_dir}/src/.libs:%{ggzclient_build_dir}/ggzmod/.libs:%{ggzclient_build_dir}/ggzcore/.libs" 88 export PATH="$PATH:"`dirname $CXX` 89 export CXX=`basename $CXX` 90 export ACLOCAL_FLAGS="-I%{_datadir}/aclocal" 91 92 # find GNU xgettext 93 IFS=: 94 for dir in $PATH; do 95 test -x "$dir/xgettext" && \ 96 "$dir/xgettext" --version 2>&1 | egrep -s 'GNU gettext' && \ 97 XGETTEXT="$dir/xgettext" 98 done 99 export XGETTEXT 100 101 %libggz.build -d %name-%version 102 %ggz_client_libs.build -d %name-%version 103 %gnome_games.build -d %name-%version 104 105 %install 106 rm -rf $RPM_BUILD_ROOT 107 rm -rf $RPM_BUILD_ROOT%{_mandir} 108 %libggz.install -d %name-%version 109 %ggz_client_libs.install -d %name-%version 110 %gnome_games.install -d %name-%version 111 112 # Remove the empty dir. 113 rmdir $RPM_BUILD_ROOT%{_libdir}/ggz 114 115 rm -rf $RPM_BUILD_ROOT%{_localstatedir}/lib/games 116 rmdir $RPM_BUILD_ROOT%{_localstatedir}/lib 117 rmdir $RPM_BUILD_ROOT%{_localstatedir} 118 # Delete the include files as we're not delivering a devel package. It's not 119 # useful. 120 #rm -rf $RPM_BUILD_ROOT%{_includedir} 121 rm $RPM_BUILD_ROOT%{_libdir}/*.a 122 rm $RPM_BUILD_ROOT%{_libdir}/*.la 123 124 # /etc/ggz.modules is created by gnect game when it finds /usr/bin/ggz-config. 125 # This happens when the module is built but already installed, not on 1st build. 126 if [ -f $RPM_BUILD_ROOT%{_sysconfdir}/ggz.modules ]; then 127 rm $RPM_BUILD_ROOT%{_sysconfdir}/ggz.modules 128 fi 129 130 cd %{_builddir}/%name-%version/sun-manpages 131 make install DESTDIR=$RPM_BUILD_ROOT 132 133 %if %build_l10n 134 %else 135 # REMOVE l10n FILES*files-list* 136 rm -rf $RPM_BUILD_ROOT%{_datadir}/locale 137 rm -rf $RPM_BUILD_ROOT%{_datadir}/gnome/help/[a-z]*/[a-z]* 138 rm -rf $RPM_BUILD_ROOT%{_datadir}/omf/*/*-[a-z][a-z].omf 139 rm -rf $RPM_BUILD_ROOT%{_datadir}/omf/*/*-[a-z][a-z]_[A-Z][A-Z].omf 140 rmdir $RPM_BUILD_ROOT%{_datadir}/omf/gnome-games 141 %endif 142 143 %{?pkgbuild_postprocess: %pkgbuild_postprocess -v -c "%{version}:%{jds_version}:%{name}:$RPM_ARCH:%(date +%%Y-%%m-%%d):unsupported" $RPM_BUILD_ROOT} 144 145 %clean 146 rm -rf $RPM_BUILD_ROOT 147 148 %post 149 ( echo 'test -x /usr/bin/update-desktop-database || exit 0'; 150 echo '/usr/bin/update-desktop-database' 151 ) | $BASEDIR/lib/postrun -b -u -c JDS_wait 152 ( echo 'test -x /usr/bin/scrollkeeper-update || exit 0'; 153 echo '/usr/bin/scrollkeeper-update' 154 ) | $BASEDIR/lib/postrun -b -u -c JDS 155 156 %postun 157 test -x $BASEDIR/lib/postrun || exit 0 158 ( echo 'test -x /usr/bin/update-desktop-database || exit 0'; 159 echo '/usr/bin/update-desktop-database' 160 ) | $BASEDIR/lib/postrun -b -u -c JDS 161 ( echo 'test -x /usr/bin/scrollkeeper-update || exit 0'; 162 echo '/usr/bin/scrollkeeper-update' 163 ) | $BASEDIR/lib/postrun -b -u -c JDS 164 165 %post root 166 %include gconf-install.script 167 168 %preun root 169 test -x $BASEDIR/var/lib/postrun/postrun || exit 0 170 ( echo 'test -x $PKG_INSTALL_ROOT/usr/bin/gconftool-2 || {'; 171 echo ' echo "WARNING: gconftool-2 not found; not uninstalling gconf schemas"'; 172 echo ' exit 0'; 173 echo '}'; 174 echo 'umask 0022'; 175 echo 'GCONF_CONFIG_SOURCE=xml:merged:$BASEDIR/etc/gconf/gconf.xml.defaults'; 176 echo 'GCONF_BACKEND_DIR=$PKG_INSTALL_ROOT/usr/lib/GConf/2'; 177 echo 'LD_LIBRARY_PATH=$PKG_INSTALL_ROOT/usr/lib'; 178 echo 'export GCONF_CONFIG_SOURCE GCONF_BACKEND_DIR LD_LIBRARY_PATH'; 179 echo 'SDIR=$BASEDIR%{_sysconfdir}/gconf/schemas'; 180 echo 'schemas="$SDIR/glines.schemas'; 181 echo ' $SDIR/glchess.schemas'; 182 echo ' $SDIR/gnect.schemas'; 183 echo ' $SDIR/gnibbles.schemas'; 184 echo ' $SDIR/gnobots2.schemas'; 185 echo ' $SDIR/gnomine.schemas'; 186 echo ' $SDIR/gnotravex.schemas'; 187 echo ' $SDIR/gnotski.schemas'; 188 echo ' $SDIR/gtali.schemas'; 189 echo ' $SDIR/iagno.schemas'; 190 echo ' $SDIR/same-gnome.schemas'; 191 echo ' $SDIR/mahjongg.schemas"'; 192 echo '$PKG_INSTALL_ROOT/usr/bin/gconftool-2 --makefile-uninstall-rule $schemas' 193 ) | $BASEDIR/var/lib/postrun/postrun -i -c JDS -a 194 195 %files 196 %doc -d gnome-games-%{gnome_games.version} MAINTAINERS README gnome-sudoku/README dependencies/gnuchess/README same-gnome/README gnotski/README gnomine/README gtali/README glchess/README gnotravex/README COPYING COPYING-DOCS AUTHORS gnome-sudoku/AUTHORS glines/AUTHORS gnotski/AUTHORS gnomine/AUTHORS gnect/AUTHORS gtali/AUTHORS gnobots2/AUTHORS gnotravex/AUTHORS gnibbles/AUTHORS iagno/AUTHORS 197 %doc(bzip2) -d gnome-games-%{gnome_games.version} NEWS ChangeLog same-gnome/help/ChangeLog po/ChangeLog 198 %doc libggz-%{libggz.version}/AUTHORS 199 %doc libggz-%{libggz.version}/README 200 %doc libggz-%{libggz.version}/README.GGZ 201 %doc libggz-%{libggz.version}/COPYING 202 %doc(bzip2) libggz-%{libggz.version}/ChangeLog 203 %doc(bzip2) libggz-%{libggz.version}/NEWS 204 %doc ggz-client-libs-%{ggz_client_libs.version}/AUTHORS 205 %doc ggz-client-libs-%{ggz_client_libs.version}/README 206 %doc ggz-client-libs-%{ggz_client_libs.version}/README.GGZ 207 %doc ggz-client-libs-%{ggz_client_libs.version}/COPYING 208 %doc(bzip2) ggz-client-libs-%{ggz_client_libs.version}/ChangeLog 209 %doc(bzip2) ggz-client-libs-%{ggz_client_libs.version}/NEWS 210 %defattr (-, root, bin) 211 %dir %attr (0755, root, bin) %{_bindir} 212 %{_bindir}/* 213 %dir %attr (0755, root, bin) %{_libdir} 214 %{_libdir}/gnome-games 215 %{_libdir}/libggz* 216 %{_libdir}/python?.?/vendor-packages 217 %dir %attr (0755, root, sys) %{_datadir} 218 %dir %attr (0755, root, other) %{_datadir}/doc 219 %dir %attr (0755, root, other) %{_datadir}/applications 220 %{_datadir}/applications/* 221 %{_datadir}/gnect 222 %{_datadir}/ggz 223 %{_datadir}/gnibbles 224 %{_datadir}/gnobots2 225 %dir %attr (0755, root, other) %{_datadir}/gnome 226 %{_datadir}/gnome/help/*/C 227 %{_datadir}/glchess 228 %{_datadir}/gnome-games/gnotski 229 %{_datadir}/gnome-games/icons 230 %{_datadir}/gnome-games/mahjongg 231 %{_datadir}/gnome-games/pixmaps 232 %{_datadir}/gnome-games/same-gnome 233 %{_datadir}/gnome-games-common 234 %{_datadir}/gnome-sudoku 235 %{_datadir}/omf/*/*-C.omf 236 %{_datadir}/gnome-games/sounds 237 %dir %attr (0755, root, other) %{_datadir}/pixmaps 238 %{_datadir}/pixmaps/* 239 %attr (-, root, other) %{_datadir}/icons 240 %{_datadir}/desktop-directories 241 %dir %attr(0755, root, bin) %{_mandir} 242 %dir %attr(0755, root, bin) %{_mandir}/man1 243 %dir %attr(0755, root, bin) %{_mandir}/man5 244 %{_mandir}/man5/* 245 %dir %attr(0755, root, bin) %{_mandir}/man6 246 %{_mandir}/man6/* 247 %dir %attr(0755, root, bin) %{_mandir}/man7 248 %{_mandir}/man7/* 249 250 %if %build_l10n 251 %files l10n 252 %defattr (-, root, bin) 253 %dir %attr (0755, root, sys) %{_datadir} 254 %dir %attr (0755, root, other) %{_datadir}/gnome 255 %attr (-, root, other) %{_datadir}/locale 256 %{_datadir}/gnome/help/[a-z]*/[a-z]* 257 %{_datadir}/omf/*/*-[a-z][a-z].omf 258 %{_datadir}/omf/*/*-[a-z][a-z]_[A-Z][A-Z].omf 259 %endif 260 261 %files root 262 %defattr (-, root, sys) 263 %attr(0755, root, sys) %dir %{_sysconfdir} 264 %{_sysconfdir}/gconf/schemas/glchess.schemas 265 %{_sysconfdir}/gconf/schemas/glines.schemas 266 %{_sysconfdir}/gconf/schemas/gnect.schemas 267 %{_sysconfdir}/gconf/schemas/gnibbles.schemas 268 %{_sysconfdir}/gconf/schemas/gnobots2.schemas 269 %{_sysconfdir}/gconf/schemas/gnomine.schemas 270 %{_sysconfdir}/gconf/schemas/gnotravex.schemas 271 %{_sysconfdir}/gconf/schemas/gnotski.schemas 272 %{_sysconfdir}/gconf/schemas/gtali.schemas 273 %{_sysconfdir}/gconf/schemas/iagno.schemas 274 %{_sysconfdir}/gconf/schemas/same-gnome.schemas 275 %{_sysconfdir}/gconf/schemas/mahjongg.schemas 276 %{_sysconfdir}/xdg 277 #%{_sysconfdir}/ggz.modules 278 279 %files devel 280 %defattr (-, root, bin) 281 %dir %attr (0755, root, bin) %dir %{_includedir} 282 %{_includedir}/* 283 %dir %attr (0755, root, sys) %{_datadir} 284 %dir %attr(0755, root, bin) %{_mandir} 285 %dir %attr(0755, root, bin) %{_mandir}/man3 286 %{_mandir}/man3/* 287 288 %changelog 289 * Sat Sep 20 2008 - christian.kelly@sun.com 290 - Set perms on /usr/share/doc. 291 * Fri Jun 6 2008 - michal.pryc@sun.com 292 - Added additional manual pages: libggz, libggzmod, libggzcore 293 * Fri May 30 2008 - damien.carbery@sun.com 294 - Delete %{_sysconfdir}/ggz.modules in %install. It is only created by gnect 295 game when it finds /usr/bin/ggz-config. This happens when the module is built 296 but already installed, not on first build. 297 * Tue May 13 2008 - damien.carbery@sun.com 298 - Comment out %{_sysconfdir}/ggz.modules in %files as it's not being installed 299 this week. 300 * Sun May 11 2008 - Michal.Pryc (at] Sun.Com 301 - Adjusted %files after enabling encryption for libggz 302 * Mon Mar 24 2008 - patrick.ale (at] gmail.com 303 - Add %_datadir/gnome-games/sounds to the package list 304 * Wed Mar 19 2008 - damien.carbery (at] sun.com 305 - Add Build/Requires SUNWgnome-games/-devel as sounds require gstreamer. 306 * Fri Mar 14 2008 - damien.carbery (at] sun.com 307 - Remove 'sounds' dir from %files as it is not installed by 2.22 tarball. 308 * Sun Mar 09 2008 - damien.carbery (at] sun.com 309 - Fix perms for -devel package. 310 * Thu Mar 06 2008 - Michal.Pryc (at] Sun.Com 311 - Moved man packages for headers to the devel package. 312 * Thu Feb 28 2008 - brian.cameron (at] sun.com 313 - Remove ggz-python since it isn't needed. Sorry about the churn. 314 * Wed Feb 27 2008 - brian.cameron@sun.com 315 - Add gst-python, since glchess needs it. Rename %{ggzmod_build_dir} to 316 %{ggzclient_build_dir} since this is more accurate - the module is named 317 ggz_client_libs. Also add the ggzcore library to LD_LIBRARY_PATH and 318 LDFLAGS since this is needed by gst-python. 319 * Mon Feb 18 2008 - Michal.Pryc@Sun.Com 320 - Update %files for ggz-client-libs patch, which removes ggzwrap manpages 321 * Fri Feb 15 2008 - damien.carbery@sun.com 322 - Update %files for new tarball. 323 * Tue Jan 29 2008 - damien.carbery@sun.com 324 - Remove empty %{_libdir}/ggz dir. 325 * Fri Jan 25 2008 - damien.carbery@sun.com 326 - Add BuildRequires SUNWlibsdl-devel so that the modified sdl.m4 will be 327 available to configure. 328 * Sun Jan 20 2008 - patrick.ale@gmail.com 329 - Rework the XGETTEXT detection. 330 * Thu Jan 17 2008 - patrick.ale@gmail.com 331 - Add export XGETTEXT=`which` to pickup GNU getetxt shipped by CBE 332 * Wed Jan 09 2008 - damien.carbery@sun.com 333 - Set ACLOCAL_FLAGS to pick up modified intltool.m4. 334 * Mon Jan 07 2008 - damien.carbery@sun.com 335 - Update CFLAGS to find ggzcore.h. Update %files. Add devel package but don't 336 enable it as it is probably not useful. 337 * Mon Jan 07 2008 - damien.carbery (at] sun.com 338 - Add variable to specify location of ggzmod sources (in ggz-client-libs) and 339 add info to CFLAGS and LDFLAGS. 340 * Thu Jan 3 2008 - laca (at] sun.com 341 - use gconf-install.script instead of an inline script 342 * Wed Jan 02 2008 - damien.carbery (at] sun.com 343 - Add ggz-client-libs module. 344 - Add variable to specify location of libggz sources. Add info to CFLAGS and 345 LDFLAGS. 346 * Tue Dec 18 2007 - damien.carbery (at] sun.com 347 - Add libggz module. 348 * Wed Nov 21 2007 - damien.carbery (at] sun.com 349 - Correct non-l10n build. 350 * Mon Jun 11 2007 - damien.carbery (at] sun.com 351 - Update %files to 2.19.6 tarball - add %{_datadir}/gnome-games/gnotski. 352 * Mon Jun 11 2007 - damien.carbery (at] sun.com 353 - Update %files to 2.19.3 tarball. 354 * Wed Jun 06 2007 - damien.carbery (at] sun.com 355 - Add $CXX dir to PATH so that configure can find it. Set $CXX to 'CC', again so 356 configure can find it (via PATH). 357 * Fri Mar 23 2007 - damien.carbery (at] sun.com 358 - Add en_GB omf files to %files. 359 * Tue Feb 20 2007 - damien.carbery (at] sun.com 360 - Remove %if/%endif with_guile code as aisleriot is no longer built - it is 361 excluded via a configure option in gnome-games.spec. 362 * Fri Feb 16 2007 - damien.carbery (at] sun.com 363 - Add Build/Requires SUNWgnome-python-desktop/-devel. 364 * Mon Feb 12 2007 - damien.carbery (at] sun.com 365 - aisleriot game is only built when SFEguile is installed. Use %if/%endif to 366 include its files only when SFEguile is installed. 367 * Sat Feb 10 2007 - damien.carbery (at] sun.com 368 - Add sol-games dir to %files and aisleriot.schemas to %files and %preun root. 369 * Sun Jan 28 2007 - laca (at] sun.com 370 - add -xc99 to CFLAGS 371 * Tue Jan 09 2007 - damien.carbery (at] sun.com 372 - Add glchess.schemas to %preun root and to %files. 373 * Thu Dec 07 2006 - damien.carbery (at] sun.com 374 - Add python libs dir and glchess/gnome-sudoku dirs. 375 * Fri Nov 24 2006 - damien.carbery (at] sun.com 376 - Remove empty %{_libdir}. Remove glchess and gnome-sudoku games as they were 377 not installed. 378 * Wed Nov 22 2006 - damien.carbery (at] sun.com 379 - 2.17.1 changes - remove gataxx references; add glchess, gnome-sudoku and ggz 380 games. 381 * Thu Nov 09 2006 - damien.carbery (at] sun.com 382 - Add BuildRequires SUNWgnome-vfs-devel as gnome-libs pc file requires 383 gnome-vfs. 384 * Mon Aug 21 2006 - damien.carbery (at] sun.com 385 - Fix l10n package - C locale omf file was in base and l10n package. 386 * Thu Aug 17 2006 - damien.carbery (at] sun.com 387 - Change 'icons' line in %files to pick up files. 388 * Sat Aug 12 2006 - laca (at] sun.com 389 - delete some unnecessary env variables 390 * Sat Aug 12 2006 - laca (at] sun.com 391 - change datadir/icons permissions back to root:other since it's a stable 392 interface and wasn't supposed to be changed 393 * Fri Jul 14 2006 - laca (at] sun.com 394 - update %post/%postun/etc scripts to support diskless client setup, 395 part of 6448317 396 * Thu Jun 29 2006 - laca (at] sun.com 397 - update postrun scripts 398 * Mon Jun 26 2006 - laca (at] sun.com 399 - move back to /usr, part of CR 6412650 400 * Sun Jun 11 2006 - laca (at] sun.com 401 - change group from other to bin/sys 402 * Sat Jun 10 2006 - laca (at] sun.com 403 - delete -devel pkg: it was empty 404 * Thu May 25 2006 - laca (at] sun.com 405 - use post/preun scripts to install schemas into the merged gconf files 406 * Wed May 10 2006 - laca (at] sun.com 407 - merge -share pkg(s) into the base pkg(s) 408 * Mon Feb 20 2006 - damien.carbery (at] sun.com 409 - Complete update of Build/Requires after running check-deps.pl script. 410 * Thu Feb 16 2006 - damien.carbery (at] sun.com 411 - Update Build/Requires after running check-deps.pl script. 412 * Fri Jan 06 2006 - damien.carbery (at] sun.com 413 - Fix %files for updated file list. 414 * Sat Dec 3 2005 - laca (at] sun.com 415 - add %post script that runs update-desktop-database 416 * Tue Nov 29 2005 - laca (at] sun.com 417 - remove javahelp stuff 418 * Tue Sep 13 2005 - laca (at] sun.com 419 - Remove unpackaged files or add to %files 420 * Thu Jul 28 2005 - damien.carbery (at] sun.com 421 - Add SUNWlibrsvg-devel build dependency. Add SUNWlibrsvg runtime dependency. 422 * Tue May 24 2005 - brian.cameron (at] sun.com 423 - Bump to 2.10 and fix packaging. 424 * Mon Dec 13 2004 - damien.carbery (at] sun.com 425 - Move to /usr/sfw to implement ARC decision. 426 * Fri Nov 12 2004 - laca (at] sun.com 427 - move to /usr/demo/jds 428 * Tue Oct 05 2004 - matt.keenan (at] sun.com 429 - Added localized help to l10n package 430 * Sat Oct 02 2004 - laca (at] sun.com 431 - added %pkgbuild_postprocess 432 * Mon Aug 23 2004 - laca (at] sun.com 433 - s/SUNWpl5u/SUNWperl584usr/ 434 * Sat Jun 26 2004 shirley.woo (at] sun.com 435 - Changed install location to /usr/... 436 * Wed Jun 2 2004 - takao.fujiwara (at] sun.com 437 - Added %{_datadir}/locale to install l10n messages 438 * Thu May 27 2004 - damien.carbery (at] sun.com 439 - Comment out SUNWcspu lines. Will uncomment when Metropolis branch created. 440 * Wed May 26 2004 - damien.carbery (at] sun.com 441 - Add SUNWcspu (with libucb.so and scandir) to Requires and BuildRequires. 442 configure was breaking because of its absense. 443 * Mon May 10 2004 - brian.cameron (at] sun.com 444 - Putting back %{_sysconfig}/gconf into packaging which got 445 accidently simplified away in Laca's last change. Now the 446 games work again. 447 * Tue Apr 20 2004 - laca@sun.com 448 - simlify %files 449 - add javahelp 450 * Thu Apr 08 2004 - laca@sun.com 451 - added missing %defattr 452 * Fri Mar 26 2004 - brian.cameron@sun.com 453 - Created, 454