From e81cb8338fe5b0fffa039ccd049b7998659b57df Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Arreola=20Rodr=C3=ADguez?= Date: Wed, 23 May 2018 15:46:00 -0500 Subject: [PATCH] Plantilla inicial de Bean Counters. --- .gitignore | 45 + ABOUT-NLS | 1379 ++++++++++++++++++++ AUTHORS | 1 + COPYING | 674 ++++++++++ ChangeLog | 0 INSTALL | 370 ++++++ Makefile.am | 13 + NEWS | 0 README | 0 configure.ac | 125 ++ data/Makefile.am | 39 + data/coffee_bag.ico | Bin 0 -> 370070 bytes data/desktop/128x128/coffee_bag.png | Bin 0 -> 8377 bytes data/desktop/16x16/coffee_bag.png | Bin 0 -> 754 bytes data/desktop/256x256/coffee_bag.png | Bin 0 -> 17279 bytes data/desktop/32x32/coffee_bag.png | Bin 0 -> 1741 bytes data/desktop/48x48/coffee_bag.png | Bin 0 -> 2946 bytes data/desktop/64x64/coffee_bag.png | Bin 0 -> 4070 bytes data/desktop/bean_counters_classic.desktop | 9 + etc/Info.plist.in | 28 + etc/Makefile.am | 3 + etc/coffee_bag.icns | Bin 0 -> 84227 bytes po/Makevars | 78 ++ po/POTFILES.in | 2 + src/Makefile.am | 81 ++ src/SDLMain.h | 16 + src/SDLMain.m | 381 ++++++ src/beans.c | 387 ++++++ src/coffee_bag.rc | 1 + src/gettext.h | 292 +++++ src/path.c | 305 +++++ src/path.h | 35 + 32 files changed, 4264 insertions(+) create mode 100644 .gitignore create mode 100644 ABOUT-NLS create mode 100644 AUTHORS create mode 100644 COPYING create mode 100644 ChangeLog create mode 100644 INSTALL create mode 100644 Makefile.am create mode 100644 NEWS create mode 100644 README create mode 100644 configure.ac create mode 100644 data/Makefile.am create mode 100644 data/coffee_bag.ico create mode 100644 data/desktop/128x128/coffee_bag.png create mode 100644 data/desktop/16x16/coffee_bag.png create mode 100644 data/desktop/256x256/coffee_bag.png create mode 100644 data/desktop/32x32/coffee_bag.png create mode 100644 data/desktop/48x48/coffee_bag.png create mode 100644 data/desktop/64x64/coffee_bag.png create mode 100644 data/desktop/bean_counters_classic.desktop create mode 100644 etc/Info.plist.in create mode 100644 etc/Makefile.am create mode 100644 etc/coffee_bag.icns create mode 100644 po/Makevars create mode 100644 po/POTFILES.in create mode 100644 src/Makefile.am create mode 100644 src/SDLMain.h create mode 100644 src/SDLMain.m create mode 100644 src/beans.c create mode 100644 src/coffee_bag.rc create mode 100644 src/gettext.h create mode 100644 src/path.c create mode 100644 src/path.h diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..d4d600c --- /dev/null +++ b/.gitignore @@ -0,0 +1,45 @@ +# http://www.gnu.org/software/automake +Makefile.in + +# http://www.gnu.org/software/autoconf +autom4te.cache +aclocal.m4 +compile +configure +depcomp +install-sh +missing + +build-aux/ + +config.h.in +config.h +Makefile +config.log +config.status +.deps +src/bean-counters-classic +*.o +stamp-h1 + +*~ + +m4 + +po/Makefile.in.in +po/Makevars.template +po/POTFILES +po/Rules-quot +po/boldquot.sed +po/en@boldquot.header +po/en@quot.header +po/insert-header.sin +po/quot.sed +po/remove-potcdate.sed +po/remove-potcdate.sin +po/stamp-po + +*.gmo +*.mo + +etc/Info.plist diff --git a/ABOUT-NLS b/ABOUT-NLS new file mode 100644 index 0000000..3cc8286 --- /dev/null +++ b/ABOUT-NLS @@ -0,0 +1,1379 @@ +1 Notes on the Free Translation Project +*************************************** + +Free software is going international! The Free Translation Project is a +way to get maintainers of free software, translators, and users all +together, so that free software will gradually become able to speak many +languages. A few packages already provide translations for their +messages. + + If you found this 'ABOUT-NLS' file inside a distribution, you may +assume that the distributed package does use GNU 'gettext' internally, +itself available at your nearest GNU archive site. But you do _not_ +need to install GNU 'gettext' prior to configuring, installing or using +this package with messages translated. + + Installers will find here some useful hints. These notes also +explain how users should proceed for getting the programs to use the +available translations. They tell how people wanting to contribute and +work on translations can contact the appropriate team. + +1.1 INSTALL Matters +=================== + +Some packages are "localizable" when properly installed; the programs +they contain can be made to speak your own native language. Most such +packages use GNU 'gettext'. Other packages have their own ways to +internationalization, predating GNU 'gettext'. + + By default, this package will be installed to allow translation of +messages. It will automatically detect whether the system already +provides the GNU 'gettext' functions. Installers may use special +options at configuration time for changing the default behaviour. The +command: + + ./configure --disable-nls + +will _totally_ disable translation of messages. + + When you already have GNU 'gettext' installed on your system and run +configure without an option for your new package, 'configure' will +probably detect the previously built and installed 'libintl' library and +will decide to use it. If not, you may have to to use the +'--with-libintl-prefix' option to tell 'configure' where to look for it. + + Internationalized packages usually have many 'po/LL.po' files, where +LL gives an ISO 639 two-letter code identifying the language. Unless +translations have been forbidden at 'configure' time by using the +'--disable-nls' switch, all available translations are installed +together with the package. However, the environment variable 'LINGUAS' +may be set, prior to configuration, to limit the installed set. +'LINGUAS' should then contain a space separated list of two-letter +codes, stating which languages are allowed. + +1.2 Using This Package +====================== + +As a user, if your language has been installed for this package, you +only have to set the 'LANG' environment variable to the appropriate +'LL_CC' combination. If you happen to have the 'LC_ALL' or some other +'LC_xxx' environment variables set, you should unset them before setting +'LANG', otherwise the setting of 'LANG' will not have the desired +effect. Here 'LL' is an ISO 639 two-letter language code, and 'CC' is +an ISO 3166 two-letter country code. For example, let's suppose that +you speak German and live in Germany. At the shell prompt, merely +execute 'setenv LANG de_DE' (in 'csh'), 'export LANG; LANG=de_DE' (in +'sh') or 'export LANG=de_DE' (in 'bash'). This can be done from your +'.login' or '.profile' file, once and for all. + + You might think that the country code specification is redundant. +But in fact, some languages have dialects in different countries. For +example, 'de_AT' is used for Austria, and 'pt_BR' for Brazil. The +country code serves to distinguish the dialects. + + The locale naming convention of 'LL_CC', with 'LL' denoting the +language and 'CC' denoting the country, is the one use on systems based +on GNU libc. On other systems, some variations of this scheme are used, +such as 'LL' or 'LL_CC.ENCODING'. You can get the list of locales +supported by your system for your language by running the command +'locale -a | grep '^LL''. + + Not all programs have translations for all languages. By default, an +English message is shown in place of a nonexistent translation. If you +understand other languages, you can set up a priority list of languages. +This is done through a different environment variable, called +'LANGUAGE'. GNU 'gettext' gives preference to 'LANGUAGE' over 'LANG' +for the purpose of message handling, but you still need to have 'LANG' +set to the primary language; this is required by other parts of the +system libraries. For example, some Swedish users who would rather read +translations in German than English for when Swedish is not available, +set 'LANGUAGE' to 'sv:de' while leaving 'LANG' to 'sv_SE'. + + Special advice for Norwegian users: The language code for Norwegian +bokma*l changed from 'no' to 'nb' recently (in 2003). During the +transition period, while some message catalogs for this language are +installed under 'nb' and some older ones under 'no', it's recommended +for Norwegian users to set 'LANGUAGE' to 'nb:no' so that both newer and +older translations are used. + + In the 'LANGUAGE' environment variable, but not in the 'LANG' +environment variable, 'LL_CC' combinations can be abbreviated as 'LL' to +denote the language's main dialect. For example, 'de' is equivalent to +'de_DE' (German as spoken in Germany), and 'pt' to 'pt_PT' (Portuguese +as spoken in Portugal) in this context. + +1.3 Translating Teams +===================== + +For the Free Translation Project to be a success, we need interested +people who like their own language and write it well, and who are also +able to synergize with other translators speaking the same language. +Each translation team has its own mailing list. The up-to-date list of +teams can be found at the Free Translation Project's homepage, +'http://translationproject.org/', in the "Teams" area. + + If you'd like to volunteer to _work_ at translating messages, you +should become a member of the translating team for your own language. +The subscribing address is _not_ the same as the list itself, it has +'-request' appended. For example, speakers of Swedish can send a +message to 'sv-request@li.org', having this message body: + + subscribe + + Keep in mind that team members are expected to participate _actively_ +in translations, or at solving translational difficulties, rather than +merely lurking around. If your team does not exist yet and you want to +start one, or if you are unsure about what to do or how to get started, +please write to 'coordinator@translationproject.org' to reach the +coordinator for all translator teams. + + The English team is special. It works at improving and uniformizing +the terminology in use. Proven linguistic skills are praised more than +programming skills, here. + +1.4 Available Packages +====================== + +Languages are not equally supported in all packages. The following +matrix shows the current state of internationalization, as of Jun 2014. +The matrix shows, in regard of each package, for which languages PO +files have been submitted to translation coordination, with a +translation percentage of at least 50%. + + Ready PO files af am an ar as ast az be bg bn bn_IN bs ca crh cs + +---------------------------------------------------+ + a2ps | [] [] [] | + aegis | | + anubis | | + aspell | [] [] [] | + bash | [] [] [] | + bfd | | + binutils | [] | + bison | | + bison-runtime | [] | + buzztrax | [] | + ccd2cue | | + ccide | | + cflow | | + clisp | | + coreutils | [] [] | + cpio | | + cppi | | + cpplib | [] | + cryptsetup | [] | + datamash | | + denemo | [] [] | + dfarc | [] | + dialog | [] [] [] | + dico | | + diffutils | [] | + dink | [] | + direvent | | + doodle | [] | + dos2unix | | + dos2unix-man | | + e2fsprogs | [] [] | + enscript | [] | + exif | [] | + fetchmail | [] [] | + findutils | [] | + flex | [] | + freedink | [] [] | + fusionforge | | + gas | | + gawk | [] | + gcal | [] | + gcc | | + gdbm | | + gettext-examples | [] [] [] [] [] | + gettext-runtime | [] [] [] | + gettext-tools | [] [] | + gjay | | + glunarclock | [] [] [] | + gnubiff | [] | + gnubik | [] | + gnucash | () () [] | + gnuchess | | + gnulib | [] | + gnunet | | + gnunet-gtk | | + gold | | + gphoto2 | [] | + gprof | [] | + gramadoir | | + grep | [] [] [] | + grub | [] | + gsasl | | + gss | | + gst-plugins-bad | [] [] | + gst-plugins-base | [] [] [] | + gst-plugins-good | [] [] [] | + gst-plugins-ugly | [] [] [] | + gstreamer | [] [] [] [] | + gtick | [] | + gtkam | [] [] | + gtkspell | [] [] [] [] [] | + guix | | + guix-packages | | + gutenprint | [] | + hello | [] | + help2man | | + help2man-texi | | + hylafax | | + idutils | | + iso_15924 | [] | + iso_3166 | [] [] [] [] [] [] [] [] [] [] | + iso_3166_2 | | + iso_4217 | [] | + iso_639 | [] [] [] [] [] [] [] [] [] | + iso_639_3 | [] [] | + iso_639_5 | | + jwhois | | + kbd | [] | + klavaro | [] [] [] [] [] | + ld | [] | + leafpad | [] [] [] [] | + libc | [] [] [] | + libexif | () | + libextractor | | + libgnutls | [] | + libgphoto2 | [] | + libgphoto2_port | [] | + libgsasl | | + libiconv | [] [] | + libidn | [] | + liferea | [] [] [] [] | + lilypond | [] [] | + lordsawar | [] | + lprng | | + lynx | [] [] | + m4 | [] | + mailfromd | | + mailutils | | + make | [] | + man-db | [] [] | + man-db-manpages | | + midi-instruments | [] [] [] | + minicom | [] | + mkisofs | [] | + myserver | [] | + nano | [] [] [] | + opcodes | | + parted | [] | + pies | | + pnmixer | | + popt | [] | + procps-ng | | + procps-ng-man | | + psmisc | [] | + pspp | [] | + pushover | [] | + pwdutils | | + pyspread | | + radius | [] | + recode | [] [] [] | + recutils | | + rpm | | + rush | | + sarg | | + sed | [] [] [] [] | + sharutils | [] | + shishi | | + skribilo | | + solfege | [] [] | + solfege-manual | | + spotmachine | | + sudo | [] [] | + sudoers | [] [] | + sysstat | [] | + tar | [] [] [] | + texinfo | [] [] | + texinfo_document | [] [] | + tigervnc | [] | + tin | | + tin-man | | + tracgoogleappsa... | | + trader | | + util-linux | [] | + ve | | + vice | | + vmm | | + vorbis-tools | [] | + wastesedge | | + wcd | | + wcd-man | | + wdiff | [] [] | + wget | [] | + wyslij-po | | + xboard | | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] | + +---------------------------------------------------+ + af am an ar as ast az be bg bn bn_IN bs ca crh cs + 4 0 2 5 3 11 0 8 25 3 3 1 55 4 74 + + da de el en en_GB en_ZA eo es et eu fa fi fr + +--------------------------------------------------+ + a2ps | [] [] [] [] [] [] [] [] [] | + aegis | [] [] [] [] | + anubis | [] [] [] [] [] | + aspell | [] [] [] [] [] [] [] | + bash | [] [] [] | + bfd | [] [] [] [] | + binutils | [] [] [] | + bison | [] [] [] [] [] [] [] [] | + bison-runtime | [] [] [] [] [] [] [] [] | + buzztrax | [] [] [] [] | + ccd2cue | [] [] [] [] | + ccide | [] [] [] [] [] [] | + cflow | [] [] [] [] [] | + clisp | [] [] [] [] [] | + coreutils | [] [] [] [] [] | + cpio | [] [] [] [] [] | + cppi | [] [] [] [] [] | + cpplib | [] [] [] [] [] [] | + cryptsetup | [] [] [] [] [] | + datamash | [] [] [] [] | + denemo | [] | + dfarc | [] [] [] [] [] [] | + dialog | [] [] [] [] [] [] [] [] [] | + dico | [] [] [] [] | + diffutils | [] [] [] [] [] [] | + dink | [] [] [] [] [] [] | + direvent | [] [] [] [] | + doodle | [] [] [] [] | + dos2unix | [] [] [] [] [] | + dos2unix-man | [] [] [] | + e2fsprogs | [] [] [] [] [] | + enscript | [] [] [] [] [] [] | + exif | [] [] [] [] [] [] | + fetchmail | [] () [] [] [] [] [] | + findutils | [] [] [] [] [] [] [] [] | + flex | [] [] [] [] [] [] | + freedink | [] [] [] [] [] [] [] [] | + fusionforge | [] [] [] | + gas | [] [] [] | + gawk | [] [] [] [] [] | + gcal | [] [] [] [] | + gcc | [] | + gdbm | [] [] [] [] [] | + gettext-examples | [] [] [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] [] | + gettext-tools | [] [] [] [] [] | + gjay | [] [] [] [] | + glunarclock | [] [] [] [] [] | + gnubiff | () [] [] () | + gnubik | [] [] [] [] [] | + gnucash | [] () () () () () () | + gnuchess | [] [] [] [] | + gnulib | [] [] [] [] [] [] [] | + gnunet | [] | + gnunet-gtk | [] | + gold | [] [] [] | + gphoto2 | [] () [] [] | + gprof | [] [] [] [] [] [] | + gramadoir | [] [] [] [] [] | + grep | [] [] [] [] [] [] [] | + grub | [] [] [] [] [] | + gsasl | [] [] [] [] [] | + gss | [] [] [] [] [] | + gst-plugins-bad | [] [] [] | + gst-plugins-base | [] [] [] [] [] [] | + gst-plugins-good | [] [] [] [] [] [] [] | + gst-plugins-ugly | [] [] [] [] [] [] [] [] | + gstreamer | [] [] [] [] [] [] [] | + gtick | [] () [] [] [] | + gtkam | [] () [] [] [] [] | + gtkspell | [] [] [] [] [] [] [] [] | + guix | [] [] | + guix-packages | | + gutenprint | [] [] [] [] | + hello | [] [] [] [] [] [] [] [] | + help2man | [] [] [] [] [] [] [] | + help2man-texi | [] [] [] | + hylafax | [] [] | + idutils | [] [] [] [] [] | + iso_15924 | [] () [] [] () [] () | + iso_3166 | [] () [] [] [] [] () [] () | + iso_3166_2 | [] () () () | + iso_4217 | [] () [] [] [] () [] () | + iso_639 | [] () [] [] () [] () | + iso_639_3 | () () () | + iso_639_5 | () () () | + jwhois | [] [] [] [] [] | + kbd | [] [] [] [] [] [] | + klavaro | [] [] [] [] [] [] [] | + ld | [] [] [] [] | + leafpad | [] [] [] [] [] [] [] [] | + libc | [] [] [] [] [] | + libexif | [] [] () [] [] | + libextractor | [] | + libgnutls | [] [] [] [] | + libgphoto2 | [] () [] | + libgphoto2_port | [] () [] [] [] [] | + libgsasl | [] [] [] [] [] | + libiconv | [] [] [] [] [] [] [] | + libidn | [] [] [] [] [] | + liferea | [] () [] [] [] [] [] | + lilypond | [] [] [] [] [] [] | + lordsawar | [] [] | + lprng | | + lynx | [] [] [] [] [] [] | + m4 | [] [] [] [] [] [] | + mailfromd | [] | + mailutils | [] [] [] [] | + make | [] [] [] [] [] | + man-db | [] [] [] [] | + man-db-manpages | [] [] | + midi-instruments | [] [] [] [] [] [] [] [] [] | + minicom | [] [] [] [] [] | + mkisofs | [] [] [] | + myserver | [] [] [] [] | + nano | [] [] [] [] [] [] [] | + opcodes | [] [] [] [] [] | + parted | [] [] [] | + pies | [] | + pnmixer | [] [] | + popt | [] [] [] [] [] [] | + procps-ng | [] [] | + procps-ng-man | [] [] | + psmisc | [] [] [] [] [] [] [] | + pspp | [] [] [] | + pushover | () [] [] [] | + pwdutils | [] [] [] | + pyspread | [] [] [] | + radius | [] [] | + recode | [] [] [] [] [] [] [] | + recutils | [] [] [] [] | + rpm | [] [] [] [] [] | + rush | [] [] [] | + sarg | [] [] | + sed | [] [] [] [] [] [] [] [] | + sharutils | [] [] [] [] | + shishi | [] [] [] | + skribilo | [] [] [] | + solfege | [] [] [] [] [] [] [] [] | + solfege-manual | [] [] [] [] [] | + spotmachine | [] [] [] [] [] | + sudo | [] [] [] [] [] [] | + sudoers | [] [] [] [] [] [] | + sysstat | [] [] [] [] [] [] | + tar | [] [] [] [] [] [] [] | + texinfo | [] [] [] [] [] | + texinfo_document | [] [] [] [] | + tigervnc | [] [] [] [] [] [] | + tin | [] [] [] [] | + tin-man | [] | + tracgoogleappsa... | [] [] [] [] [] | + trader | [] [] [] [] [] [] | + util-linux | [] [] [] [] | + ve | [] [] [] [] [] | + vice | () () () | + vmm | [] [] | + vorbis-tools | [] [] [] [] | + wastesedge | [] | + wcd | [] [] [] [] | + wcd-man | [] | + wdiff | [] [] [] [] [] [] [] | + wget | [] [] [] [] [] [] | + wyslij-po | [] [] [] [] | + xboard | [] [] [] [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] [] [] [] [] | + +--------------------------------------------------+ + da de el en en_GB en_ZA eo es et eu fa fi fr + 119 131 32 1 6 0 94 95 22 13 4 102 139 + + ga gd gl gu he hi hr hu hy ia id is it ja ka kk + +-------------------------------------------------+ + a2ps | [] [] [] [] | + aegis | [] | + anubis | [] [] [] [] | + aspell | [] [] [] [] [] | + bash | [] [] [] [] | + bfd | [] [] | + binutils | [] [] [] | + bison | [] | + bison-runtime | [] [] [] [] [] [] [] [] | + buzztrax | | + ccd2cue | [] | + ccide | [] [] | + cflow | [] [] [] | + clisp | | + coreutils | [] [] | + cpio | [] [] [] [] [] [] | + cppi | [] [] [] [] [] | + cpplib | [] [] | + cryptsetup | [] | + datamash | | + denemo | [] | + dfarc | [] [] [] | + dialog | [] [] [] [] [] [] [] [] [] [] | + dico | | + diffutils | [] [] [] [] | + dink | [] | + direvent | [] | + doodle | [] [] | + dos2unix | [] [] | + dos2unix-man | | + e2fsprogs | [] [] | + enscript | [] [] [] | + exif | [] [] [] [] [] [] | + fetchmail | [] [] [] | + findutils | [] [] [] [] [] [] [] | + flex | [] | + freedink | [] [] [] [] | + fusionforge | | + gas | [] | + gawk | [] () [] | + gcal | | + gcc | | + gdbm | | + gettext-examples | [] [] [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] [] [] | + gettext-tools | [] [] [] | + gjay | [] | + glunarclock | [] [] [] [] [] [] | + gnubiff | [] [] () | + gnubik | [] [] [] | + gnucash | () () () () () | + gnuchess | | + gnulib | [] [] [] [] [] | + gnunet | | + gnunet-gtk | | + gold | [] [] | + gphoto2 | [] [] [] [] | + gprof | [] [] [] [] | + gramadoir | [] [] [] | + grep | [] [] [] [] [] [] [] | + grub | [] [] [] | + gsasl | [] [] [] [] [] | + gss | [] [] [] [] [] | + gst-plugins-bad | [] [] [] | + gst-plugins-base | [] [] [] [] | + gst-plugins-good | [] [] [] [] [] [] | + gst-plugins-ugly | [] [] [] [] [] [] | + gstreamer | [] [] [] [] [] | + gtick | [] [] [] [] [] | + gtkam | [] [] [] [] [] | + gtkspell | [] [] [] [] [] [] [] [] [] [] | + guix | | + guix-packages | | + gutenprint | [] [] [] | + hello | [] [] [] [] [] | + help2man | [] [] [] | + help2man-texi | | + hylafax | [] | + idutils | [] [] | + iso_15924 | [] [] [] [] [] [] | + iso_3166 | [] [] [] [] [] [] [] [] [] [] [] [] [] | + iso_3166_2 | [] [] | + iso_4217 | [] [] [] [] [] [] | + iso_639 | [] [] [] [] [] [] [] [] [] | + iso_639_3 | [] [] | + iso_639_5 | | + jwhois | [] [] [] [] | + kbd | [] [] [] | + klavaro | [] [] [] [] [] | + ld | [] [] [] [] | + leafpad | [] [] [] [] [] [] [] () | + libc | [] [] [] [] [] | + libexif | [] | + libextractor | | + libgnutls | [] | + libgphoto2 | [] [] | + libgphoto2_port | [] [] | + libgsasl | [] [] [] [] | + libiconv | [] [] [] [] [] [] [] | + libidn | [] [] [] [] | + liferea | [] [] [] [] [] | + lilypond | [] | + lordsawar | | + lprng | [] | + lynx | [] [] [] [] | + m4 | [] [] [] [] [] | + mailfromd | | + mailutils | | + make | [] [] [] [] | + man-db | [] [] | + man-db-manpages | [] [] | + midi-instruments | [] [] [] [] [] [] [] [] [] | + minicom | [] [] [] | + mkisofs | [] [] | + myserver | [] | + nano | [] [] [] [] [] [] | + opcodes | [] [] [] | + parted | [] [] [] [] [] | + pies | | + pnmixer | [] [] | + popt | [] [] [] [] [] [] [] [] [] [] | + procps-ng | | + procps-ng-man | | + psmisc | [] [] [] [] | + pspp | [] [] | + pushover | [] | + pwdutils | [] | + pyspread | | + radius | [] | + recode | [] [] [] [] [] [] [] | + recutils | | + rpm | [] | + rush | [] | + sarg | | + sed | [] [] [] [] [] [] [] | + sharutils | | + shishi | | + skribilo | [] | + solfege | [] [] | + solfege-manual | | + spotmachine | | + sudo | [] [] [] [] | + sudoers | [] [] [] | + sysstat | [] [] [] [] | + tar | [] [] [] [] [] [] | + texinfo | [] [] [] | + texinfo_document | [] [] [] | + tigervnc | | + tin | | + tin-man | | + tracgoogleappsa... | [] [] [] [] | + trader | [] [] | + util-linux | [] | + ve | [] | + vice | () () | + vmm | | + vorbis-tools | [] [] | + wastesedge | [] | + wcd | | + wcd-man | | + wdiff | [] [] [] | + wget | [] [] [] [] | + wyslij-po | [] [] [] | + xboard | | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] [] [] [] | + +-------------------------------------------------+ + ga gd gl gu he hi hr hu hy ia id is it ja ka kk + 35 2 47 4 8 2 60 71 2 6 81 11 87 57 0 3 + + kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl + +--------------------------------------------------+ + a2ps | [] [] | + aegis | [] | + anubis | [] [] [] | + aspell | [] [] | + bash | [] [] | + bfd | | + binutils | | + bison | [] | + bison-runtime | [] [] [] [] [] [] | + buzztrax | | + ccd2cue | | + ccide | [] [] | + cflow | [] | + clisp | [] | + coreutils | [] [] | + cpio | [] | + cppi | | + cpplib | [] | + cryptsetup | [] | + datamash | [] [] | + denemo | | + dfarc | [] [] | + dialog | [] [] [] [] [] [] | + dico | | + diffutils | [] [] [] | + dink | [] | + direvent | [] | + doodle | [] | + dos2unix | [] [] | + dos2unix-man | [] | + e2fsprogs | [] | + enscript | [] | + exif | [] [] [] | + fetchmail | [] | + findutils | [] [] | + flex | [] | + freedink | [] [] | + fusionforge | | + gas | | + gawk | [] | + gcal | | + gcc | | + gdbm | | + gettext-examples | [] [] [] [] [] [] | + gettext-runtime | [] [] [] | + gettext-tools | [] | + gjay | | + glunarclock | [] [] | + gnubiff | [] | + gnubik | [] [] | + gnucash | () () () () () () () [] | + gnuchess | [] [] | + gnulib | [] | + gnunet | | + gnunet-gtk | | + gold | | + gphoto2 | [] | + gprof | [] [] | + gramadoir | [] | + grep | [] [] | + grub | [] [] [] | + gsasl | [] | + gss | | + gst-plugins-bad | [] [] [] | + gst-plugins-base | [] [] [] | + gst-plugins-good | [] [] [] [] | + gst-plugins-ugly | [] [] [] [] [] | + gstreamer | [] [] [] | + gtick | [] | + gtkam | [] [] | + gtkspell | [] [] [] [] [] [] [] | + guix | | + guix-packages | | + gutenprint | [] | + hello | [] [] [] | + help2man | [] | + help2man-texi | | + hylafax | [] | + idutils | [] | + iso_15924 | () [] [] | + iso_3166 | [] [] [] () [] [] [] [] [] [] | + iso_3166_2 | () [] | + iso_4217 | () [] [] [] | + iso_639 | [] [] () [] [] [] [] | + iso_639_3 | [] () [] | + iso_639_5 | () | + jwhois | [] [] | + kbd | [] | + klavaro | [] [] | + ld | | + leafpad | [] [] [] [] [] | + libc | [] [] | + libexif | [] | + libextractor | [] | + libgnutls | [] [] | + libgphoto2 | [] | + libgphoto2_port | [] | + libgsasl | [] | + libiconv | [] [] | + libidn | [] | + liferea | [] [] [] | + lilypond | [] | + lordsawar | | + lprng | | + lynx | [] | + m4 | [] | + mailfromd | | + mailutils | | + make | [] [] | + man-db | [] | + man-db-manpages | [] | + midi-instruments | [] [] [] [] [] [] [] | + minicom | [] | + mkisofs | [] | + myserver | | + nano | [] [] [] | + opcodes | [] | + parted | [] [] | + pies | | + pnmixer | [] | + popt | [] [] [] [] [] | + procps-ng | | + procps-ng-man | | + psmisc | [] | + pspp | [] [] | + pushover | | + pwdutils | [] | + pyspread | | + radius | [] | + recode | [] [] | + recutils | [] | + rpm | [] | + rush | [] | + sarg | | + sed | [] [] | + sharutils | [] | + shishi | | + skribilo | | + solfege | [] [] | + solfege-manual | [] | + spotmachine | [] | + sudo | [] [] [] | + sudoers | [] [] [] | + sysstat | [] [] | + tar | [] [] [] | + texinfo | [] | + texinfo_document | [] | + tigervnc | [] | + tin | | + tin-man | | + tracgoogleappsa... | [] [] [] | + trader | [] | + util-linux | [] | + ve | [] | + vice | [] | + vmm | [] | + vorbis-tools | [] | + wastesedge | [] | + wcd | [] | + wcd-man | [] | + wdiff | [] | + wget | [] [] | + wyslij-po | [] | + xboard | [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] | + +--------------------------------------------------+ + kn ko ku ky lg lt lv mk ml mn mr ms mt nb ne nl + 5 15 4 6 0 13 23 3 3 3 4 11 2 42 1 125 + + nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr + +------------------------------------------------+ + a2ps | [] [] [] [] [] [] [] | + aegis | [] [] | + anubis | [] [] [] | + aspell | [] [] [] [] [] [] [] | + bash | [] [] [] [] [] [] | + bfd | [] [] | + binutils | [] [] | + bison | [] [] [] | + bison-runtime | [] [] [] [] [] [] [] [] | + buzztrax | [] | + ccd2cue | [] [] | + ccide | [] [] [] | + cflow | [] [] [] | + clisp | [] | + coreutils | [] [] [] [] | + cpio | [] [] [] | + cppi | [] [] [] | + cpplib | [] [] [] | + cryptsetup | [] [] [] | + datamash | [] [] | + denemo | | + dfarc | [] [] [] | + dialog | [] [] [] [] [] [] [] | + dico | [] | + diffutils | [] [] [] | + dink | | + direvent | [] [] [] | + doodle | [] [] | + dos2unix | [] [] [] [] | + dos2unix-man | [] [] | + e2fsprogs | [] | + enscript | [] [] [] [] [] [] | + exif | [] [] [] [] [] [] | + fetchmail | [] [] [] | + findutils | [] [] [] [] [] [] | + flex | [] [] [] [] [] | + freedink | [] [] [] [] [] | + fusionforge | | + gas | | + gawk | [] | + gcal | | + gcc | | + gdbm | [] [] [] | + gettext-examples | [] [] [] [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] [] [] [] [] | + gettext-tools | [] [] [] [] [] [] [] | + gjay | [] | + glunarclock | [] [] [] [] [] [] | + gnubiff | [] | + gnubik | [] [] [] [] | + gnucash | () () () () () [] | + gnuchess | [] [] | + gnulib | [] [] [] [] [] | + gnunet | | + gnunet-gtk | | + gold | | + gphoto2 | [] [] [] [] [] | + gprof | [] [] [] [] | + gramadoir | [] [] | + grep | [] [] [] [] [] [] | + grub | [] [] [] [] [] | + gsasl | [] [] [] | + gss | [] [] [] [] | + gst-plugins-bad | [] [] [] [] [] | + gst-plugins-base | [] [] [] [] [] [] | + gst-plugins-good | [] [] [] [] [] [] [] | + gst-plugins-ugly | [] [] [] [] [] [] [] | + gstreamer | [] [] [] [] [] [] [] | + gtick | [] [] [] [] [] | + gtkam | [] [] [] [] [] [] | + gtkspell | [] [] [] [] [] [] [] [] [] | + guix | | + guix-packages | | + gutenprint | [] [] | + hello | [] [] [] [] [] [] | + help2man | [] [] [] [] | + help2man-texi | [] | + hylafax | | + idutils | [] [] [] | + iso_15924 | [] () [] [] [] [] | + iso_3166 | [] [] [] [] () [] [] [] [] [] [] [] [] | + iso_3166_2 | [] () [] | + iso_4217 | [] [] () [] [] [] [] [] | + iso_639 | [] [] [] () [] [] [] [] [] [] | + iso_639_3 | [] () | + iso_639_5 | () [] | + jwhois | [] [] [] [] | + kbd | [] [] | + klavaro | [] [] [] [] [] | + ld | | + leafpad | [] [] [] [] [] [] [] [] | + libc | [] [] [] | + libexif | [] () [] | + libextractor | [] | + libgnutls | [] | + libgphoto2 | [] | + libgphoto2_port | [] [] [] [] [] | + libgsasl | [] [] [] [] | + libiconv | [] [] [] [] [] | + libidn | [] [] [] | + liferea | [] [] [] [] () [] [] | + lilypond | | + lordsawar | | + lprng | [] | + lynx | [] [] | + m4 | [] [] [] [] [] | + mailfromd | [] | + mailutils | [] | + make | [] [] [] | + man-db | [] [] [] | + man-db-manpages | [] [] [] | + midi-instruments | [] [] [] [] [] [] [] [] | + minicom | [] [] [] [] | + mkisofs | [] [] [] | + myserver | [] [] | + nano | [] [] [] [] [] [] | + opcodes | | + parted | [] [] [] [] [] [] | + pies | [] | + pnmixer | [] | + popt | [] [] [] [] [] [] | + procps-ng | [] | + procps-ng-man | [] | + psmisc | [] [] [] [] | + pspp | [] [] | + pushover | | + pwdutils | [] | + pyspread | [] [] | + radius | [] [] | + recode | [] [] [] [] [] [] [] [] | + recutils | [] [] | + rpm | [] | + rush | [] [] [] | + sarg | [] [] | + sed | [] [] [] [] [] [] [] [] | + sharutils | [] [] [] | + shishi | [] [] | + skribilo | [] | + solfege | [] [] [] | + solfege-manual | [] [] | + spotmachine | [] [] | + sudo | [] [] [] [] [] [] | + sudoers | [] [] [] [] | + sysstat | [] [] [] [] [] | + tar | [] [] [] [] [] | + texinfo | [] [] [] | + texinfo_document | [] [] | + tigervnc | [] [] [] | + tin | [] | + tin-man | | + tracgoogleappsa... | [] [] [] [] | + trader | [] [] | + util-linux | [] [] | + ve | [] [] [] | + vice | | + vmm | | + vorbis-tools | [] [] [] | + wastesedge | | + wcd | | + wcd-man | | + wdiff | [] [] [] [] [] | + wget | [] [] [] [] [] | + wyslij-po | [] [] [] [] | + xboard | [] [] [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] [] | + +------------------------------------------------+ + nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr + 7 3 6 114 1 12 88 32 82 3 40 45 7 101 + + sv sw ta te tg th tr uk ur vi wa wo zh_CN + +----------------------------------------------+ + a2ps | [] [] [] [] [] | + aegis | [] | + anubis | [] [] [] [] | + aspell | [] [] [] [] [] | + bash | [] [] [] [] | + bfd | [] [] [] | + binutils | [] [] [] | + bison | [] [] [] [] | + bison-runtime | [] [] [] [] [] [] | + buzztrax | [] [] [] | + ccd2cue | [] [] [] | + ccide | [] [] [] [] | + cflow | [] [] [] [] | + clisp | | + coreutils | [] [] [] | + cpio | [] [] [] [] [] | + cppi | [] [] [] [] | + cpplib | [] [] [] [] [] | + cryptsetup | [] [] [] | + datamash | [] [] [] | + denemo | [] | + dfarc | [] [] | + dialog | [] [] [] [] [] [] | + dico | [] | + diffutils | [] [] [] [] [] | + dink | [] | + direvent | [] [] | + doodle | [] [] | + dos2unix | [] [] [] [] | + dos2unix-man | [] [] [] | + e2fsprogs | [] [] [] [] | + enscript | [] [] [] [] | + exif | [] [] [] [] [] | + fetchmail | [] [] [] [] | + findutils | [] [] [] [] [] | + flex | [] [] [] [] | + freedink | [] [] [] | + fusionforge | | + gas | [] | + gawk | [] [] [] | + gcal | [] [] [] | + gcc | [] | + gdbm | [] [] | + gettext-examples | [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] | + gettext-tools | [] [] [] [] [] | + gjay | [] [] [] | + glunarclock | [] [] [] [] | + gnubiff | [] [] | + gnubik | [] [] [] [] | + gnucash | () () () () [] | + gnuchess | [] [] [] | + gnulib | [] [] [] [] | + gnunet | | + gnunet-gtk | | + gold | [] [] | + gphoto2 | [] [] [] [] | + gprof | [] [] [] [] | + gramadoir | [] [] [] | + grep | [] [] [] [] [] | + grub | [] [] [] [] | + gsasl | [] [] [] [] | + gss | [] [] [] | + gst-plugins-bad | [] [] [] [] [] | + gst-plugins-base | [] [] [] [] [] | + gst-plugins-good | [] [] [] [] [] | + gst-plugins-ugly | [] [] [] [] [] | + gstreamer | [] [] [] [] [] | + gtick | [] [] [] | + gtkam | [] [] [] [] | + gtkspell | [] [] [] [] [] [] [] | + guix | | + guix-packages | | + gutenprint | [] [] [] [] | + hello | [] [] [] [] [] [] | + help2man | [] [] [] | + help2man-texi | [] | + hylafax | [] | + idutils | [] [] [] | + iso_15924 | [] () [] [] () [] | + iso_3166 | [] [] () [] [] () [] [] | + iso_3166_2 | () [] [] () [] | + iso_4217 | [] () [] [] () [] | + iso_639 | [] [] [] () [] [] () [] [] | + iso_639_3 | [] () [] [] () | + iso_639_5 | () [] () | + jwhois | [] [] [] [] | + kbd | [] [] [] [] | + klavaro | [] [] [] [] [] [] | + ld | [] [] [] [] [] | + leafpad | [] [] [] [] [] [] | + libc | [] [] [] [] [] | + libexif | [] [] () | + libextractor | [] [] | + libgnutls | [] [] [] [] | + libgphoto2 | [] [] [] | + libgphoto2_port | [] [] [] [] | + libgsasl | [] [] [] [] | + libiconv | [] [] [] [] [] | + libidn | () [] [] [] | + liferea | [] [] [] [] [] | + lilypond | [] | + lordsawar | | + lprng | [] | + lynx | [] [] [] [] | + m4 | [] [] [] | + mailfromd | [] [] | + mailutils | [] | + make | [] [] [] [] | + man-db | [] [] [] | + man-db-manpages | [] [] | + midi-instruments | [] [] [] [] [] [] | + minicom | [] [] | + mkisofs | [] [] [] | + myserver | [] | + nano | [] [] [] [] | + opcodes | [] [] [] | + parted | [] [] [] [] [] | + pies | [] [] | + pnmixer | [] [] [] | + popt | [] [] [] [] [] [] [] | + procps-ng | [] [] | + procps-ng-man | [] | + psmisc | [] [] [] [] | + pspp | [] [] [] | + pushover | [] | + pwdutils | [] [] | + pyspread | [] | + radius | [] [] | + recode | [] [] [] [] | + recutils | [] [] [] | + rpm | [] [] [] [] | + rush | [] [] | + sarg | | + sed | [] [] [] [] [] | + sharutils | [] [] [] [] | + shishi | [] [] | + skribilo | [] [] | + solfege | [] [] [] [] | + solfege-manual | [] | + spotmachine | [] [] [] | + sudo | [] [] [] [] [] | + sudoers | [] [] [] [] | + sysstat | [] [] [] [] [] | + tar | [] [] [] [] [] | + texinfo | [] [] [] | + texinfo_document | [] | + tigervnc | [] [] [] | + tin | [] | + tin-man | | + tracgoogleappsa... | [] [] [] [] [] | + trader | [] | + util-linux | [] [] [] [] | + ve | [] [] [] [] | + vice | () () | + vmm | | + vorbis-tools | [] [] | + wastesedge | | + wcd | [] [] [] | + wcd-man | [] | + wdiff | [] [] [] [] | + wget | [] [] [] | + wyslij-po | [] [] | + xboard | [] [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] [] | + +----------------------------------------------+ + sv sw ta te tg th tr uk ur vi wa wo zh_CN + 106 1 4 3 0 13 51 115 1 125 7 1 100 + + zh_HK zh_TW + +-------------+ + a2ps | | 30 + aegis | | 9 + anubis | | 19 + aspell | | 29 + bash | [] | 23 + bfd | | 11 + binutils | | 12 + bison | [] | 18 + bison-runtime | [] | 38 + buzztrax | | 9 + ccd2cue | | 10 + ccide | | 17 + cflow | | 16 + clisp | | 10 + coreutils | | 18 + cpio | | 20 + cppi | | 17 + cpplib | [] | 19 + cryptsetup | | 14 + datamash | | 11 + denemo | | 5 + dfarc | | 17 + dialog | [] | 42 + dico | | 6 + diffutils | | 22 + dink | | 10 + direvent | | 11 + doodle | | 12 + dos2unix | [] | 18 + dos2unix-man | | 9 + e2fsprogs | | 15 + enscript | | 21 + exif | | 27 + fetchmail | | 19 + findutils | | 29 + flex | [] | 19 + freedink | | 24 + fusionforge | | 3 + gas | | 5 + gawk | | 13 + gcal | | 8 + gcc | | 2 + gdbm | | 10 + gettext-examples | [] [] | 40 + gettext-runtime | [] [] | 35 + gettext-tools | [] | 24 + gjay | | 9 + glunarclock | [] | 27 + gnubiff | | 9 + gnubik | | 19 + gnucash | () | 6 + gnuchess | | 11 + gnulib | | 23 + gnunet | | 1 + gnunet-gtk | | 1 + gold | | 7 + gphoto2 | [] | 19 + gprof | | 21 + gramadoir | | 14 + grep | [] | 31 + grub | | 21 + gsasl | [] | 19 + gss | | 17 + gst-plugins-bad | | 21 + gst-plugins-base | | 27 + gst-plugins-good | | 32 + gst-plugins-ugly | | 34 + gstreamer | [] | 32 + gtick | | 19 + gtkam | | 24 + gtkspell | [] [] | 48 + guix | | 2 + guix-packages | | 0 + gutenprint | | 15 + hello | [] | 30 + help2man | | 18 + help2man-texi | | 5 + hylafax | | 5 + idutils | | 14 + iso_15924 | [] | 23 + iso_3166 | [] [] | 58 + iso_3166_2 | | 9 + iso_4217 | [] [] | 28 + iso_639 | [] [] | 46 + iso_639_3 | | 10 + iso_639_5 | | 2 + jwhois | [] | 20 + kbd | | 17 + klavaro | | 30 + ld | [] | 15 + leafpad | [] | 39 + libc | [] | 24 + libexif | | 10 + libextractor | | 5 + libgnutls | | 13 + libgphoto2 | | 10 + libgphoto2_port | [] | 19 + libgsasl | | 18 + libiconv | [] | 29 + libidn | | 17 + liferea | | 29 + lilypond | | 11 + lordsawar | | 3 + lprng | | 3 + lynx | | 19 + m4 | [] | 22 + mailfromd | | 4 + mailutils | | 6 + make | | 19 + man-db | | 15 + man-db-manpages | | 10 + midi-instruments | [] | 43 + minicom | [] | 17 + mkisofs | | 13 + myserver | | 9 + nano | [] | 30 + opcodes | | 12 + parted | [] | 23 + pies | | 4 + pnmixer | | 9 + popt | [] | 36 + procps-ng | | 5 + procps-ng-man | | 4 + psmisc | [] | 22 + pspp | | 13 + pushover | | 6 + pwdutils | | 8 + pyspread | | 6 + radius | | 9 + recode | | 31 + recutils | | 10 + rpm | [] | 13 + rush | | 10 + sarg | | 4 + sed | [] | 35 + sharutils | | 13 + shishi | | 7 + skribilo | | 7 + solfege | | 21 + solfege-manual | | 9 + spotmachine | | 11 + sudo | | 26 + sudoers | | 22 + sysstat | | 23 + tar | [] | 30 + texinfo | | 17 + texinfo_document | | 13 + tigervnc | | 14 + tin | [] | 7 + tin-man | | 1 + tracgoogleappsa... | [] | 22 + trader | | 12 + util-linux | | 13 + ve | | 14 + vice | | 1 + vmm | | 3 + vorbis-tools | | 13 + wastesedge | | 3 + wcd | | 8 + wcd-man | | 3 + wdiff | [] | 23 + wget | | 21 + wyslij-po | | 14 + xboard | | 10 + xdg-user-dirs | [] [] | 68 + xkeyboard-config | [] | 28 + +-------------+ + 89 teams zh_HK zh_TW + 166 domains 7 42 2809 + + Some counters in the preceding matrix are higher than the number of +visible blocks let us expect. This is because a few extra PO files are +used for implementing regional variants of languages, or language +dialects. + + For a PO file in the matrix above to be effective, the package to +which it applies should also have been internationalized and distributed +as such by its maintainer. There might be an observable lag between the +mere existence a PO file and its wide availability in a distribution. + + If Jun 2014 seems to be old, you may fetch a more recent copy of this +'ABOUT-NLS' file on most GNU archive sites. The most up-to-date matrix +with full percentage details can be found at +'http://translationproject.org/extra/matrix.html'. + +1.5 Using 'gettext' in new packages +=================================== + +If you are writing a freely available program and want to +internationalize it you are welcome to use GNU 'gettext' in your +package. Of course you have to respect the GNU Lesser General Public +License which covers the use of the GNU 'gettext' library. This means +in particular that even non-free programs can use 'libintl' as a shared +library, whereas only free software can use 'libintl' as a static +library or use modified versions of 'libintl'. + + Once the sources are changed appropriately and the setup can handle +the use of 'gettext' the only thing missing are the translations. The +Free Translation Project is also available for packages which are not +developed inside the GNU project. Therefore the information given above +applies also for every other Free Software Project. Contact +'coordinator@translationproject.org' to make the '.pot' files available +to the translation teams. diff --git a/AUTHORS b/AUTHORS new file mode 100644 index 0000000..15f6355 --- /dev/null +++ b/AUTHORS @@ -0,0 +1 @@ +Félix Arreola Rodríguez diff --git a/COPYING b/COPYING new file mode 100644 index 0000000..94a9ed0 --- /dev/null +++ b/COPYING @@ -0,0 +1,674 @@ + GNU GENERAL PUBLIC LICENSE + Version 3, 29 June 2007 + + Copyright (C) 2007 Free Software Foundation, Inc. + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The GNU General Public License is a free, copyleft license for +software and other kinds of works. + + The licenses for most software and other practical works are designed +to take away your freedom to share and change the works. By contrast, +the GNU General Public License is intended to guarantee your freedom to +share and change all versions of a program--to make sure it remains free +software for all its users. We, the Free Software Foundation, use the +GNU General Public License for most of our software; it applies also to +any other work released this way by its authors. You can apply it to +your programs, too. + + When we speak of free software, we are referring to freedom, not +price. Our General Public Licenses are designed to make sure that you +have the freedom to distribute copies of free software (and charge for +them if you wish), that you receive source code or can get it if you +want it, that you can change the software or use pieces of it in new +free programs, and that you know you can do these things. + + To protect your rights, we need to prevent others from denying you +these rights or asking you to surrender the rights. Therefore, you have +certain responsibilities if you distribute copies of the software, or if +you modify it: responsibilities to respect the freedom of others. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must pass on to the recipients the same +freedoms that you received. You must make sure that they, too, receive +or can get the source code. And you must show them these terms so they +know their rights. + + Developers that use the GNU GPL protect your rights with two steps: +(1) assert copyright on the software, and (2) offer you this License +giving you legal permission to copy, distribute and/or modify it. + + For the developers' and authors' protection, the GPL clearly explains +that there is no warranty for this free software. For both users' and +authors' sake, the GPL requires that modified versions be marked as +changed, so that their problems will not be attributed erroneously to +authors of previous versions. + + Some devices are designed to deny users access to install or run +modified versions of the software inside them, although the manufacturer +can do so. This is fundamentally incompatible with the aim of +protecting users' freedom to change the software. The systematic +pattern of such abuse occurs in the area of products for individuals to +use, which is precisely where it is most unacceptable. Therefore, we +have designed this version of the GPL to prohibit the practice for those +products. If such problems arise substantially in other domains, we +stand ready to extend this provision to those domains in future versions +of the GPL, as needed to protect the freedom of users. + + Finally, every program is threatened constantly by software patents. +States should not allow patents to restrict development and use of +software on general-purpose computers, but in those that do, we wish to +avoid the special danger that patents applied to a free program could +make it effectively proprietary. To prevent this, the GPL assures that +patents cannot be used to render the program non-free. + + The precise terms and conditions for copying, distribution and +modification follow. + + TERMS AND CONDITIONS + + 0. Definitions. + + "This License" refers to version 3 of the GNU General Public License. + + "Copyright" also means copyright-like laws that apply to other kinds of +works, such as semiconductor masks. + + "The Program" refers to any copyrightable work licensed under this +License. Each licensee is addressed as "you". "Licensees" and +"recipients" may be individuals or organizations. + + To "modify" a work means to copy from or adapt all or part of the work +in a fashion requiring copyright permission, other than the making of an +exact copy. The resulting work is called a "modified version" of the +earlier work or a work "based on" the earlier work. + + A "covered work" means either the unmodified Program or a work based +on the Program. + + To "propagate" a work means to do anything with it that, without +permission, would make you directly or secondarily liable for +infringement under applicable copyright law, except executing it on a +computer or modifying a private copy. Propagation includes copying, +distribution (with or without modification), making available to the +public, and in some countries other activities as well. + + To "convey" a work means any kind of propagation that enables other +parties to make or receive copies. Mere interaction with a user through +a computer network, with no transfer of a copy, is not conveying. + + An interactive user interface displays "Appropriate Legal Notices" +to the extent that it includes a convenient and prominently visible +feature that (1) displays an appropriate copyright notice, and (2) +tells the user that there is no warranty for the work (except to the +extent that warranties are provided), that licensees may convey the +work under this License, and how to view a copy of this License. If +the interface presents a list of user commands or options, such as a +menu, a prominent item in the list meets this criterion. + + 1. Source Code. + + The "source code" for a work means the preferred form of the work +for making modifications to it. "Object code" means any non-source +form of a work. + + A "Standard Interface" means an interface that either is an official +standard defined by a recognized standards body, or, in the case of +interfaces specified for a particular programming language, one that +is widely used among developers working in that language. + + The "System Libraries" of an executable work include anything, other +than the work as a whole, that (a) is included in the normal form of +packaging a Major Component, but which is not part of that Major +Component, and (b) serves only to enable use of the work with that +Major Component, or to implement a Standard Interface for which an +implementation is available to the public in source code form. A +"Major Component", in this context, means a major essential component +(kernel, window system, and so on) of the specific operating system +(if any) on which the executable work runs, or a compiler used to +produce the work, or an object code interpreter used to run it. + + The "Corresponding Source" for a work in object code form means all +the source code needed to generate, install, and (for an executable +work) run the object code and to modify the work, including scripts to +control those activities. However, it does not include the work's +System Libraries, or general-purpose tools or generally available free +programs which are used unmodified in performing those activities but +which are not part of the work. For example, Corresponding Source +includes interface definition files associated with source files for +the work, and the source code for shared libraries and dynamically +linked subprograms that the work is specifically designed to require, +such as by intimate data communication or control flow between those +subprograms and other parts of the work. + + The Corresponding Source need not include anything that users +can regenerate automatically from other parts of the Corresponding +Source. + + The Corresponding Source for a work in source code form is that +same work. + + 2. Basic Permissions. + + All rights granted under this License are granted for the term of +copyright on the Program, and are irrevocable provided the stated +conditions are met. This License explicitly affirms your unlimited +permission to run the unmodified Program. The output from running a +covered work is covered by this License only if the output, given its +content, constitutes a covered work. This License acknowledges your +rights of fair use or other equivalent, as provided by copyright law. + + You may make, run and propagate covered works that you do not +convey, without conditions so long as your license otherwise remains +in force. You may convey covered works to others for the sole purpose +of having them make modifications exclusively for you, or provide you +with facilities for running those works, provided that you comply with +the terms of this License in conveying all material for which you do +not control copyright. Those thus making or running the covered works +for you must do so exclusively on your behalf, under your direction +and control, on terms that prohibit them from making any copies of +your copyrighted material outside their relationship with you. + + Conveying under any other circumstances is permitted solely under +the conditions stated below. Sublicensing is not allowed; section 10 +makes it unnecessary. + + 3. Protecting Users' Legal Rights From Anti-Circumvention Law. + + No covered work shall be deemed part of an effective technological +measure under any applicable law fulfilling obligations under article +11 of the WIPO copyright treaty adopted on 20 December 1996, or +similar laws prohibiting or restricting circumvention of such +measures. + + When you convey a covered work, you waive any legal power to forbid +circumvention of technological measures to the extent such circumvention +is effected by exercising rights under this License with respect to +the covered work, and you disclaim any intention to limit operation or +modification of the work as a means of enforcing, against the work's +users, your or third parties' legal rights to forbid circumvention of +technological measures. + + 4. Conveying Verbatim Copies. + + You may convey verbatim copies of the Program's source code as you +receive it, in any medium, provided that you conspicuously and +appropriately publish on each copy an appropriate copyright notice; +keep intact all notices stating that this License and any +non-permissive terms added in accord with section 7 apply to the code; +keep intact all notices of the absence of any warranty; and give all +recipients a copy of this License along with the Program. + + You may charge any price or no price for each copy that you convey, +and you may offer support or warranty protection for a fee. + + 5. Conveying Modified Source Versions. + + You may convey a work based on the Program, or the modifications to +produce it from the Program, in the form of source code under the +terms of section 4, provided that you also meet all of these conditions: + + a) The work must carry prominent notices stating that you modified + it, and giving a relevant date. + + b) The work must carry prominent notices stating that it is + released under this License and any conditions added under section + 7. This requirement modifies the requirement in section 4 to + "keep intact all notices". + + c) You must license the entire work, as a whole, under this + License to anyone who comes into possession of a copy. This + License will therefore apply, along with any applicable section 7 + additional terms, to the whole of the work, and all its parts, + regardless of how they are packaged. This License gives no + permission to license the work in any other way, but it does not + invalidate such permission if you have separately received it. + + d) If the work has interactive user interfaces, each must display + Appropriate Legal Notices; however, if the Program has interactive + interfaces that do not display Appropriate Legal Notices, your + work need not make them do so. + + A compilation of a covered work with other separate and independent +works, which are not by their nature extensions of the covered work, +and which are not combined with it such as to form a larger program, +in or on a volume of a storage or distribution medium, is called an +"aggregate" if the compilation and its resulting copyright are not +used to limit the access or legal rights of the compilation's users +beyond what the individual works permit. Inclusion of a covered work +in an aggregate does not cause this License to apply to the other +parts of the aggregate. + + 6. Conveying Non-Source Forms. + + You may convey a covered work in object code form under the terms +of sections 4 and 5, provided that you also convey the +machine-readable Corresponding Source under the terms of this License, +in one of these ways: + + a) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by the + Corresponding Source fixed on a durable physical medium + customarily used for software interchange. + + b) Convey the object code in, or embodied in, a physical product + (including a physical distribution medium), accompanied by a + written offer, valid for at least three years and valid for as + long as you offer spare parts or customer support for that product + model, to give anyone who possesses the object code either (1) a + copy of the Corresponding Source for all the software in the + product that is covered by this License, on a durable physical + medium customarily used for software interchange, for a price no + more than your reasonable cost of physically performing this + conveying of source, or (2) access to copy the + Corresponding Source from a network server at no charge. + + c) Convey individual copies of the object code with a copy of the + written offer to provide the Corresponding Source. This + alternative is allowed only occasionally and noncommercially, and + only if you received the object code with such an offer, in accord + with subsection 6b. + + d) Convey the object code by offering access from a designated + place (gratis or for a charge), and offer equivalent access to the + Corresponding Source in the same way through the same place at no + further charge. You need not require recipients to copy the + Corresponding Source along with the object code. If the place to + copy the object code is a network server, the Corresponding Source + may be on a different server (operated by you or a third party) + that supports equivalent copying facilities, provided you maintain + clear directions next to the object code saying where to find the + Corresponding Source. Regardless of what server hosts the + Corresponding Source, you remain obligated to ensure that it is + available for as long as needed to satisfy these requirements. + + e) Convey the object code using peer-to-peer transmission, provided + you inform other peers where the object code and Corresponding + Source of the work are being offered to the general public at no + charge under subsection 6d. + + A separable portion of the object code, whose source code is excluded +from the Corresponding Source as a System Library, need not be +included in conveying the object code work. + + A "User Product" is either (1) a "consumer product", which means any +tangible personal property which is normally used for personal, family, +or household purposes, or (2) anything designed or sold for incorporation +into a dwelling. In determining whether a product is a consumer product, +doubtful cases shall be resolved in favor of coverage. For a particular +product received by a particular user, "normally used" refers to a +typical or common use of that class of product, regardless of the status +of the particular user or of the way in which the particular user +actually uses, or expects or is expected to use, the product. A product +is a consumer product regardless of whether the product has substantial +commercial, industrial or non-consumer uses, unless such uses represent +the only significant mode of use of the product. + + "Installation Information" for a User Product means any methods, +procedures, authorization keys, or other information required to install +and execute modified versions of a covered work in that User Product from +a modified version of its Corresponding Source. The information must +suffice to ensure that the continued functioning of the modified object +code is in no case prevented or interfered with solely because +modification has been made. + + If you convey an object code work under this section in, or with, or +specifically for use in, a User Product, and the conveying occurs as +part of a transaction in which the right of possession and use of the +User Product is transferred to the recipient in perpetuity or for a +fixed term (regardless of how the transaction is characterized), the +Corresponding Source conveyed under this section must be accompanied +by the Installation Information. But this requirement does not apply +if neither you nor any third party retains the ability to install +modified object code on the User Product (for example, the work has +been installed in ROM). + + The requirement to provide Installation Information does not include a +requirement to continue to provide support service, warranty, or updates +for a work that has been modified or installed by the recipient, or for +the User Product in which it has been modified or installed. Access to a +network may be denied when the modification itself materially and +adversely affects the operation of the network or violates the rules and +protocols for communication across the network. + + Corresponding Source conveyed, and Installation Information provided, +in accord with this section must be in a format that is publicly +documented (and with an implementation available to the public in +source code form), and must require no special password or key for +unpacking, reading or copying. + + 7. Additional Terms. + + "Additional permissions" are terms that supplement the terms of this +License by making exceptions from one or more of its conditions. +Additional permissions that are applicable to the entire Program shall +be treated as though they were included in this License, to the extent +that they are valid under applicable law. If additional permissions +apply only to part of the Program, that part may be used separately +under those permissions, but the entire Program remains governed by +this License without regard to the additional permissions. + + When you convey a copy of a covered work, you may at your option +remove any additional permissions from that copy, or from any part of +it. (Additional permissions may be written to require their own +removal in certain cases when you modify the work.) You may place +additional permissions on material, added by you to a covered work, +for which you have or can give appropriate copyright permission. + + Notwithstanding any other provision of this License, for material you +add to a covered work, you may (if authorized by the copyright holders of +that material) supplement the terms of this License with terms: + + a) Disclaiming warranty or limiting liability differently from the + terms of sections 15 and 16 of this License; or + + b) Requiring preservation of specified reasonable legal notices or + author attributions in that material or in the Appropriate Legal + Notices displayed by works containing it; or + + c) Prohibiting misrepresentation of the origin of that material, or + requiring that modified versions of such material be marked in + reasonable ways as different from the original version; or + + d) Limiting the use for publicity purposes of names of licensors or + authors of the material; or + + e) Declining to grant rights under trademark law for use of some + trade names, trademarks, or service marks; or + + f) Requiring indemnification of licensors and authors of that + material by anyone who conveys the material (or modified versions of + it) with contractual assumptions of liability to the recipient, for + any liability that these contractual assumptions directly impose on + those licensors and authors. + + All other non-permissive additional terms are considered "further +restrictions" within the meaning of section 10. If the Program as you +received it, or any part of it, contains a notice stating that it is +governed by this License along with a term that is a further +restriction, you may remove that term. If a license document contains +a further restriction but permits relicensing or conveying under this +License, you may add to a covered work material governed by the terms +of that license document, provided that the further restriction does +not survive such relicensing or conveying. + + If you add terms to a covered work in accord with this section, you +must place, in the relevant source files, a statement of the +additional terms that apply to those files, or a notice indicating +where to find the applicable terms. + + Additional terms, permissive or non-permissive, may be stated in the +form of a separately written license, or stated as exceptions; +the above requirements apply either way. + + 8. Termination. + + You may not propagate or modify a covered work except as expressly +provided under this License. Any attempt otherwise to propagate or +modify it is void, and will automatically terminate your rights under +this License (including any patent licenses granted under the third +paragraph of section 11). + + However, if you cease all violation of this License, then your +license from a particular copyright holder is reinstated (a) +provisionally, unless and until the copyright holder explicitly and +finally terminates your license, and (b) permanently, if the copyright +holder fails to notify you of the violation by some reasonable means +prior to 60 days after the cessation. + + Moreover, your license from a particular copyright holder is +reinstated permanently if the copyright holder notifies you of the +violation by some reasonable means, this is the first time you have +received notice of violation of this License (for any work) from that +copyright holder, and you cure the violation prior to 30 days after +your receipt of the notice. + + Termination of your rights under this section does not terminate the +licenses of parties who have received copies or rights from you under +this License. If your rights have been terminated and not permanently +reinstated, you do not qualify to receive new licenses for the same +material under section 10. + + 9. Acceptance Not Required for Having Copies. + + You are not required to accept this License in order to receive or +run a copy of the Program. Ancillary propagation of a covered work +occurring solely as a consequence of using peer-to-peer transmission +to receive a copy likewise does not require acceptance. However, +nothing other than this License grants you permission to propagate or +modify any covered work. These actions infringe copyright if you do +not accept this License. Therefore, by modifying or propagating a +covered work, you indicate your acceptance of this License to do so. + + 10. Automatic Licensing of Downstream Recipients. + + Each time you convey a covered work, the recipient automatically +receives a license from the original licensors, to run, modify and +propagate that work, subject to this License. You are not responsible +for enforcing compliance by third parties with this License. + + An "entity transaction" is a transaction transferring control of an +organization, or substantially all assets of one, or subdividing an +organization, or merging organizations. If propagation of a covered +work results from an entity transaction, each party to that +transaction who receives a copy of the work also receives whatever +licenses to the work the party's predecessor in interest had or could +give under the previous paragraph, plus a right to possession of the +Corresponding Source of the work from the predecessor in interest, if +the predecessor has it or can get it with reasonable efforts. + + You may not impose any further restrictions on the exercise of the +rights granted or affirmed under this License. For example, you may +not impose a license fee, royalty, or other charge for exercise of +rights granted under this License, and you may not initiate litigation +(including a cross-claim or counterclaim in a lawsuit) alleging that +any patent claim is infringed by making, using, selling, offering for +sale, or importing the Program or any portion of it. + + 11. Patents. + + A "contributor" is a copyright holder who authorizes use under this +License of the Program or a work on which the Program is based. The +work thus licensed is called the contributor's "contributor version". + + A contributor's "essential patent claims" are all patent claims +owned or controlled by the contributor, whether already acquired or +hereafter acquired, that would be infringed by some manner, permitted +by this License, of making, using, or selling its contributor version, +but do not include claims that would be infringed only as a +consequence of further modification of the contributor version. For +purposes of this definition, "control" includes the right to grant +patent sublicenses in a manner consistent with the requirements of +this License. + + Each contributor grants you a non-exclusive, worldwide, royalty-free +patent license under the contributor's essential patent claims, to +make, use, sell, offer for sale, import and otherwise run, modify and +propagate the contents of its contributor version. + + In the following three paragraphs, a "patent license" is any express +agreement or commitment, however denominated, not to enforce a patent +(such as an express permission to practice a patent or covenant not to +sue for patent infringement). To "grant" such a patent license to a +party means to make such an agreement or commitment not to enforce a +patent against the party. + + If you convey a covered work, knowingly relying on a patent license, +and the Corresponding Source of the work is not available for anyone +to copy, free of charge and under the terms of this License, through a +publicly available network server or other readily accessible means, +then you must either (1) cause the Corresponding Source to be so +available, or (2) arrange to deprive yourself of the benefit of the +patent license for this particular work, or (3) arrange, in a manner +consistent with the requirements of this License, to extend the patent +license to downstream recipients. "Knowingly relying" means you have +actual knowledge that, but for the patent license, your conveying the +covered work in a country, or your recipient's use of the covered work +in a country, would infringe one or more identifiable patents in that +country that you have reason to believe are valid. + + If, pursuant to or in connection with a single transaction or +arrangement, you convey, or propagate by procuring conveyance of, a +covered work, and grant a patent license to some of the parties +receiving the covered work authorizing them to use, propagate, modify +or convey a specific copy of the covered work, then the patent license +you grant is automatically extended to all recipients of the covered +work and works based on it. + + A patent license is "discriminatory" if it does not include within +the scope of its coverage, prohibits the exercise of, or is +conditioned on the non-exercise of one or more of the rights that are +specifically granted under this License. You may not convey a covered +work if you are a party to an arrangement with a third party that is +in the business of distributing software, under which you make payment +to the third party based on the extent of your activity of conveying +the work, and under which the third party grants, to any of the +parties who would receive the covered work from you, a discriminatory +patent license (a) in connection with copies of the covered work +conveyed by you (or copies made from those copies), or (b) primarily +for and in connection with specific products or compilations that +contain the covered work, unless you entered into that arrangement, +or that patent license was granted, prior to 28 March 2007. + + Nothing in this License shall be construed as excluding or limiting +any implied license or other defenses to infringement that may +otherwise be available to you under applicable patent law. + + 12. No Surrender of Others' Freedom. + + If conditions are imposed on you (whether by court order, agreement or +otherwise) that contradict the conditions of this License, they do not +excuse you from the conditions of this License. If you cannot convey a +covered work so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you may +not convey it at all. For example, if you agree to terms that obligate you +to collect a royalty for further conveying from those to whom you convey +the Program, the only way you could satisfy both those terms and this +License would be to refrain entirely from conveying the Program. + + 13. Use with the GNU Affero General Public License. + + Notwithstanding any other provision of this License, you have +permission to link or combine any covered work with a work licensed +under version 3 of the GNU Affero General Public License into a single +combined work, and to convey the resulting work. The terms of this +License will continue to apply to the part which is the covered work, +but the special requirements of the GNU Affero General Public License, +section 13, concerning interaction through a network will apply to the +combination as such. + + 14. Revised Versions of this License. + + The Free Software Foundation may publish revised and/or new versions of +the GNU General Public License from time to time. Such new versions will +be similar in spirit to the present version, but may differ in detail to +address new problems or concerns. + + Each version is given a distinguishing version number. If the +Program specifies that a certain numbered version of the GNU General +Public License "or any later version" applies to it, you have the +option of following the terms and conditions either of that numbered +version or of any later version published by the Free Software +Foundation. If the Program does not specify a version number of the +GNU General Public License, you may choose any version ever published +by the Free Software Foundation. + + If the Program specifies that a proxy can decide which future +versions of the GNU General Public License can be used, that proxy's +public statement of acceptance of a version permanently authorizes you +to choose that version for the Program. + + Later license versions may give you additional or different +permissions. However, no additional obligations are imposed on any +author or copyright holder as a result of your choosing to follow a +later version. + + 15. Disclaimer of Warranty. + + THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY +APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT +HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY +OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, +THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR +PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM +IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF +ALL NECESSARY SERVICING, REPAIR OR CORRECTION. + + 16. Limitation of Liability. + + IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS +THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY +GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE +USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF +DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD +PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), +EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF +SUCH DAMAGES. + + 17. Interpretation of Sections 15 and 16. + + If the disclaimer of warranty and limitation of liability provided +above cannot be given local legal effect according to their terms, +reviewing courts shall apply local law that most closely approximates +an absolute waiver of all civil liability in connection with the +Program, unless a warranty or assumption of liability accompanies a +copy of the Program in return for a fee. + + END OF TERMS AND CONDITIONS + + How to Apply These Terms to Your New Programs + + If you develop a new program, and you want it to be of the greatest +possible use to the public, the best way to achieve this is to make it +free software which everyone can redistribute and change under these terms. + + To do so, attach the following notices to the program. It is safest +to attach them to the start of each source file to most effectively +state the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + + Copyright (C) + + 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 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 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 . + +Also add information on how to contact you by electronic and paper mail. + + If the program does terminal interaction, make it output a short +notice like this when it starts in an interactive mode: + + Copyright (C) + This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. + This is free software, and you are welcome to redistribute it + under certain conditions; type `show c' for details. + +The hypothetical commands `show w' and `show c' should show the appropriate +parts of the General Public License. Of course, your program's commands +might be different; for a GUI interface, you would use an "about box". + + You should also get your employer (if you work as a programmer) or school, +if any, to sign a "copyright disclaimer" for the program, if necessary. +For more information on this, and how to apply and follow the GNU GPL, see +. + + The GNU General Public License does not permit incorporating your program +into proprietary programs. If your program is a subroutine library, you +may consider it more useful to permit linking proprietary applications with +the library. If this is what you want to do, use the GNU Lesser General +Public License instead of this License. But first, please read +. diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..e69de29 diff --git a/INSTALL b/INSTALL new file mode 100644 index 0000000..2099840 --- /dev/null +++ b/INSTALL @@ -0,0 +1,370 @@ +Installation Instructions +************************* + +Copyright (C) 1994-1996, 1999-2002, 2004-2013 Free Software Foundation, +Inc. + + Copying and distribution of this file, with or without modification, +are permitted in any medium without royalty provided the copyright +notice and this notice are preserved. This file is offered as-is, +without warranty of any kind. + +Basic Installation +================== + + Briefly, the shell command `./configure && make && make install' +should configure, build, and install this package. The following +more-detailed instructions are generic; see the `README' file for +instructions specific to this package. Some packages provide this +`INSTALL' file but do not implement all of the features documented +below. The lack of an optional feature in a given package is not +necessarily a bug. More recommendations for GNU packages can be found +in *note Makefile Conventions: (standards)Makefile Conventions. + + The `configure' shell script attempts to guess correct values for +various system-dependent variables used during compilation. It uses +those values to create a `Makefile' in each directory of the package. +It may also create one or more `.h' files containing system-dependent +definitions. Finally, it creates a shell script `config.status' that +you can run in the future to recreate the current configuration, and a +file `config.log' containing compiler output (useful mainly for +debugging `configure'). + + It can also use an optional file (typically called `config.cache' +and enabled with `--cache-file=config.cache' or simply `-C') that saves +the results of its tests to speed up reconfiguring. Caching is +disabled by default to prevent problems with accidental use of stale +cache files. + + If you need to do unusual things to compile the package, please try +to figure out how `configure' could check whether to do them, and mail +diffs or instructions to the address given in the `README' so they can +be considered for the next release. If you are using the cache, and at +some point `config.cache' contains results you don't want to keep, you +may remove or edit it. + + The file `configure.ac' (or `configure.in') is used to create +`configure' by a program called `autoconf'. You need `configure.ac' if +you want to change it or regenerate `configure' using a newer version +of `autoconf'. + + The simplest way to compile this package is: + + 1. `cd' to the directory containing the package's source code and type + `./configure' to configure the package for your system. + + Running `configure' might take a while. While running, it prints + some messages telling which features it is checking for. + + 2. Type `make' to compile the package. + + 3. Optionally, type `make check' to run any self-tests that come with + the package, generally using the just-built uninstalled binaries. + + 4. Type `make install' to install the programs and any data files and + documentation. When installing into a prefix owned by root, it is + recommended that the package be configured and built as a regular + user, and only the `make install' phase executed with root + privileges. + + 5. Optionally, type `make installcheck' to repeat any self-tests, but + this time using the binaries in their final installed location. + This target does not install anything. Running this target as a + regular user, particularly if the prior `make install' required + root privileges, verifies that the installation completed + correctly. + + 6. You can remove the program binaries and object files from the + source code directory by typing `make clean'. To also remove the + files that `configure' created (so you can compile the package for + a different kind of computer), type `make distclean'. There is + also a `make maintainer-clean' target, but that is intended mainly + for the package's developers. If you use it, you may have to get + all sorts of other programs in order to regenerate files that came + with the distribution. + + 7. Often, you can also type `make uninstall' to remove the installed + files again. In practice, not all packages have tested that + uninstallation works correctly, even though it is required by the + GNU Coding Standards. + + 8. Some packages, particularly those that use Automake, provide `make + distcheck', which can by used by developers to test that all other + targets like `make install' and `make uninstall' work correctly. + This target is generally not run by end users. + +Compilers and Options +===================== + + Some systems require unusual options for compilation or linking that +the `configure' script does not know about. Run `./configure --help' +for details on some of the pertinent environment variables. + + You can give `configure' initial values for configuration parameters +by setting variables in the command line or in the environment. Here +is an example: + + ./configure CC=c99 CFLAGS=-g LIBS=-lposix + + *Note Defining Variables::, for more details. + +Compiling For Multiple Architectures +==================================== + + You can compile the package for more than one kind of computer at the +same time, by placing the object files for each architecture in their +own directory. To do this, you can use GNU `make'. `cd' to the +directory where you want the object files and executables to go and run +the `configure' script. `configure' automatically checks for the +source code in the directory that `configure' is in and in `..'. This +is known as a "VPATH" build. + + With a non-GNU `make', it is safer to compile the package for one +architecture at a time in the source code directory. After you have +installed the package for one architecture, use `make distclean' before +reconfiguring for another architecture. + + On MacOS X 10.5 and later systems, you can create libraries and +executables that work on multiple system types--known as "fat" or +"universal" binaries--by specifying multiple `-arch' options to the +compiler but only a single `-arch' option to the preprocessor. Like +this: + + ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ + CPP="gcc -E" CXXCPP="g++ -E" + + This is not guaranteed to produce working output in all cases, you +may have to build one architecture at a time and combine the results +using the `lipo' tool if you have problems. + +Installation Names +================== + + By default, `make install' installs the package's commands under +`/usr/local/bin', include files under `/usr/local/include', etc. You +can specify an installation prefix other than `/usr/local' by giving +`configure' the option `--prefix=PREFIX', where PREFIX must be an +absolute file name. + + You can specify separate installation prefixes for +architecture-specific files and architecture-independent files. If you +pass the option `--exec-prefix=PREFIX' to `configure', the package uses +PREFIX as the prefix for installing programs and libraries. +Documentation and other data files still use the regular prefix. + + In addition, if you use an unusual directory layout you can give +options like `--bindir=DIR' to specify different values for particular +kinds of files. Run `configure --help' for a list of the directories +you can set and what kinds of files go in them. In general, the +default for these options is expressed in terms of `${prefix}', so that +specifying just `--prefix' will affect all of the other directory +specifications that were not explicitly provided. + + The most portable way to affect installation locations is to pass the +correct locations to `configure'; however, many packages provide one or +both of the following shortcuts of passing variable assignments to the +`make install' command line to change installation locations without +having to reconfigure or recompile. + + The first method involves providing an override variable for each +affected directory. For example, `make install +prefix=/alternate/directory' will choose an alternate location for all +directory configuration variables that were expressed in terms of +`${prefix}'. Any directories that were specified during `configure', +but not in terms of `${prefix}', must each be overridden at install +time for the entire installation to be relocated. The approach of +makefile variable overrides for each directory variable is required by +the GNU Coding Standards, and ideally causes no recompilation. +However, some platforms have known limitations with the semantics of +shared libraries that end up requiring recompilation when using this +method, particularly noticeable in packages that use GNU Libtool. + + The second method involves providing the `DESTDIR' variable. For +example, `make install DESTDIR=/alternate/directory' will prepend +`/alternate/directory' before all installation names. The approach of +`DESTDIR' overrides is not required by the GNU Coding Standards, and +does not work on platforms that have drive letters. On the other hand, +it does better at avoiding recompilation issues, and works well even +when some directory options were not specified in terms of `${prefix}' +at `configure' time. + +Optional Features +================= + + If the package supports it, you can cause programs to be installed +with an extra prefix or suffix on their names by giving `configure' the +option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. + + Some packages pay attention to `--enable-FEATURE' options to +`configure', where FEATURE indicates an optional part of the package. +They may also pay attention to `--with-PACKAGE' options, where PACKAGE +is something like `gnu-as' or `x' (for the X Window System). The +`README' should mention any `--enable-' and `--with-' options that the +package recognizes. + + For packages that use the X Window System, `configure' can usually +find the X include and library files automatically, but if it doesn't, +you can use the `configure' options `--x-includes=DIR' and +`--x-libraries=DIR' to specify their locations. + + Some packages offer the ability to configure how verbose the +execution of `make' will be. For these packages, running `./configure +--enable-silent-rules' sets the default to minimal output, which can be +overridden with `make V=1'; while running `./configure +--disable-silent-rules' sets the default to verbose, which can be +overridden with `make V=0'. + +Particular systems +================== + + On HP-UX, the default C compiler is not ANSI C compatible. If GNU +CC is not installed, it is recommended to use the following options in +order to use an ANSI C compiler: + + ./configure CC="cc -Ae -D_XOPEN_SOURCE=500" + +and if that doesn't work, install pre-built binaries of GCC for HP-UX. + + HP-UX `make' updates targets which have the same time stamps as +their prerequisites, which makes it generally unusable when shipped +generated files such as `configure' are involved. Use GNU `make' +instead. + + On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot +parse its `' header file. The option `-nodtk' can be used as +a workaround. If GNU CC is not installed, it is therefore recommended +to try + + ./configure CC="cc" + +and if that doesn't work, try + + ./configure CC="cc -nodtk" + + On Solaris, don't put `/usr/ucb' early in your `PATH'. This +directory contains several dysfunctional programs; working variants of +these programs are available in `/usr/bin'. So, if you need `/usr/ucb' +in your `PATH', put it _after_ `/usr/bin'. + + On Haiku, software installed for all users goes in `/boot/common', +not `/usr/local'. It is recommended to use the following options: + + ./configure --prefix=/boot/common + +Specifying the System Type +========================== + + There may be some features `configure' cannot figure out +automatically, but needs to determine by the type of machine the package +will run on. Usually, assuming the package is built to be run on the +_same_ architectures, `configure' can figure that out, but if it prints +a message saying it cannot guess the machine type, give it the +`--build=TYPE' option. TYPE can either be a short name for the system +type, such as `sun4', or a canonical name which has the form: + + CPU-COMPANY-SYSTEM + +where SYSTEM can have one of these forms: + + OS + KERNEL-OS + + See the file `config.sub' for the possible values of each field. If +`config.sub' isn't included in this package, then this package doesn't +need to know the machine type. + + If you are _building_ compiler tools for cross-compiling, you should +use the option `--target=TYPE' to select the type of system they will +produce code for. + + If you want to _use_ a cross compiler, that generates code for a +platform different from the build platform, you should specify the +"host" platform (i.e., that on which the generated programs will +eventually be run) with `--host=TYPE'. + +Sharing Defaults +================ + + If you want to set default values for `configure' scripts to share, +you can create a site shell script called `config.site' that gives +default values for variables like `CC', `cache_file', and `prefix'. +`configure' looks for `PREFIX/share/config.site' if it exists, then +`PREFIX/etc/config.site' if it exists. Or, you can set the +`CONFIG_SITE' environment variable to the location of the site script. +A warning: not all `configure' scripts look for a site script. + +Defining Variables +================== + + Variables not defined in a site shell script can be set in the +environment passed to `configure'. However, some packages may run +configure again during the build, and the customized values of these +variables may be lost. In order to avoid this problem, you should set +them in the `configure' command line, using `VAR=value'. For example: + + ./configure CC=/usr/local2/bin/gcc + +causes the specified `gcc' to be used as the C compiler (unless it is +overridden in the site shell script). + +Unfortunately, this technique does not work for `CONFIG_SHELL' due to +an Autoconf limitation. Until the limitation is lifted, you can use +this workaround: + + CONFIG_SHELL=/bin/bash ./configure CONFIG_SHELL=/bin/bash + +`configure' Invocation +====================== + + `configure' recognizes the following options to control how it +operates. + +`--help' +`-h' + Print a summary of all of the options to `configure', and exit. + +`--help=short' +`--help=recursive' + Print a summary of the options unique to this package's + `configure', and exit. The `short' variant lists options used + only in the top level, while the `recursive' variant lists options + also present in any nested packages. + +`--version' +`-V' + Print the version of Autoconf used to generate the `configure' + script, and exit. + +`--cache-file=FILE' + Enable the cache: use and save the results of the tests in FILE, + traditionally `config.cache'. FILE defaults to `/dev/null' to + disable caching. + +`--config-cache' +`-C' + Alias for `--cache-file=config.cache'. + +`--quiet' +`--silent' +`-q' + Do not print messages saying which checks are being made. To + suppress all normal output, redirect it to `/dev/null' (any error + messages will still be shown). + +`--srcdir=DIR' + Look for the package's source code in directory DIR. Usually + `configure' can determine that directory automatically. + +`--prefix=DIR' + Use DIR as the installation prefix. *note Installation Names:: + for more details, including other options available for fine-tuning + the installation locations. + +`--no-create' +`-n' + Run the configure checks, but stop before creating any output + files. + +`configure' also accepts some other, not widely useful, options. Run +`configure --help' for more details. diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..8e11e5d --- /dev/null +++ b/Makefile.am @@ -0,0 +1,13 @@ +SUBDIRS = po src data etc + +ACLOCAL_AMFLAGS = -I m4 + +EXTRA_DIST = build-aux/config.rpath build-aux/config.rpath + +.PHONY: macapp +macapp: + cd src && $(MAKE) $(AM_MAKEFLAGS) bundle && $(MAKE) $(AM_MAKEFLAGS) bundle-fw + +.PHONY: macdmg +macdmg: + cd src && $(MAKE) $(AM_MAKEFLAGS) bundle-dmg diff --git a/NEWS b/NEWS new file mode 100644 index 0000000..e69de29 diff --git a/README b/README new file mode 100644 index 0000000..e69de29 diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..5431bf5 --- /dev/null +++ b/configure.ac @@ -0,0 +1,125 @@ +AC_INIT([Bean Counters Classic], [0.1.0], [], [bean-counters-classic]) + +AC_REVISION([Revision 1]) + +AC_CONFIG_AUX_DIR([build-aux]) + +AC_CONFIG_SRCDIR([src/beans.c]) + +# For debian systems, /usr as default +AC_PREFIX_DEFAULT([/usr]) + +# We need Gcc +AC_PROG_CC +# We need OBJC, for MAC +AC_PROG_OBJC +# and automake +AM_INIT_AUTOMAKE([-Wall -Werror]) + +# Translate this program +AM_GNU_GETTEXT_VERSION([0.19.8]) +AM_GNU_GETTEXT([external]) + +ALL_LINGUAS="" +AC_SUBST(ALL_LINGUAS) + +AM_PROG_CC_C_O + +# Revisar el host +AC_CANONICAL_HOST + +case $host_os in + *mingw32* ) MINGW32=yes;; + * ) MINGW32=no;; +esac +case $host_os in + *cygwin* ) CYGWIN=yes;; + * ) CYGWIN=no;; +esac +case $host_os in + *linux* ) LINUX=yes;; + * ) LINUX=no;; +esac +case $host_os in + *darwin* ) MACOSX=yes;; + * ) MACOSX=no;; +esac + +AM_CONDITIONAL(MINGW32, test x$MINGW32 = xyes) +AM_CONDITIONAL(LINUX, test x$LINUX = xyes) +AM_CONDITIONAL(MACOSX, test x$MACOSX = xyes) + +# Check for pkg-config +if test "x$MACOSX" = xno; then +dnl En Mac no es necesario el pkg-config, porque se usan los frameworks + PKG_PROG_PKG_CONFIG +fi + +SDL_VERSION=1.2.14 +SDL_IMAGE_VERSION=1.2.10 +SDL_TTF_VERSION=2.0.11 +SDL_MIXER_VERSION=1.2.12 + +if test "x$MACOSX" = xyes; then + AC_MSG_WARN([*******************************************************]) + AC_MSG_WARN([Cannot check if SDL libraries are installed on MAC OS X.]) + AC_MSG_WARN([The following code assumes that the Frameworks are installed on the system locations]) + AC_MSG_WARN([If they are not, use the --with-frameworks option]) + AC_MSG_WARN([*******************************************************]) + + SDL_FRAMEWORKS="SDL SDL_image SDL_mixer SDL_ttf" + + for g in $SDL_FRAMEWORKS; do + AC_LIB_APPENDTOVAR([CPPFLAGS], [-I/Library/Frameworks/$g.framework/Headers]) + done + AC_ARG_WITH([frameworks], [AS_HELP_STRING( + [--with-frameworks=DIRS], + [add to DIRS (space separated) to the Darwin include path for frameworks with -F] + )], [ + for cy_framework in $withval; do + AC_LIB_APPENDTOVAR([CFLAGS], [-F$cy_framework]) + AC_LIB_APPENDTOVAR([CXXFLAGS], [-F$cy_framework]) + AC_LIB_APPENDTOVAR([OBJCCXXFLAGS], [-F$cy_framework]) + AC_LIB_APPENDTOVAR([LDFLAGS], [-F$cy_framework]) + for g in $SDL_FRAMEWORKS; do + AC_LIB_APPENDTOVAR([CPPFLAGS], [-I$cy_framework/$g.framework/Headers]) + done + done + ]) + + AC_LIB_APPENDTOVAR([LIBS], ["-framework AudioToolbox -framework AudioUnit -framework Cocoa -framework CoreAudio -framework IOKit -framework CoreFoundation -framework Carbon -framework CoreServices -framework ApplicationServices -framework Foundation -framework AppKit -framework OpenGL -framework SDL -framework SDL_image -framework SDL_mixer -framework SDL_ttf"]) +else + AC_MSG_CHECKING([if you have SDL installed on your system]) + PKG_CHECK_EXISTS([sdl >= $SDL_VERSION], [AC_MSG_RESULT([yes])], [AC_MSG_FAILURE([SDL not found in your system])]) + PKG_CHECK_MODULES(SDL, [sdl >= $SDL_VERSION], [], []) + + AC_MSG_CHECKING([if you have SDL_image installed on your system]) + PKG_CHECK_EXISTS([SDL_image >= $SDL_IMAGE_VERSION], [AC_MSG_RESULT([yes])], [AC_MSG_FAILURE([SDL_image not found in your system])]) + PKG_CHECK_MODULES(SDL_image, [SDL_image >= $SDL_IMAGE_VERSION], [], []) + + AC_MSG_CHECKING([if you have SDL_ttf installed on your system]) + PKG_CHECK_EXISTS([SDL_ttf >= $SDL_TTF_VERSION], [AC_MSG_RESULT([yes])], [AC_MSG_FAILURE([SDL_ttf not found in your system])]) + PKG_CHECK_MODULES(SDL_ttf, [SDL_ttf >= $SDL_TTF_VERSION], [], []) + + AC_MSG_CHECKING([if you have SDL_mixer installed on your system]) + PKG_CHECK_EXISTS([SDL_mixer >= $SDL_MIXER_VERSION], [AC_MSG_RESULT([yes])], [AC_MSG_FAILURE([SDL_mixer not found in your system])]) + PKG_CHECK_MODULES(SDL_mixer, [SDL_mixer >= $SDL_MIXER_VERSION], [], []) +fi +AC_CONFIG_HEADERS([config.h]) + +AC_CHECK_TOOL(WINDRES, windres) + +dnl Add -DMACOSX to CXXFLAGS and CFLAGS if working under darwin +if test "x$MACOSX" = xyes; then + CPPFLAGS="$CPPFLAGS -DMACOSX" +fi + +AC_CONFIG_FILES([ po/Makefile.in + Makefile + src/Makefile + data/Makefile + etc/Makefile + etc/Info.plist +]) + +AC_OUTPUT diff --git a/data/Makefile.am b/data/Makefile.am new file mode 100644 index 0000000..6e538b3 --- /dev/null +++ b/data/Makefile.am @@ -0,0 +1,39 @@ +gamedatadir = $(pkgdatadir)/data + +nobase_dist_gamedata_DATA = + +# Instalar los archivos .desktop e iconos +applicationsdir = $(datadir)/applications +applications_DATA = desktop/bean_counters_classic.desktop + +icons16dir = $(datadir)/icons/hicolor/16x16/apps +icons16_DATA = desktop/16x16/coffee_bag.png + +icons32dir = $(datadir)/icons/hicolor/32x32/apps +icons32_DATA = desktop/32x32/coffee_bag.png + +icons48dir = $(datadir)/icons/hicolor/48x48/apps +icons48_DATA = desktop/48x48/coffee_bag.png + +icons64dir = $(datadir)/icons/hicolor/64x64/apps +icons64_DATA = desktop/64x64/coffee_bag.png + +icons128dir = $(datadir)/icons/hicolor/128x128/apps +icons128_DATA = desktop/128x128/coffee_bag.png + +icons256dir = $(datadir)/icons/hicolor/256x256/apps +icons256_DATA = desktop/256x256/coffee_bag.png + +# touch the toplevel icon directory as required by the icon theme spec +install-data-hook: + touch $(DESTDIR)$(datadir)/icons/hicolor + +EXTRA_DIST = \ + desktop/bean_counters_classic.desktop \ + desktop/16x16/coffee_bag.png \ + desktop/32x32/coffee_bag.png \ + desktop/48x48/coffee_bag.png \ + desktop/64x64/coffee_bag.png \ + desktop/128x128/coffee_bag.png \ + desktop/256x256/coffee_bag.png \ + coffee_bag.ico diff --git a/data/coffee_bag.ico b/data/coffee_bag.ico new file mode 100644 index 0000000000000000000000000000000000000000..a5d9793026a6e3210458dd689ec2acdd7ba922a7 GIT binary patch literal 370070 zcmeIb?XxsTb>P|03Xl-8uVfHLgP~<%%QD!$V1We)Xdz3OH**oYFov~YNe${pQIh~zZ zl~r9;T~%EfaXRZQGf$qkJb5y!dNR2)dDG<4M<UFRNfDUf8alw8y8_nJpWI>oqY7muci0p zd2Pp3F}Xc``K#$OpZLu`OJ4rn@9w}0|NJkKkACGmdGO&MqdYJ*6{KZ(hO(b}^>30- zfAeoQ@N3`rUV8nd-}$TLZSQ(o%b(lwFU+48jei!Xj9dBa0*NuK((-`s-7f8is^8y|eL&}c4wcumVMP5I@?+kYx~ z))C;ug_^NPc!{KG%~*0lV)Pd~Op`_oVVR`Trc|GN~w zcS~P9<*(lJ!55P!KJ;?h&P#v&Kaywv_wS_m)0b!e#YIXF`Uq`5@R{Fo+n;fdzCkDO zq%Nf+=imolY3D_$oBk^DS-$+_*Z+0;%*Vd^M=7n9kIju>`DRLHTVBkjeIT*(|B(6;>XT?$WaERs{yXW|n(<(n+ke5=w*Bef|F_8({`fx!$1UG@29A_d9Pp2% z&E(hr@IR8@=C%LgZ!gkv^n>TApMEoj+cD2Qwqvp41l}+I-e0HnJ@VFfq<&Z?1JeKw zo3_9Br~fr=7r)@mk3OE@YpLJh%kd@f(HM)tMR7P2{|X!)d*aDdo-!Y27HnUhrETOD z--Whby8Opzc<)#LIQ4TV3*Ep2I%@mxeCC7jU><58n&H#P{k6{}ZO{JA|4gX&U7z@3 zS~q=l!Nn6l3tA{0I7XkcacB{0pXc!fDNn!gPal!F!TV;fh>iQpjZCR*Y5w#_K9fB5 z)9+1jr5rfJ5B1L?+h0O={4m<3p2y$&D=9Cu9h;~AFg~$?r@#2>hF8#t`sfpN!iR$X zr|m;~<@poOzL@s^@uz+vdG`l@b?v*q^ws1k!1(gu`GkyhJg;Tp7kWec)cG6#*Z*DA z{sO()YG3Niqr1|Bem?#DuP46#BZuf+O#A2?yh7fTk5ByK^HDf3hf=wrtnwe+(7TBC zXSB`p4?Xsi8(E?*XvrMtsb@dwg~zAQq_TqC@jP^(E@;pEjWIZ){S##yqi;(3rcJESZa{SfAZb8JVzPmSEfzyri_u>6|%`SWFVt~i$dCeo}o>- zIm;fHOMcBYXqX3CIm&|jr2u6~Cju*UDQlZ&eCb>+E(A_JH>YxKRscK`O4PX$xD}Z5 zP?EfUk|aMm`R?7x$%VuzGT`{+-Wnd1+`3Z$_l>anpT>T`kmc?McbIT_pEpVFQj8w&0bb4n??PSm3@0nKSs?%oQV zW{=Gz2Ulo!OYA_`EHtL2Wy|EyoY)v;G#-KcWVDAag~^9M_5I9;UQ#|JN>^y7?Uli^ z=vj^F8D9$e#iko*Sky+7_Z5Hjhlvdf^5>Bqn96f2*L+!x7Gvop_@(q`e3av50AKg=7Tuw_U1uTwKpciRKJ~MQ!x#6m*NB1fEb#&6`SdZ= zAKKGCP{#Pu)De?5<)MeAIq@#=CKmfkVz+IKu;`fhDP@Qw5`!gvLM#q?*uK!7_Cb(M z@uv?Q#~?4y+!EKO4vRZ9ht?X$EyB0xK5<&sj-ZDtU+LPA*i(yt!TONx+VVqR_?KI_ z6XSB%VJv<&W*j;W^_zG$u_d<;*ruxZGuA3k(-^r~J5jum1>{I&o3`?R=Xl=N4;z!$ zcHzCnKa0=KlN`&*Q($n_D<_3 zhxd>F+_Omx%^81KJJfX@j&;3@HB()O()!^maa@%jc!BSU?Ey;Ae}g~$*ZRq^7qpAK z>YCH3tl{gvyHlBeJoVz2Q(Z^jEu>}S+7lv=>6(<(W$Oli=%x50Z#w>##D9*xp&lRp z&<;7aYm^)-UY6c={ggGlcYol8biX3~a@W9W#DAuAz&5)ydc&I@ijtp@EjhSSX%G3?rw`~3<-ynDk8IlYA=*afRsPHR zK;X}q;@VHz#13KakR|L1auTAqUgsHP3*5247I)T8g{WJ;gsvA>#Qz3<(TC9ZrM!S{ zWyUaM-yOrSr&e}o7a7Kfsfhojtxx?2w_Qs^c!Ep=*6whOthn;7Wf_x^SJ#hY&ZW4M zXYs7-BH_>OpQ;W(3#A8icI8&_D4RnI=YAj^RjjP2ERoY!>^*u*|EX7f z6kE3*Q?HAE=D#hJxDok@JhQ_CZNui!3!q=<4Slnq>$`b4+xmD8`Dd=JJSediW4kto z7PjuTj-iA4KNaJM^kd^ow1u~A2i+$A1`jg%Sz6*293K>S`hl*&e`J$2fox4=Nw4e`5EvtAl7GP7bG45EY z&(x9AF1joDrDL1cNxTIgE{jK>m%$%=vpqAXQtq0%vEkNV)OM=m;7onUtkiuga4A4r z8y%!A#^lV8SjxS;bPb)sg}SqGiuyFczjJ{Vbiuw;KhG8cvOwJiUvRz=xDuENoCw&o z;8}2yi>Vw*zOWB?j;C^MB|w>5fir^^;<-&X=>7Pmywy+jBt>28)^EGCn`O75jpy7-YiE!Qtz$a2Z zbU&YE=b?O>-H*+s7is-9or5gKF=#qEM0DLj#BiXv#G0$Np}{_BDurhmh{b9&X*<6B)YCG! z-Rgb{cYhu-AoqbP>0Amep(ip0$oZ`R*Y`=_JQuhWSPI+-Q1_-CZO`WLID3vVl%0~Z zr%LyzurI>KRfuoNGb@3z>56`{7f$OYhrSse^T-NM<+*c#Yk{S}ih98rT;W^ry-jJ) zwyo`hlfLIF^`$uJbJzeI*U09i(5g&2wfdxWYYxs**{#5dr_!lhI~TYXNWa^_UMp~> z+|IrePan0NnB3A%WuG||a-aF};0jJ<(hRxFYajkeg;xSIfq8bE@>ct+_9(BOI`1J* z@Z0G-xRp&OdHh$L=_ho87VIOfo449dY>rMa-qC+Ek3K8g`Rw`2A{mIqtF7ngzs3-t zL5Wz1k3{J9k~-VMzm9g$0bNr<1~UH-9j%&DIiTKs<(oYVd`kx3EN`zJ`;v&|@N8%g zX^2+X9KIW%HZY6HV~h7m(C?aYE7We@b@qwTA6;iFo3ppi_kDs;o7f{A15I3cx(@-Q z>{(fR0Pptcw@WAFB8Co(i5geO4rF`#7JK$TYR|Otgnh$X`|D({lG~rE=g_ohzdN$3 zYn#~|XtihmFL|Ft`1tz0&Qod(OC{@2$Xd^@TEjxT-I-)Bn7_(`RsIpKg^t z=aqqu>{WOB?VdAEvYw)IB5)FV+$uv$=J)$A?^}fY8rrDJ=e$1q?m=5*!tJ*`XFr$D z2N(yC2Z584edqCY|3mMZ$om8Mnm#<6zQ#V}5FOZ)YW;u`d&FH5rSDAm<}JK0lPBlM zpRQ@Lu2}>;OBr{+co7|uJIi~H+0$qDsAg-^3%7F-=ez!_@EjfY;e~#%p2^xTdy?40 z=I(h5o%1aFo!EcHy0Y#Kf+oJU>^1w{DqsJzm{=7XxJ_H>yM5D&+R|Hl=c6R|BC%TN7uD}^o_Ad z+t(c4^X^dD{_#BTPGPSUT-izA%@8@)w%i=LD}I{8Gwc8F(f^sHFMgTZKJ-BEQ+p@h zT%;c%I?%Ug&;DilURL^UldRk69(T>ve()|7bs@|2(S2V>@$mH@p6NU4^nH*1Pw~B! zuC%4?YR(wQ_4j_|+o{cl4%!#>b(KDh8QkZ(KI6-IX0x|{z5gIM*82Jn&olu=oe#-7vco%VybA^$&~a!K8gDIr%BPz9ztS-VpTqU-bsXY* zxgoi)dL0@;hmh=piz&SD4byTP%2<~is`S$s(5mcI75=JWsXPwiePmH$2ZzcmJ8 z3m%hk&ho)MMn}{igceE1+;FQM z^dZkTR~*3|z0mPaX_1#BKlqbAo@>3-i7(=t|6vc%0p+{qd)Plg_x?A2mEP!G3=I_L zx^l)u`i?D9Tx{+e`=G&|{oi`;Rog?>&`;l(P*;Do9%KobXS@sb9lVe&<+;uG?ElO+ z&e9&T#=SfrMf*@Shv(24+4jl2@&mfqwXYicj}ENptF~oxa6%uT1N4U$>igoq6~!`q zbb;U40s4*KrDL#d*FC2Hx);#)o#Q>%0qOq&-E!M>&lw+}6S@IV27oS%SI`DIhCb@w zs*U6tHibU(d^+Eh@yu-_bPf;PxQEiAV*H1GYhoO@4aqzJNJhMf;%wP&Q#3jdA8T~^-#yiA2{k>F!~NXrN1{7`|K85!lOg=FQ#4k z%ibT>W$AyqC-Tj2xs{IW&3~WI6@ydT&%h(b0^J9Yjekp*nI+EWed)W>8hmvw03D!* z^mksO&-&;&HcIR5OO8EcOjcWv%>k;&z+QI$kn~bp0RK}vAa+5RI#b3*_7dM!t)GP_#W6@c#wx{o%isIGd#fMD#Jyx$-?r4XEY|B`GPzXlXm(~|4iSt z4*WxCfo!Edot42l`b>TF7ny_Bv?H(*SO`o7wvzo{7|QDY@N68|dbZ%?R@Z^4CzG+u zoHEdY`{1_mZ>a;G#DMz4cK#rB-3lxP=yk@G~7Gk3j}wPyANKhbNQ9Ois5FO-`mRXB2&=_XCJ$r`{~rJ6b0Hufi8zMuM9|Yd zr>P)+B>=m9fR3LFjA?ijz;63^?z?t1yzU=uk4~iLHe*Ykl|>1vXq{u{N(*^`)v*M-+u2$WgvUk zLuFukw3O?A$FD5!-S=F%r#!cLw$DZRKaK(Yl!KY_-uL|l_ge>+{~T*s$rt_X{!wGi zn13sf{*R}%`Dz2~H;-K2cYyy>!F?`(>{;L%ed}ui_n86Px1!@SDR&y#@hf>Q0o2!1 zzH5#zpt1ap@Ly@O!Cm{{MSqNMTfJ+(N>wcE@&jqFe zOK@SHr@HRu?)NQR{m<6;6~_~)ugNr%%5Md37rkNfW7#olAZ# zuoAF11do|t;d^0g(M85w?6HE&m(V%mH)SYKUDR2GgO7e%KXv%_x2YUt@43>(QlQCn zCY7gs!5;A~MEhMz#n;WjU&~2;RU?AP5;$E7+z8lqg2(U!{sPe5=Wn@vsN)=3@vRBsiQ2TngL>XurKVbmqH` z=wXbU`tWY*8aSyOR6UQ^h}<;6rg`v zekW&~LATK9E_|akR&MfmPaWuu?&VW^PfpCo@E&^11e#0>sXV27Y~S4Hu(eu;c-#O0q^I6)UA5ABClD4@|ztK^xM{??%W%<%vx6h=< z$G~rwuGlf(yDiyXHl@*((5;Px9ZuWK^HtqGxaY{UGbhk~Y~_p<_>ItjGHyM`aE`9{ zVm{8ezi5N`(#DDMAHM8EfB5P6gQ;(z{I23(?1N8N%R(c4pCxAuxXpOeh8SF{420s8 zWoU`-gDn~Pz5D+c&=LNl|N1_Ul>zf!19r158*r-p$37pcT`nWz`#g(o=zkqp-s`bh z_s0gbm5?=LF16W3^Ot@4KbCzh)iHFid zTwnFx=Gph&;l-*g=4b6JR0hcL-MT)Ge@wn1!uPWIemd{R5JQOpzP-{L0=cn zp?a7HGw-*$ugBSUF0cX1mibR}_=L1e`&)1j8IbRmqu=~LKoKA7x=&kG{=+E5>(F&{ z3t3jaYtA)8`>7lsA|VHt0xN+OA7nPvm%6X>-%IFZQ~$*iD=UmEG5=jurT?sL_~L=c zfr$w&4#9lW=4MQ2V{WkTe{RL{wd`})gu3Mb{|epm#RJS95cKbm2^)~&Sw+TU%P{WZ zmzCv9+t1f62O&SunG2pBPym+jA3S4uS@t=`+C$s_N@zI2h5(3`5~AuZKnLkSIy&RnR~=+LbUAb_4L2nWE?9) z2Yr??K)-9FwqJ7-4?M&eaH{;TW$q_)`9An~`^aDwTaY&fII)1X$AFpgzm7G5zK`{> za)B)`^MKoy`M*&9tFKZvKW5&m45hxI_`F55V+_!5e5(Jax$;5svleAwFa8hF&sUyS z$&1E=ym^3$1zq-m|0D1H{|y-W&wFe`-aNpp2i$a>|Bdoq{=b+1o#%g}Klj?-r~hlp z|0h=g{u7lt0P19KZWX<*QihnfZ#)Ri1HeuAu5i+l43xJ2b@QHn!)yGay#MO1fyhqo4|I407`>x%?F5o{@;kzwEte5csee>-LJAe;RsQ;CCFFxF7zx8*WvhQ`s z6yw#tazLzr@jtX4h;7JV)`AVl<$r13XMD%Ms)OELtpne2A0L7LSPsR3vj6=+1{R0p zf7x|B?0lE}xi(~nISV%1+W44b{xdlAjS%yW7`oYX^6G!7wH(oT^q~!UceM@1x){Fe zGkN?s-v?SX&3vhUoB!gQu%4lK7Uk&t&~1IJ%wY>&7F{T!8Ta|`?9lsRE$;`|@Sim- ze3Kab8T;z`|19caADsT*sQ#x?mE8VkQ!L-=e2(!ic03T>+j%d&N(9{U)l0M%KV=)|2_Sj=#K9{rpsKT4*f4{{cmgj%lQ#mcXefq|A*uM z2aySEP*ESs+>em~Xzq&vU<1q?py@bZs{b+kCk9f62GA6pQ=ap`+Wc=e|3lCJhL_=M zUC%!MoqtH%M>dcPa8kJdPyVwI`&6c%p=XO^Admm%dtvaW$rQ!^GQ5ZH&{2?1L3v&m z59_W6o56p(BM*wR%EG>O0e>Lm6Xx;XtOegT$$Y6B`;xrjO%Da_e;MAZzN1&~`otF# z^sR1wHCZ2a$(03s2iEaIdR}y$*tc(N&Evl_2WV0R7VsbN;TX$%=%fGj`nZhqb&Tar z@;Rn%WEb0|V+1y>s^175UHazn-&qGZZBPJ${4c|M>?QsjV|xs3`}7QQfJ~z!^i%(1 zxJd8a`|i5I6HkA@`+bm>=YU@R$NKsFUoUjQzdn>t*On|XuRzA>FLN1}zeVTxgVqMJR2>dK+9&f)9K>%xzER0gWp0gVln;Qv)q%$ItxEh#UF zNyqHdVEm&DbLcu~3Xh-u;;ZQx>xgB4>Pi-|Us-p+_Fw!U24+N3nf!pCisi z9WnZ2<>IYB^)tcvzoY-u-&C4O#fA9ew_^9P*>3+s=Zv#HzCS*FCgpb%JdUlC{THqr zAg7_en6wFK}TYF)bw-M1D(Sv zo>lDtegNx?(=nh-Y?$_x*S@?({^MT;eOTtVjN^Iz*Lzm?(R*xc7y0eO$&Lk8#sO%UH-_5r zfN?Oi|5s(9MgA|r9skbasK<;`v9=$7U+4As_J^?h$Q=Hi3q`&M@N7CgqUqz&W^T=M|_@*HKDbGmlG+JLfa*u)k?W2mJk$E=%$ zz6*T-{l8S2x%(VA=U&X%kIh7H;5~MLF;U}V&>h+q>7dIG&fziRbINCVZ|W&|f0j1N zt_@HI+hpgY%mMNL)K1Zs(xR-)m*GF-MCkpW1Mq*LeTF|)RypThj8CjSFwfh)KPng6 zMr@AkKvR4Q>acT9JRdv$cZ~lh+Gob-s`?Kd zwH|V4t>Zbq7W|=prg-q){~YxLQ*pO)u(oUWw= z{u|Df1*N6rP4jJjdQqUwu2Y3d%sdbU#Q}4^4Hp(+5s0@I285vOD$DKd9wB(!^ap?PB z%6H8T9T#%kWTO6*Z|@<*J9@W2jKr^4(Q4- zYg))g*|E{J1Nhx-=y8=c@B>u-$>C=V-}M=MhgjbqAJO-}pvrTb8=TP3Cex`@p3=bQ z!!QQWN9}KH&Ya%*1H@Q-an~w5tE&w1uJHX_d^bpCz3bK ze`#XPe|W99Y7ULKUv^G}oM1+;qB<22%Vi-}PA6f{2;r(WK}eeuOIr+Ag{XU+@>P z56sK3J^S*T@*0D3^ z57+~DJx<$?$yHYJ;)p&Sck70SWyX8$kIwnZ=st9fo%yI>r~tw(bi)78$Uy3}1}I@;P*j&iKCj4zGQnypSBe zw2?MGK+Jos`uzv&VI4kU7j)c*1LKAeKZPoKk35uF_fuKWHYK06!ThX^TiW%l1^VO~ zJAqtN209IGJYc>{-{@nJP4v-6uTi#)@89D7uZ-=R?27&ZjPr_rUXE-twowLKP-QOd z)4M}nLyk3WNldhipYNj;c7tzwt8N$NE$;u{Fg`mtgO5PW7-0L#c%ZfbKM6VLn>_$u ztMg^v>9MqMkIVZ02jo9uu!8@wV}R`|dV+tXa=_e+xi<5zF3SQjAjU837r3LZ`|7-< z3vrX!xIebR;r|ItX)!INt<(lom49f5J-~KqUF6UgdC<8ye)S>c0>2e}kW=tOc4OnY zmcMz&(4tJ-7yg^?e}GrpX(|n-^vH_^<@MR#qyNYev{gSr>$f>$2J=bmua%Fw{Qz{G zwH}?zH=*yg|I}afzK81%82;mrA0k~zqp1w+n>5fHL$6 zJ*)D8Y^d$XvmervR9-_l{b-BlZlCa_83SVDKjuFG(8EI|+D>T-{oOtt`W)KSK0m}yG8GPG7cakN_WZ655;_G7r%2Qkm6I-7c5Jsp+1iv#MoA}|Ihpf6m&lo zIAoeh<0=2i(WjyEr;UCwra{NNZ~vIF|4_c4D{pfv18vZ0$Ze!?GVupPz5xFZZRic{ z51pn z#fHrPL1P2vEy%!3+Mulz#__&6`>*^b551m zeUyCOpbX$+q-}LE-fQ(`h{yPWzI7tU54dTN|5wU?<7APi2u2`^@YY=#FMzcyLKJ2u{tMoyhprh7K%W8M3wy2#I1oEXzxzAK%H0f*|LjOz=U|AmH6=K^)64gbrm zms{QoGO7F^3-ql_Js~>u@j80Vo~8ibFNID^rB#SVTu0w+T(IG}U}^q)cz>(?(wrDK zW8N{?1bBw;q_$9LAUSkd2uuY?WUt+cJ$rK6?Wmp)m>GJ9OarlgPSx4BDIvr0qza_S@#v4;`>U zp>eS;zQbRDwrCT%N3R36+{JYzcwY*f37iO2O_aS6Nb3h5+dpvAc#yLvU{STfoO0Be z;sGBl{lUwj%e6eaPrqkU{z_n}ZTfQT13ZC0RRH~=yn@q*w6DH)oolyp4xS5vGl8i< zo#|96OK|}|J1)WlV#3S=9NpiC_95J_7T=JQ~RGqqo&RX^;MVyMcg`Q! zy8na8_W3>M{BC-Fca|2C;Wa&feckBAWb(iT_t%ZyUH3uGf4IK5J{Nq_M%HH&@VPg+ zBiFJd_;Y@-bw2r_o=&FRH%U;*J(uSv~Ks_@bLJa5l2DDL?^ z^E~(6b1Sgich9ZBVBjo6c;23azkQx_TOS6?w$J%pgWqJa-T$5Q*)}~V?)lWY@1CD* z^II(Z7XO{|7q-vu+*_Y(4^DoNp5IXl%zh~6iCF!0kM0O5IDatf@>EF0Ik_aE-Rp9k zTu2}8PEt`x=+E6nvPs;t$=>7oz2q6Hx+CzvkUh!Sm_`bW6o{h$bE`{%rNE5wMS+>1b1M+k=Lg>S zrsOB&8|3;7@7&t=uQ=wK^A67Dc`YY7ZH;N9z(|2^P=IkisQc*slcyg~KKkX?dJ z3LG^BPNes@0#+x}sDzdD{>s`r}z_~Y-~Jgam4qTKmD=cc^0f7*W6#}-El96bfDg#uO&)8iuD#|H2WW%Zj2 zMY^x|195=)(Q{%Xz(|31DS*zUI&AY8-ADhmjDB-R^}8r{{-;6fS+v{rv9*x`M@<3z zZPmR^POL99-&en%+^+qF{+BCc2b}NnY1{ZAV;U(iQlK3QETtLMy-gmY`{+M=0JOaO z-QAGh>vh%&wXDgPay+Jy0wV>Qr@%s**wI1a`F4!YJGOiOi0P?r$K<2_H_za)g^>aQ z3QXntj_wo7&(nAJ9`gk1asPK=)c*k0{g-EQc_F~uXBhzQGgli^_b6~8D8WO8xg5hU zg)2E;RshPM2{gfX@JTG7%fI~DuSe@Ya|A8V{{9%9x6kmcRxNLG@H&PxlTKa>+zR;U z5W2RK=NAG~fiX2tftfS`KyzT3K_YqEa3gIZGvF~3m!EWt9%~sLWh&UAeTcaE{$r2#l#31!htVfQA5iwKM>Ilb!&0UkaQH6r~e+U?s5C zH`e-G-@fQv*Zrx>{olnH{SU1FFN!+Q!~3U#GyU43yIkAiLxuAjDKixq(=G*|%S>P) za4oPDSP3Kp2Ksj?Fct8nbGf+Ff8W0TJpE^$p!Jkp_s2Hm?EjnlknZWV6Tus~+t8|^ z<6EisRNz?COgfI-Tna2RXqx7Is2^IK31~WzgIj?u+#jF*eCe^@uKU^lT8kO?c_y&- z4_@FngaqApXf4;aXwUhB5C2#K51=V_*ahCNV@|^Jl+|lE*Hlga+Pg}~LvU~n= z#{OHWv+oJn-O$E8M(^vC1?qF#$j-r|%jrarI}-rUrNFH~s4sh6w_~^Z*LCusYjxo# z?00Et)G<9sBp$^MkDjeD~*8cz+_$=d=>!cjTHl zNz-%1oVmd1fe1R4cIN_@0yhFXbg6pH>NGdb^bnhEkdeQQJa;TLmN^umL~vL&KUrJcFJmB30MsRKq`-~P^Ck#6SQ zXWZ79J?jd2&*t4z-@ojB|D5lCUyH2tJuRdITQZOAwi!dRcG?7ll#@$Ch{=S|S@%m8r?HCig=ASd}BR?~NA*6+LVoM*Y z##Z;?ExP35k)24^3#%@3jf$cE1GTzup_kKU)*eeA@or|eeWV(ud=_(0gCQQx~iwinqI>t7c6 z{yF=5RF1AhhK7{TE$v&Hx9$Hc|KJm2t&2}~4xXe_0gkT)ZUsWmM_*TcC$2os-TSZa zDo>ijSCx~Z|Mz|hi6I<%n=$Be^DyS8)7D;KZ2&PRP8o{s0qsoiH%ow59)?A2Ozu6AReE(}%lzZPfSU(s$Pu=)5xKU0-5@IdlJo$kq_kN;MQ&;~vZ))Fv8T}w0XXkI= zHR^kJ^s5Xn5Am$s_ftmyu?+zqfSB_TeSno~1Ms7}G@gP>m+(1+JdbUbvwe2$@14(l zFnat)|BuWEn7jJV`JvVVM>#Ji=Oews^kN*dvR&rA{~RA+h-(2$OD8=h9zV)gSiVNu zbelHBg;bU`kA43y#|I#0HncRA4(-s2YlmJB7jKhyQS4QW$^el4$-B%L3CJ^|)U&hEe$}-Rtv;oj>j0uc3pi6pP z1{b@(wCJ56^#KCk09y@I_qAIKIY>gl_xnaWP`@4c*jN8J`S{oVB$@rzpQrH2um9@= zIjss>&nJHK&l2kX*l+ydQO9zs>7HPg*}61#({%B`<3&J zo}=5p`Y$e$mw)%Wt-*`Gy-2Vv*az&w^Z)eQM`IVN!~p{D1}z7w_qJPSa&n8V7Xfnv z{U52(H`w+K&@aYdbnd0!`K#9Syo^l&uZ>L@u%BSx4IsX!etuq_^L>z0t1JUOo=U&4 zb%i#-KEoX0;Nz@(U+7RcFs{BZ|5vS#?PYYn=vnN+C;r)=4$eQ&@6X5nA4tys09*}J z=Y8Fp$;Fk`@uK5n+e66w`h|b~7o8pBi}XG3K63_qm?6v+@K05CWB&`7eFIv?_l*(%Geej~-jsj$+?{%;gy)(T_a+8PdHW*aBS(WNx45`|G`&J;CV1F{Y_>`dr{f zU`y}yoITiw^1qvISN;1T>2=w@5Hnzo11*}Scir_@Sqlv82SWajJ)H^xc5J{9_Y1K; z$Go_#t_=No)-dpcJ}UlD-MZRDeReG{HV(*IjZeRKGX#f&=c!@cDQ6sVcjBz883NtjaI_ z#{b#Sk>ft@31*Jp_Fmkk^sTG)5<`K`K3zP-HM5hgB`vP&#t?|F>Yk#asjcfUb*L&Ay@P2_iHn(-I-wWrRAl>s@l(S~w%D$Xm z4qM%KdbefVjXR)(Y)@V7~cLr2E_tycbL?{Fu^}bau-Qc2)mJ zf4@6=o@aAegK2v{V80O@I|sO)Tf5M>qu$(!-tdchMuh5q6V+-1f+2*yw{BhL%Vd%cv0OoK_#|CSh102gbKeM^CC)$U{_u5Q?ErhYu=hcEs2DG(@;*Rd9bo8lfF1om*xp~( z_>SlsoT>xIo--e)`+Y+DK0xeVpul%QZu&Kxm&Ud;`aizEcRb_1&*t&n^}753I|qo} z3zYLdz_heh^`}55^ncX-~KsyRV`O8Wy#n@~;MjEl zz8zr4!tD6AKk8f>(}U?h^F7P&@p!Zat_(0A*ylYWT?dH$HYh#PLZt z=>PZ*@2Kmpu7}Rk`9Q_*3fOOhvc?}X2OwVP(SP)0h^ck`XKokb^>}@>3n3Y(@-CtM ze}LF^z`!>FmP1s2>C=@!Vxh_T|KN20_x?Kh^f&)Dh0lKL?~>2G_V;Tzzf8XHNB^ld z*wmZVuWf$n)xS9^TUz#A!Ycm}ma`6cGC&)EUE9+Crr!PQv+ffYLg&!K&wu+rqfm5jcm&(>`A>^PMqW2aNrnVCD#cb->xE|F2bA8|;(rGp3?9 z=npz|_9y?PGdjMHz4^i)|L4?pedZ7TeS$sfv;Kp7?7M_^FJNp8fb{}*T$J<0sQ=~l zzw^2;K0G?Xn2C<;qhoz4i~oXsqu)B8cv)!CC%X{yE}@M9#O?ziR^ZY9<*5JV^uMdR z&ls=cd!KZ+4P5bem_vN}_y29um-s^7yM%TxFyH)-Sp&#*|{ScS`q< zbd0aVUSJPCC-F>tq%QjgdGi64ao+KZ(SM$K`;$Mvr59Npvw<0aM)bcEx}WJh@!UG} zV65Z&iOv~PThPI|Lg-yW-f2aD%ftW!{|~en^*?_OaA@6UE{p#<>TC0B6WCVfQC*80 zxbG6$cL8E!fcO*Hm~ZptsQ+R8KbY>zScDu7C05@@+l4J4X3&*6f_<0J{zq_Z3@{J_ z7}~o4^vBw_ggp~6@9nwI976YrPchbaZ7sf!`db&ytf6#eexUOK8w2DWzt|W+U?0Gc z-UZmweQbfN*D>d9@8`$IALsSW`}h0U1Z*;K!!FDXc$ZMex!89Bu@QlN0Otdm18nG` z^oh}T`%Ihf@S^vuS??p4W7+oY273$+y_WdMTi=n&I&uBj@jvh`z}2Y#>li>=x4eS7b53*YI*R~+Z}!_$3h3s|dZbG^XoKjV6=4H)=7pmO@( zg6^}9H^%dat^3vv5YK5NM)>UKe|sbAv1@?Xh=K0|+R&tE{BQdI`0(||_50(|dus!* z_f7i(R{x3X#g6}h7~u6W`TzVs18b>G?CltR{o~YmtN(h;UXG@Gffwd~xf$zX-vh!% zFb~zS(d4UR(f=m*^^9ZwsQaq>nzMhXsqYi0{+7{yY=D+?@*$Xjoxa(aUt=+T*{?gs z_eR}UopMII!3KlehoWrY+i}ZEygdd*vJQU)g_@f~zCPaL&G=I_I3a2cWF} z4|pHoj_mT^>`l$}*$;YXxdjLG3jIRgn%3_+Z3T6Kui7TH71#*Ak9%m^Hqm|>6OiwH z)nNxz|I7Rz0ONn)e}OIsFag-n|2pXG)pE@w`;71KdLMm% zMcKp~rr5qu;+I|26gO@Bh2xrOSWp1kC=; z|4i`#Cva06^u&i=PHn{-9(v0T@55tt1u6LO|!07)#*8q0pWFMVR%eJt#$9ToKrE(j}@u$%X#?O6ptgmI&cc|hsU{i^a zb}@dy+Hn;*wR-@|>;Xpq1OE%y_iq90=uj29Zpw)6HyP(c?-`>)`p$K9{^>8inmqrV ze>h5=FS1qGg!jrC557NB;-<9>9(aY;?J-kJX^=GX~k% zt(8rVnF}+<;R_eZ|9F2pzJZ;@UdF^8)hFmm{4o9YXbCypNB;-922hXwH>CT_L-9df zeb;m5xybHN=JH*zP0W?BrAp&aPW-S7^Mf+)4K<+uH$tC2ryV|*9{(HCea4tjT#vB| zAGQnnGE^L}snEE{FTf5Ei#b%BfVJh=_XUtCQPvd7z5_rEK+8J$@#=pAy3d#&itRDp zk9xoDzqet3m?IEJ&5IeRKX8b(17c3G?+vQ%R?+_ft^w}YwCM4_0o^CQ7aH?NKfisw z_t_R~0qcyR{Rh~AL&OSW*97*_{{gN6GJn~!0nCvKZ9oIM&pJM`{C}X9H~E=<9b+@2w5s z7(0MJ;K~u_ZTkYm07jRoYa3977B(f)g+eJn&A6@-S?=Y@~v)BVxk@2}ol8-V@x`2x%b+OPq6 z^MFzRg#!0el>XQG%^vvg#`zd8*q3T$Xguz}E%3z!+Oh$m_k=|BQ=hZS_&>ls0M|+n z&EGeBWjlUSW2`@<`{Tad{_A?kUi;<)ZP@_d-awV}QU8S!lgUEqp*inJ+xTf+-|1w& z@2>3==NsSC8LsZDO~AgpF@ZL00RJapWtn4@^Q!tE*aI|`di$7i^}nuopD)(eml(gk zFQ@z8^jke$%<;Fo`mVFj1`q>kdR@T%hNviMY6Gh3|G@SD1@*tqIlsHU&pzI+#rVNT zzq3Q^${nv%Zu*jApSt!Qw9f{x{##dE*;fy-K)W|s`8VpnP$I|wCw}6iXW47+`+MkB z7kqwXkujZj-Ku^sM`fw&IeqL(e3f{BORuK)3*%$xJV4v7s{aG~4#-^Tp*i13#%C(4 z=f3Cd`&L^2q2v&ogY2OTeIMJEmSuD1TwRzSV0SI)ZMUlaQ%>tJ`9hBS zm}Y|XR)2oto$smTd%f_}jrZY?YD}n&oH3p`@zBS2mxo2?%nhJT8$1ZLfi1FlGDq}{ zA$48T?*(a_qy7seCX*fguWLT$ey58$bx0QKyv{rxJ2UG1wp~}bw>iGhq2e(3V-^>V zoBpm4K7h7aRsREffUl(9KBgW0XUyK$=DL1=8}UBIGvryAPz&&1amRF(^qBoTWnqAOfHyQz+T_tN=AP^KHz{A} zy>G9n_9Z4)J!kJz(fdytN9uBp{lymO|6Rt=pzXOCJ|Dh^8;fC#j*+n{&)9LP?Dv1w zPK^4W|G%|vyuT^GAOEqc-akHlW;3RDS&!?$4V$L_dsk!!@Sp0Oi^bH1-LZJ_?WZcb z9aCo1f1&hl+M>VQu1tSoe#COA188ck&$p*k+w|pcc+*446Hk92IsMevHtRrj=vJTV zz^{q118v&?*9Sm;VsyF6Gj-@c`(ZsYb}QHVn!tUlPtd6feciF2`CZHyQ0AF3WB#%0 zyw5&i1B>PbZQB4hZc|nMie#331}f`S{r>^J1GH3{XkLZ>zOlc~*fMpwYetH%%^B;N z`_c!W{EyeZo4hdp%Y-?QrJH-qx@j4^yw9`5hiv;z%>nHAr1SYIxy98S%V955E&9** z`=s|9sB`R()qP_1$o8n?-;JUHu>tI*<(oZjGbU)`fV>w_G?rJnKkC2NKJDl~x?GmN zHs%j6>m2)w#(mbjKK!L`M#=nW8@6o&bjz~=O|IQopTV62l$F1j=k;52Z+Y}>rPuwe zpI~jIIrb`74=yfDAJVY^I~hYyeTMh?Z5?&aAKf)#+YZP0`s0|ttl`m!pU~<) zKL4o8eqF9g7uEzvbt?1klb-FtyqpVGdJ`Y)8YpJsBnp$*4n^xuv9 z*X8>oBffXV!H@m;Dz9T+uN@$k5{d^l?E~;$qRL_!8H^eGi6>~?9P3zKB_G)Mf2wq` zc??Z?#(mE(WZSD=_t}6k=2x%IyEc?{K`RS-T&Hj6lLxE+b-agWW!UQfK6`(#7X#CO zVej_%&$*>t-m#tg!#^Ki_r1n9E39t_evDDbsVlofIA;uIE>8d0)4*PxnD_d4hCRO6 zM}23pDm{FA1mVHHyv!?)eX+8bCwFD<*|mT6@Kzc3wahW-f9!i$mS0Vd54`8++XsNm z_w}7UVi@elMaS8zjP8bfZ%gO0$LKOPgmz-%CfE;OJ57E+$X)9#tK)gkTm4r(u9^=} z|5q-r@t5-G$vx{+QNFJIV(5A(j^OhJXdC_M;ywUqgndGv&_8tCH@3R;Z}J?Q3BB@c z0krht&}1CY)qi5kMKTzB-^Mko>b;hG`omt^crNtnYg!88Tl{|Rm2VW%-qrt*&gS`i zzI*66`0%ceFXqJFLOWMf+;vWH2s_~V>-Jqc)UYs|b?yDZ2C#nMq2)rZ^)+1!;#+-+S$}OR_V3C8y6*EWxRxjD zIv-}-)%h?o<(m`hoEtq>&@r3x0AmPxZNcZSGf!bIMC{UMzg)R*;v5?T9esAv<+YyE zFZ!73D22_c?a;UvWd9 zT-oCsJHWW4&$XSSW8jS6;^Mat9qKHr_P`fIap{E}K=+s*xc4}xt~znkx|-B~?FYVl zRlV18$Dsc)>#uF=KRjf-XAX+ayJIW%A#cy1%0QVMyMlgGFFH=U$SE-jmD`w{GS~;| z@Bw~1?YL0JuA$r1Q)G*arF|r2_0hFhgNPK zb(}*#i$h)hzulu+^}C-s_8*J>!-t}nN>k%MI%MTQkBOV(o9ekQM~=}w9jB}4ah@#e z+5|el_(^+B>$t`-=)1-u$Td#k=ENx|f9V^vbIZBsebayJi1uOMy*~rh ze<9EI{Ganf=|6Jl!-s3c>6n)y|GwCpubleu>MJ0>I?m_iR>#Zu;XWMfHSk840bQ4; zKg8ixmyubG!&S|xgBYH>-l%h^kWTYJd`jKAOnu)jxjx~d-6Q4T!7&Fw4x3;M1; zfads3_&4tJocB%tt(>Y3?~@Ny|CcVWi}nCmyGq&6c%m{@CJ*_c=vkgV;2WTCcJHi? zweC3R_SZeva^$Mdx{gR2dHZMba6II_(Dy&F13vzt>n`~0MH$|Po^{9n*gdF4K0uv& zf3O>Y{{UEs{Pa2P=s$KdkG71x(%}u%DHqgb>$bSNo?p{!0=+A`+X9Wx2( zyL;WW`FXNe=3bq9e{%HyO6b_@}>j7cs|oHKtu#2&vs z>Uti|_%FUaei|QW+YY$=E~Ddl&(^v3CrAI6BAb0q>|fr}x0p3RTZXY?AANVr=J^1O zUwN`U-iv=nn7NE^ZiF3ZYOUYpHRm?w7$bXmI&bf(jMlODXTbVDQ#xrL^A5J!R?1+% zeSF>L8Zmpt$IZuiK)j9@*+cv(VjM1wm9Oqzt9^JHDr?)WOaJTq?hm>@VEvz3`s=Z^ zqrPMJ+n*ucR=ti78d?hgN8(vUvOV69w-dy4eCq`8fV~4%`B+rW_4SHkPd-`nU9&MN zj#Y>E$pi7frO0F7(~kWwdI!^81E@0ws4^4U4iiF2yUw|f&u_~P*#BR+Iu-LBW;X`Vl#ht46xje` zSViO8ct30>Lht+`7j>`is_x@cSh=e!_J@x^UDRF2d;e+!2CV;c%Lk4b+lzcH`+gN= z&{5@W6M2yhK!!&h59@e{HhH>F{I99~0Pfts&j0?=@6(R@FPd4LX7b3EE#|yP|G97H z08Pq@+7reiAFg_h_us~tK)eme(|u^#WbEJF_fyxtU*uBdp^o?dk6`>4a_#DWOf1G- z2WV1W)CMrmDEgiaa?Sph(3m$~|88*IUuB`mm<~RLwnHA{Z^n#AJY!?iqy7tZ06-C+pe`BKTXApRCa8RFJNQHR(|aR^@71#QcLe&saAhDi9_#Y~nu-~PCouOlD$_UYU z(7uuL?h87>{(+&!4AFbm!bAIdEIl~py^E%8w;T71nP%Nm&*_?r*3;yEfIK_EytRxSP<+u5=EdwK=yU9lIS%hf#LV%v@8pd8P3yip z_Q$+y79)T58C{dAbM5a4^j}0^a%<&*<1)6{T?=U9y}&%Zckf{b^4=qK`|3MqJyC4} zegbxZF|}*!2ly}GS61h>&rQ$wl{fCZzpnlMR{yn6b-nkibBBTZ|3bFOQfa4o%syaC zd-c7vd|Ps*^5x4J(-_-g;sc6zOpd=mTv0*46&A{gKkj2U7}v2s0Ch2U@qO<%26uf1 zeQYw$Z~1{NXuIT1jQw^`S{>i~R^306@xO8mP;CJ8x9frMxy^4$Sb1}gu>;^zw2#or z=#Y>V3Wt{oR;f%=;xOPi1l&hyL|H{EuV&PXx0>I+15L_EV3mtj)q- zEl*B7uC1{qB!hX^@e3FatHcd$Kf8L24W@r>>pe7g{eH%jDl!#g2by^APv-zfF#i|v z-Tf9ol^6}{0UC!@onYL_)4{IXLq~{HgReVoXr{{oJO)On>H>%T6Y zn)3Tq?lkuF&SySYtM7kA`agGNcb_<|jmK!ceYF89*EYv40Qk6o`V82JDnL9!>x#|s zRSvb+!qUPX`*a_FFm^wQ>T{W#x>d&NeD9~g|6fR(LrPQW%!ZD7yw7~i-4{Te$gGu@ z@%SGHLl5FS?mB;ybAGiEcC6u8^|r1&F#jK#{$tBls`r}jJ7@FRfHvM09_>oIcEvaD zqx&)MlB*t9&F#8Vo$vjq{Wv21zf!%|ylM=<^3tx&XuZr;M;&cfN1LK|NcS0wtsFFU zY`;gRI$LLcMEXBh{nUJ)7=Y!sU7yjq+j!@sDVZPZUE40^b8f7Ualb9yN5(Yv|L8lW zwfp|qk%9jIuc+Zp^6mqu%ZIaeT3Sv3;?`Y@VU4<7?3XatC+4Yq)VwX9-;OQX_D{e6 z6QlkMG4@P1QhtlCb$+A87Y|_k7-Is(I@cAuguV9dmm&yfCKa+kBF`Y`Mc64)}bwD5QsL$OeNW1s~tbccT&u|~~v~C>XN9di2I=|oTla;({ zc1~H>|NXeO&W9?fy2)U(0kTu+!!A`I)uOP+5(OJ)&0#M zYXgo@{~MnJSUwUf_W1(H81u~04jje~_+tAyE;PNL*UCrUvEtLjzF)Ngyi=gTTn7lr0Wl=sUIB{>^U%>JsNW70={@{EM2s&aD|YVRRO~ND z|A(ym^lfJjP}g3d5I^m8e2pSIfK5U^vj_N7=)JpdAKEG~$8Os9v%HTz);Z%F zA9}cvxWD@U#1@nmCYQrOr>XRAr{DX&4-m^+eGa+9&WGj&7Ds$mVpVN@*RJjudz%VYd<^MEI=P`U$A^mh;CEtsG~VmtXY1n1GSN*r^{=@-PSDVO{E+${f@iC;ibaG4oIX|>7 zNc+SJ)&KM17;_DO0UN-lP9^&A7>RKWs_h-JfI8 ze`1_Falks>2~<12Z;mZsEMShXuRU;W24f`lf$gW69!^VZ0_Wc9;zYy9TOQNrx^8tKv!8Nr9$Ov*x%+iN{UDw<>2KJ%tIR^d;z6)bK z_{8*$cnUOXd%u2&Z)L8-V~qz9`)lHzf1O9LuIQoXLarT4!Ux!)L6>}h7}+6yz&w$0 z4*wB<0sBxUp5UWH(KVf8pqu;5F&NX;wos4idd&E4aU_0&ztp95ycqtu&)Btp<^bc~ zU*U3d=}M~Ju>pM?J6t)k=g1U*eE`rE?1PRqJ{t7l+E8@f@`__(KuZ56zWa+05ZL>3 zD(xOqno4IkwAN#E!{y14&#`yd2jmX>(AFG7=^dLh=fS@j!Z=?fPw+tL!ajZV+w01i zUugX%m&2n=3+eF=EzpG`9v#bl=B3yNcaBkaT+-zOb{Ku9U2r%SdecwlF_ym2zb@V9 ze}r6G%lVDKF(%>ww*p%3WDS$e+&9 z7_aO4|F7p>d38(HGugj7M&-}?Ja_ec0@dq$@ez(Apjoj~V5@ zUAZ6WeV^X;{lK#S3li}CRnBKd{*V3eLoB_27rNWMLFjauy+MI@e~|O*QTZoVKHVSp1C9FF zCEKv?yMlaI*eB<5?d*tcz^MDO_q0oLKH?JQ2YV$|hs*8_B6b+~{@=0A14i8+b-#DE zkA2f>1IqqaK;Ro7)VDY?AHb{o(3N=WI0l8sppiC*rww~l)drM(S1@NDa4fOFQTNAj zzt=Y2eOIu|e+DoQ20Qf==1m5=MULk`>tS_y+Jv90*2-TjJiMS{vdT< zZGwGQu*}||zUN z?$XV^D_G_|p+Fp9A-dA{DO)g*;qi#zJQ$l0F0k~O=p65;sX1pNBQlx{EqzDk3V)_Ki_sn|90he zv=jT&+rH!9c@H)IwPZY&hE-E=lBF=X>7k4RJ11` zXDyKRw7#S*-4~=w)2u9w^?BxN>@R|k%sDvMdt+W*H-=0*^wWON19=TWRUbg@3VZ#E zVu6AG3hYZ9@We;EHsr^yyDAR&aia|w_1-6c#PnkIUge3rN-T?5pw?0Je}a5RK%aH; zshoE`%>=lF;JjW}!#<;sB&zx78&*GPA zT}3`XkK=$d?W5*R>wl5%D<1f6@L==@j?WGdw<89P45&O5S6<%;ug?VbNpmTz z^=)$ejxv6u+N`4g59*=*L)#5q^tcZDU!eO}G+ZJf2iF2SxQ4DFb7QQaJv)Ft!E&8@(OKQYI|3$Ri9+Bw_r zp&#SVLo+)T#?U(F8D!y1ppA4QjjRNA%%%tE_ zV5d(p*RTilWr%Bw_&dnD>Nx#GzkwW|tr8tGT3<`P5J1MdkY<9!PJifokuPZHwDvop zIb;943muNcVdc^#c5Z~7Kxf?Y<{TL~M4C#Y=K?nZdH5CHLqD+p$Uw|kQ8bp+d0)qD z@B%+~><0G&{uK7V1pSs7&1aH#H6ar_eTGJPV;*$Ya&|v(VBgQJJbThr0(kIRXx}u) zCKky$@>VczTzT3$#HCYd^i1GdV8h3Kj+qbY*okdWy{j{4UZQPiz7Nhdm%Wkt;O|@j z`t~V#?=X981!zNQmF{6=7hk9jr#U7(Ea1>`${o;sit_4h5!1z}%* z%3h=YvmSMRD!85tTnUuz>kyw`X0(7Nvkdwu&w_exqE9P<9Ug|}zW8?feBhlw?k@!T zn4rgvz^0ECj<2N*_4GNN3i5M-OMzQ~edy7(vh-(}!Ik6-fmsIh``FS{I_%}K&jv6b zmgn=&ZQG8fgPH7t}W%-RNxrXOgarL8UT2p^=m$rYh$XP0zn%Xq ztPip#EKP^ts(!Q%UgKOapkF@wcrDjw2gh(kV5C4j6bRY?sXi%y8@Yc{4;o`FBLzkZ z9Ebu_X%}5C(sz6RR-QjS5WZuxBLzkZ)Jp-z@hbtVSAPP>Bah{s5Qkpi_-;6!RX7g%O+DfyW|Z7B()A5Nx$JL}8$CJ*M`znDCbcmMUt zzXgps~39zo?h2{eV;Q3ut835 zXY$D@s&H>}T@TXg(_(UexAyV zx*ksN$$t7o(fv$-g5~$Up9xT~e!YJ;(7&SlnSdps^84P`0XkIw-uD-4 z0SVS0dH-S(NV9eQjoqIX)Zg^|Ou&Qv+xPyy7Pjf~nSuoS-}L=V!Gi5KeLqvcVEdiF zzep7*jQ^qU&kFGC`~7J_|Bn6s+JJ`Ta~SvUPC{wjzv13r4^ZL$b>sfM5PPyI-m%{g zPCzpH4E=t12Dz5suHO$%5HtRD{eE}`zNY`7?*}K?8GReSe-ScZYx;ykG&SA7ThRW# z_wN-`Xert9j1F~*F3h4(}4XZo3h@GpvB>HUj9|22XYxUEY}LH=hG;GleE z_e12Gu5{8D2L_dCc1b?jS0ZQT#Y~ z(AClDdSyh*pCnELa^phE>HX|+s!S7_e^=Ld<;pBuGhE+Y3;sR5e~~JRZ6M{FsMT7* z#=d-jfwz;n>ka{~?FO&w?2I_8>YXwtkPx-c%{~u&}mSM0+ z@5+xZ9R5%jAmOyyOu2uNm3uw2BU(=LyIQYaaPoUvuX9~be~`Nbo(RkINq_#jbpQVc DdBplL literal 0 HcmV?d00001 diff --git a/data/desktop/128x128/coffee_bag.png b/data/desktop/128x128/coffee_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..c685350377d46762f8d1b794db4e1586af657155 GIT binary patch literal 8377 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 J%cRXh{~rui#1Q}h literal 0 HcmV?d00001 diff --git a/data/desktop/32x32/coffee_bag.png b/data/desktop/32x32/coffee_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..8d9cb7c374a045cbf576bc20feea7c76ae00ee8a GIT binary patch literal 1741 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 literal 0 HcmV?d00001 diff --git a/data/desktop/64x64/coffee_bag.png b/data/desktop/64x64/coffee_bag.png new file mode 100644 index 0000000000000000000000000000000000000000..7fe06d2fff41c4e7e070050c1a3fb5ba8810ae3d GIT binary patch literal 4070 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 literal 0 HcmV?d00001 diff --git a/data/desktop/bean_counters_classic.desktop b/data/desktop/bean_counters_classic.desktop new file mode 100644 index 0000000..3e86aee --- /dev/null +++ b/data/desktop/bean_counters_classic.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Version=1.0 +Type=Application +Terminal=false +Name=Bean Counters Classic +Icon=coffee_bag +Comment=Play Bean Counters Classic +Exec=bean-counters-classic +Categories=Game; diff --git a/etc/Info.plist.in b/etc/Info.plist.in new file mode 100644 index 0000000..b5c8f07 --- /dev/null +++ b/etc/Info.plist.in @@ -0,0 +1,28 @@ + + + + + CFBundleDevelopmentRegion + English + CFBundleExecutable + bean-counters-classic + CFBundleIconFile + coffee_bag.icns + CFBundleIdentifier + application/x-vnd.bean-counters-classic.com + CFBundleInfoDictionaryVersion + 6.0 + CFBundleName + BeanCountersClassic + CFBundlePackageType + APPL + CFBundleSignature + ???? + CFBundleVersion + @PACKAGE_VERSION@ + NSMainNibFile + SDLMain + NSPrincipalClass + NSApplication + + diff --git a/etc/Makefile.am b/etc/Makefile.am new file mode 100644 index 0000000..61cfb3c --- /dev/null +++ b/etc/Makefile.am @@ -0,0 +1,3 @@ + +EXTRA_DIST = Info.plist \ + coffee_bag.icns diff --git a/etc/coffee_bag.icns b/etc/coffee_bag.icns new file mode 100644 index 0000000000000000000000000000000000000000..0eefdd680f1b473c037e06a3ffadc91a26fccc8c GIT binary patch literal 84227 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 literal 0 HcmV?d00001 diff --git a/po/Makevars b/po/Makevars new file mode 100644 index 0000000..0648ec7 --- /dev/null +++ b/po/Makevars @@ -0,0 +1,78 @@ +# Makefile variables for PO directory in any package using GNU gettext. + +# Usually the message domain is the same as the package name. +DOMAIN = $(PACKAGE) + +# These two variables depend on the location of this directory. +subdir = po +top_builddir = .. + +# These options get passed to xgettext. +XGETTEXT_OPTIONS = --keyword=_ --keyword=N_ + +# This is the copyright holder that gets inserted into the header of the +# $(DOMAIN).pot file. Set this to the copyright holder of the surrounding +# package. (Note that the msgstr strings, extracted from the package's +# sources, belong to the copyright holder of the package.) Translators are +# expected to transfer the copyright for their translations to this person +# or entity, or to disclaim their copyright. The empty string stands for +# the public domain; in this case the translators are expected to disclaim +# their copyright. +COPYRIGHT_HOLDER = Free Software Foundation, Inc. + +# This tells whether or not to prepend "GNU " prefix to the package +# name that gets inserted into the header of the $(DOMAIN).pot file. +# Possible values are "yes", "no", or empty. If it is empty, try to +# detect it automatically by scanning the files in $(top_srcdir) for +# "GNU packagename" string. +PACKAGE_GNU = + +# This is the email address or URL to which the translators shall report +# bugs in the untranslated strings: +# - Strings which are not entire sentences, see the maintainer guidelines +# in the GNU gettext documentation, section 'Preparing Strings'. +# - Strings which use unclear terms or require additional context to be +# understood. +# - Strings which make invalid assumptions about notation of date, time or +# money. +# - Pluralisation problems. +# - Incorrect English spelling. +# - Incorrect formatting. +# It can be your email address, or a mailing list address where translators +# can write to without being subscribed, or the URL of a web page through +# which the translators can contact you. +MSGID_BUGS_ADDRESS = + +# This is the list of locale categories, beyond LC_MESSAGES, for which the +# message catalogs shall be used. It is usually empty. +EXTRA_LOCALE_CATEGORIES = + +# This tells whether the $(DOMAIN).pot file contains messages with an 'msgctxt' +# context. Possible values are "yes" and "no". Set this to yes if the +# package uses functions taking also a message context, like pgettext(), or +# if in $(XGETTEXT_OPTIONS) you define keywords with a context argument. +USE_MSGCTXT = no + +# These options get passed to msgmerge. +# Useful options are in particular: +# --previous to keep previous msgids of translated messages, +# --quiet to reduce the verbosity. +MSGMERGE_OPTIONS = + +# These options get passed to msginit. +# If you want to disable line wrapping when writing PO files, add +# --no-wrap to MSGMERGE_OPTIONS, XGETTEXT_OPTIONS, and +# MSGINIT_OPTIONS. +MSGINIT_OPTIONS = + +# This tells whether or not to regenerate a PO file when $(DOMAIN).pot +# has changed. Possible values are "yes" and "no". Set this to no if +# the POT file is checked in the repository and the version control +# program ignores timestamps. +PO_DEPENDS_ON_POT = yes + +# This tells whether or not to forcibly update $(DOMAIN).pot and +# regenerate PO files on "make dist". Possible values are "yes" and +# "no". Set this to no if the POT file and PO files are maintained +# externally. +DIST_DEPENDS_ON_UPDATE_PO = yes diff --git a/po/POTFILES.in b/po/POTFILES.in new file mode 100644 index 0000000..4a89fe0 --- /dev/null +++ b/po/POTFILES.in @@ -0,0 +1,2 @@ +# List of source files which contain translatable strings. +src/beans.c diff --git a/src/Makefile.am b/src/Makefile.am new file mode 100644 index 0000000..2263a5e --- /dev/null +++ b/src/Makefile.am @@ -0,0 +1,81 @@ +# Automake file for Bean Counters Classic + +gamedatadir = $(pkgdatadir)/data + +bin_PROGRAMS = bean-counters-classic +bean_counters_classic_SOURCES = beans.c path.c path.h + +if MACOSX +bean_counters_classic_SOURCES += SDLMain.m SDLMain.h +endif + +if MINGW32 +bean_counters_classic_SOURCES += +endif + +EXTRA_DIST = coffee_bag.rc SDLMain.m SDLMain.h + +if MINGW32 +coffee_bag_ico.o: coffee_bag.rc ../data/coffee_bag.ico + $(WINDRES) $(srcdir)/coffee_bag.rc -O coff -o coffee_bag_ico.o + +mingw_ldadd = coffee_bag_ico.o + +else # NOT MINGW +mingw_ldadd = +endif + +bean_counters_classic_CPPFLAGS = -DGAMEDATA_DIR=\"$(gamedatadir)/\" -DLOCALEDIR=\"$(localedir)\" $(AM_CPPFLAGS) +bean_counters_classic_CFLAGS = $(SDL_CFLAGS) $(SDL_image_CFLAGS) $(SDL_mixer_CFLAGS) $(SDL_ttf_CFLAGS) $(AM_CFLAGS) +if MACOSX +# En MAC OS X, hay que ligar/compilar contra los frameworks +bean_counters_classic_LDFLAGS = -Wl,-rpath,@loader_path/../Frameworks $(AM_LDFLAGS) +else +bean_counters_classic_LDADD = $(SDL_LIBS) $(SDL_image_LIBS) $(SDL_mixer_LIBS) $(SDL_ttf_LIBS) -lm $(mingw_ldadd) +endif +LDADD = $(LIBINTL) + +#------------------ Packaging rules for Mac OSX ------------------------ + +bundle_root = $(top_builddir)/etc/macfiles +bundle_name = $(bundle_root)/BeanCountersClassic.app +# Special target to copy all needed game files to PaddlePuffle.app/Contents/Resources. +# For Mac OS X bundle. +.PHONY: bundle +bundle: + -rm -rf $(bundle_root) + mkdir -p $(bundle_name)/Contents/MacOS + mkdir -p $(bundle_name)/Contents/Resources/data/ + echo "APPL????" > $(bundle_name)/Contents/PkgInfo + cp $(top_builddir)/etc/Info.plist $(bundle_name)/Contents/ + cp $(top_builddir)/etc/coffee_bag.icns $(bundle_name)/Contents/Resources/ + mkdir -p $(bundle_name)/Contents/Resources/data/images + cp -R $(top_builddir)/data/images/* $(bundle_name)/Contents/Resources/data/images + mkdir -p $(bundle_name)/Contents/Resources/data/music + cp -R $(top_builddir)/data/music/* $(bundle_name)/Contents/Resources/data/music + mkdir -p $(bundle_name)/Contents/Resources/data/sounds + cp -R $(top_builddir)/data/sounds/* $(bundle_name)/Contents/Resources/data/sounds + cp $(top_builddir)/data/*.ttf $(bundle_name)/Contents/Resources/data + for cat in $(ALL_LINGUAS); do \ + dir=$(bundle_name)/Contents/Resources/locale/$$cat/LC_MESSAGES; \ + mkdir -p $$dir; \ + echo "installing $$cat as $$dir/bean-counters-classic.mo"; \ + cp $(top_builddir)/po/$$cat.gmo $$dir/bean-counters-classic.mo; \ + done + +# Special target to copy the binary to PaddlePuffle.app/Contents/MacOS. +.PHONY: bundle-fw +bundle-fw: bundle + cp bean-counters-classic $(bundle_name)/Contents/MacOS/bean-counters-classic + mkdir $(bundle_name)/Contents/Frameworks + for i in SDL SDL_mixer SDL_image SDL_ttf ; do \ + cp -a /Library/Frameworks/$${i}.framework $(bundle_name)/Contents/Frameworks/; \ + done + strip $(bundle_name)/Contents/MacOS/bean-counters-classic + +# Special target to make a disk image of the bundled app +.PHONY: bundle-dmg +bundle-dmg: bundle-fw + ln -s /Applications $(bundle_root)/Applications + hdiutil create -ov -srcfolder $(bundle_root) -volname BeanCountersClassic -imagekey zlib-level=6 $(top_builddir)/etc/bean-counters-classic.dmg + diff --git a/src/SDLMain.h b/src/SDLMain.h new file mode 100644 index 0000000..c56d90c --- /dev/null +++ b/src/SDLMain.h @@ -0,0 +1,16 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#ifndef _SDLMain_h_ +#define _SDLMain_h_ + +#import + +@interface SDLMain : NSObject +@end + +#endif /* _SDLMain_h_ */ diff --git a/src/SDLMain.m b/src/SDLMain.m new file mode 100644 index 0000000..2434f81 --- /dev/null +++ b/src/SDLMain.m @@ -0,0 +1,381 @@ +/* SDLMain.m - main entry point for our Cocoa-ized SDL app + Initial Version: Darrell Walisser + Non-NIB-Code & other changes: Max Horn + + Feel free to customize this file to suit your needs +*/ + +#include "SDL.h" +#include "SDLMain.h" +#include /* for MAXPATHLEN */ +#include + +/* For some reaon, Apple removed setAppleMenu from the headers in 10.4, + but the method still is there and works. To avoid warnings, we declare + it ourselves here. */ +@interface NSApplication(SDL_Missing_Methods) +- (void)setAppleMenu:(NSMenu *)menu; +@end + +/* Use this flag to determine whether we use SDLMain.nib or not */ +#define SDL_USE_NIB_FILE 0 + +/* Use this flag to determine whether we use CPS (docking) or not */ +#define SDL_USE_CPS 1 +#ifdef SDL_USE_CPS +/* Portions of CPS.h */ +typedef struct CPSProcessSerNum +{ + UInt32 lo; + UInt32 hi; +} CPSProcessSerNum; + +extern OSErr CPSGetCurrentProcess( CPSProcessSerNum *psn); +extern OSErr CPSEnableForegroundOperation( CPSProcessSerNum *psn, UInt32 _arg2, UInt32 _arg3, UInt32 _arg4, UInt32 _arg5); +extern OSErr CPSSetFrontProcess( CPSProcessSerNum *psn); + +#endif /* SDL_USE_CPS */ + +static int gArgc; +static char **gArgv; +static BOOL gFinderLaunch; +static BOOL gCalledAppMainline = FALSE; + +static NSString *getApplicationName(void) +{ + const NSDictionary *dict; + NSString *appName = 0; + + /* Determine the application name */ + dict = (const NSDictionary *)CFBundleGetInfoDictionary(CFBundleGetMainBundle()); + if (dict) + appName = [dict objectForKey: @"CFBundleName"]; + + if (![appName length]) + appName = [[NSProcessInfo processInfo] processName]; + + return appName; +} + +#if SDL_USE_NIB_FILE +/* A helper category for NSString */ +@interface NSString (ReplaceSubString) +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString; +@end +#endif + +@interface NSApplication (SDLApplication) +@end + +@implementation NSApplication (SDLApplication) +/* Invoked from the Quit menu item */ +- (void)terminate:(id)sender +{ + /* Post a SDL_QUIT event */ + SDL_Event event; + event.type = SDL_QUIT; + SDL_PushEvent(&event); +} +@end + +/* The main class of the application, the application's delegate */ +@implementation SDLMain + +/* Set the working directory to the .app's parent directory */ +- (void) setupWorkingDirectory:(BOOL)shouldChdir +{ + if (shouldChdir) + { + char parentdir[MAXPATHLEN]; + CFURLRef url = CFBundleCopyBundleURL(CFBundleGetMainBundle()); + CFURLRef url2 = CFURLCreateCopyDeletingLastPathComponent(0, url); + if (CFURLGetFileSystemRepresentation(url2, 1, (UInt8 *)parentdir, MAXPATHLEN)) { + chdir(parentdir); /* chdir to the binary app's parent */ + } + CFRelease(url); + CFRelease(url2); + } +} + +#if SDL_USE_NIB_FILE + +/* Fix menu to contain the real app name instead of "SDL App" */ +- (void)fixMenu:(NSMenu *)aMenu withAppName:(NSString *)appName +{ + NSRange aRange; + NSEnumerator *enumerator; + NSMenuItem *menuItem; + + aRange = [[aMenu title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [aMenu setTitle: [[aMenu title] stringByReplacingRange:aRange with:appName]]; + + enumerator = [[aMenu itemArray] objectEnumerator]; + while ((menuItem = [enumerator nextObject])) + { + aRange = [[menuItem title] rangeOfString:@"SDL App"]; + if (aRange.length != 0) + [menuItem setTitle: [[menuItem title] stringByReplacingRange:aRange with:appName]]; + if ([menuItem hasSubmenu]) + [self fixMenu:[menuItem submenu] withAppName:appName]; + } +} + +#else + +static void setApplicationMenu(void) +{ + /* warning: this code is very odd */ + NSMenu *appleMenu; + NSMenuItem *menuItem; + NSString *title; + NSString *appName; + + appName = getApplicationName(); + appleMenu = [[NSMenu alloc] initWithTitle:@""]; + + /* Add menu items */ + title = [@"About " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(orderFrontStandardAboutPanel:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Hide " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(hide:) keyEquivalent:@"h"]; + + menuItem = (NSMenuItem *)[appleMenu addItemWithTitle:@"Hide Others" action:@selector(hideOtherApplications:) keyEquivalent:@"h"]; + [menuItem setKeyEquivalentModifierMask:(NSAlternateKeyMask|NSCommandKeyMask)]; + + [appleMenu addItemWithTitle:@"Show All" action:@selector(unhideAllApplications:) keyEquivalent:@""]; + + [appleMenu addItem:[NSMenuItem separatorItem]]; + + title = [@"Quit " stringByAppendingString:appName]; + [appleMenu addItemWithTitle:title action:@selector(terminate:) keyEquivalent:@"q"]; + + + /* Put menu into the menubar */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"" action:nil keyEquivalent:@""]; + [menuItem setSubmenu:appleMenu]; + [[NSApp mainMenu] addItem:menuItem]; + + /* Tell the application object that this is now the application menu */ + [NSApp setAppleMenu:appleMenu]; + + /* Finally give up our references to the objects */ + [appleMenu release]; + [menuItem release]; +} + +/* Create a window menu */ +static void setupWindowMenu(void) +{ + NSMenu *windowMenu; + NSMenuItem *windowMenuItem; + NSMenuItem *menuItem; + + windowMenu = [[NSMenu alloc] initWithTitle:@"Window"]; + + /* "Minimize" item */ + menuItem = [[NSMenuItem alloc] initWithTitle:@"Minimize" action:@selector(performMiniaturize:) keyEquivalent:@"m"]; + [windowMenu addItem:menuItem]; + [menuItem release]; + + /* Put menu into the menubar */ + windowMenuItem = [[NSMenuItem alloc] initWithTitle:@"Window" action:nil keyEquivalent:@""]; + [windowMenuItem setSubmenu:windowMenu]; + [[NSApp mainMenu] addItem:windowMenuItem]; + + /* Tell the application object that this is now the window menu */ + [NSApp setWindowsMenu:windowMenu]; + + /* Finally give up our references to the objects */ + [windowMenu release]; + [windowMenuItem release]; +} + +/* Replacement for NSApplicationMain */ +static void CustomApplicationMain (int argc, char **argv) +{ + NSAutoreleasePool *pool = [[NSAutoreleasePool alloc] init]; + SDLMain *sdlMain; + + /* Ensure the application object is initialised */ + [NSApplication sharedApplication]; + +#ifdef SDL_USE_CPS + { + CPSProcessSerNum PSN; + /* Tell the dock about us */ + if (!CPSGetCurrentProcess(&PSN)) + if (!CPSEnableForegroundOperation(&PSN,0x03,0x3C,0x2C,0x1103)) + if (!CPSSetFrontProcess(&PSN)) + [NSApplication sharedApplication]; + } +#endif /* SDL_USE_CPS */ + + /* Set up the menubar */ + [NSApp setMainMenu:[[NSMenu alloc] init]]; + setApplicationMenu(); + setupWindowMenu(); + + /* Create SDLMain and make it the app delegate */ + sdlMain = [[SDLMain alloc] init]; + [NSApp setDelegate:sdlMain]; + + /* Start the main event loop */ + [NSApp run]; + + [sdlMain release]; + [pool release]; +} + +#endif + + +/* + * Catch document open requests...this lets us notice files when the app + * was launched by double-clicking a document, or when a document was + * dragged/dropped on the app's icon. You need to have a + * CFBundleDocumentsType section in your Info.plist to get this message, + * apparently. + * + * Files are added to gArgv, so to the app, they'll look like command line + * arguments. Previously, apps launched from the finder had nothing but + * an argv[0]. + * + * This message may be received multiple times to open several docs on launch. + * + * This message is ignored once the app's mainline has been called. + */ +- (BOOL)application:(NSApplication *)theApplication openFile:(NSString *)filename +{ + const char *temparg; + size_t arglen; + char *arg; + char **newargv; + + if (!gFinderLaunch) /* MacOS is passing command line args. */ + return FALSE; + + if (gCalledAppMainline) /* app has started, ignore this document. */ + return FALSE; + + temparg = [filename UTF8String]; + arglen = SDL_strlen(temparg) + 1; + arg = (char *) SDL_malloc(arglen); + if (arg == NULL) + return FALSE; + + newargv = (char **) realloc(gArgv, sizeof (char *) * (gArgc + 2)); + if (newargv == NULL) + { + SDL_free(arg); + return FALSE; + } + gArgv = newargv; + + SDL_strlcpy(arg, temparg, arglen); + gArgv[gArgc++] = arg; + gArgv[gArgc] = NULL; + return TRUE; +} + + +/* Called when the internal event loop has just started running */ +- (void) applicationDidFinishLaunching: (NSNotification *) note +{ + int status; + + /* Set the working directory to the .app's parent directory */ + [self setupWorkingDirectory:gFinderLaunch]; + +#if SDL_USE_NIB_FILE + /* Set the main menu to contain the real app name instead of "SDL App" */ + [self fixMenu:[NSApp mainMenu] withAppName:getApplicationName()]; +#endif + + /* Hand off to main application code */ + gCalledAppMainline = TRUE; + status = SDL_main (gArgc, gArgv); + + /* We're done, thank you for playing */ + exit(status); +} +@end + + +@implementation NSString (ReplaceSubString) + +- (NSString *)stringByReplacingRange:(NSRange)aRange with:(NSString *)aString +{ + unsigned int bufferSize; + unsigned int selfLen = [self length]; + unsigned int aStringLen = [aString length]; + unichar *buffer; + NSRange localRange; + NSString *result; + + bufferSize = selfLen + aStringLen - aRange.length; + buffer = (unichar *)NSAllocateMemoryPages(bufferSize*sizeof(unichar)); + + /* Get first part into buffer */ + localRange.location = 0; + localRange.length = aRange.location; + [self getCharacters:buffer range:localRange]; + + /* Get middle part into buffer */ + localRange.location = 0; + localRange.length = aStringLen; + [aString getCharacters:(buffer+aRange.location) range:localRange]; + + /* Get last part into buffer */ + localRange.location = aRange.location + aRange.length; + localRange.length = selfLen - localRange.location; + [self getCharacters:(buffer+aRange.location+aStringLen) range:localRange]; + + /* Build output string */ + result = [NSString stringWithCharacters:buffer length:bufferSize]; + + NSDeallocateMemoryPages(buffer, bufferSize); + + return result; +} + +@end + + + +#ifdef main +# undef main +#endif + + +/* Main entry point to executable - should *not* be SDL_main! */ +int main (int argc, char **argv) +{ + /* Copy the arguments into a global variable */ + /* This is passed if we are launched by double-clicking */ + if ( argc >= 2 && strncmp (argv[1], "-psn", 4) == 0 ) { + gArgv = (char **) SDL_malloc(sizeof (char *) * 2); + gArgv[0] = argv[0]; + gArgv[1] = NULL; + gArgc = 1; + gFinderLaunch = YES; + } else { + int i; + gArgc = argc; + gArgv = (char **) SDL_malloc(sizeof (char *) * (argc+1)); + for (i = 0; i <= argc; i++) + gArgv[i] = argv[i]; + gFinderLaunch = NO; + } + +#if SDL_USE_NIB_FILE + NSApplicationMain (argc, argv); +#else + CustomApplicationMain (argc, argv); +#endif + return 0; +} + diff --git a/src/beans.c b/src/beans.c new file mode 100644 index 0000000..cff296d --- /dev/null +++ b/src/beans.c @@ -0,0 +1,387 @@ +/* + * beans.c + * This file is part of Bean Counters Classic + * + * Copyright (C) 2018 - Félix Arreola Rodríguez + * + * Bean Counters Classic 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 + * (at your option) any later version. + * + * Bean Counters Classic 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 Bean Counters Classic; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, + * Boston, MA 02110-1301 USA + */ + +#include +#include + +#include +#include +#include +#include + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include +#include "gettext.h" +#define _(string) gettext (string) + +#include "path.h" + +#define FPS (1000/24) + +/* Enumerar las imágenes */ +enum { + IMG_NONE, + + NUM_IMAGES +}; + +/* Los nombres de archivos */ +const char *images_names[NUM_IMAGES] = { + "images/none.png", +}; + +enum { + SND_NONE, + + NUM_SOUNDS +}; + +const char *sound_names[NUM_SOUNDS] = { + "sounds/none.wav", +}; + +/* Codigos de salida */ +enum { + GAME_NONE = 0, /* No usado */ + GAME_CONTINUE, + GAME_QUIT +}; + +/* Prototipos de función */ +int game_intro (void); +int game_loop (void); +int game_finish (void); +void setup (void); +SDL_Surface * set_video_mode(unsigned flags); + +/* Variables globales */ +SDL_Surface * screen; +SDL_Surface * images[NUM_IMAGES]; +int use_sound; + +Mix_Chunk * sounds[NUM_SOUNDS]; +Mix_Music * mus_carnie; + +int main (int argc, char *argv[]) { + /* Recuperar las rutas del sistema */ + initSystemPaths (argv[0]); + + /* Inicializar l18n */ + setlocale (LC_ALL, ""); + bindtextdomain (PACKAGE, get_l10n_path ()); + + textdomain (PACKAGE); + + setup (); + bind_textdomain_codeset (PACKAGE, "UTF-8"); + do { + if (game_intro () == GAME_QUIT) break; + if (game_loop () == GAME_QUIT) break; + if (game_finish () == GAME_QUIT) break; + } while (1 == 0); + + SDL_Quit (); + return EXIT_SUCCESS; +} + +int game_intro (void) { + int done = 0; + SDL_Event event; + SDLKey key; + SDL_Rect rect; + Uint32 last_time, now_time; + + /* Predibujar todo */ + SDL_FillRect (screen, NULL, 0); + SDL_Flip (screen); + + do { + last_time = SDL_GetTicks (); + + while (SDL_PollEvent(&event) > 0) { + switch (event.type) { + case SDL_QUIT: + /* Vamos a cerrar la aplicación */ + done = GAME_QUIT; + break; + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_MOUSEBUTTONUP: + break; + case SDL_KEYDOWN: + /* Tengo una tecla presionada */ + key = event.key.keysym.sym; + + if (key == SDLK_F11 || (key == SDLK_RETURN && (event.key.keysym.mod & KMOD_ALT))) { + SDL_WM_ToggleFullScreen (screen); + } + if (key == SDLK_ESCAPE) { + done = GAME_QUIT; + } + break; + } + } + + SDL_Flip (screen); + + now_time = SDL_GetTicks (); + if (now_time < last_time + FPS) SDL_Delay(last_time + FPS - now_time); + + } while (!done); + + return done; +} + +int game_finish (void) { + int done = 0; + SDL_Event event; + SDLKey key; + SDL_Rect rect; + Uint32 last_time, now_time; + + /* Predibujar todo */ + SDL_FillRect (screen, NULL, 0); + SDL_Flip (screen); + + do { + last_time = SDL_GetTicks (); + + while (SDL_PollEvent(&event) > 0) { + /* fprintf (stdout, "Evento: %i\n", event.type);*/ + switch (event.type) { + case SDL_QUIT: + /* Vamos a cerrar la aplicación */ + done = GAME_QUIT; + break; + case SDL_MOUSEMOTION: + break; + case SDL_MOUSEBUTTONDOWN: + break; + case SDL_MOUSEBUTTONUP: + break; + case SDL_KEYDOWN: + /* Tengo una tecla presionada */ + key = event.key.keysym.sym; + + if (key == SDLK_F11 || (key == SDLK_RETURN && (event.key.keysym.mod & KMOD_ALT))) { + SDL_WM_ToggleFullScreen (screen); + } + if (key == SDLK_ESCAPE) { + done = GAME_QUIT; + } + break; + } + } + + SDL_Flip (screen); + + now_time = SDL_GetTicks (); + if (now_time < last_time + FPS) SDL_Delay(last_time + FPS - now_time); + + } while (!done); + + return done; +} + +int game_loop (void) { + int done = 0; + SDL_Event event; + SDLKey key; + Uint32 last_time, now_time; + SDL_Rect rect; + + /* Predibujar todo */ + SDL_FillRect (screen, NULL, 0); + SDL_Flip (screen); + + do { + last_time = SDL_GetTicks (); + + while (SDL_PollEvent(&event) > 0) { + switch (event.type) { + case SDL_QUIT: + /* Vamos a cerrar la aplicación */ + done = GAME_QUIT; + break; + case SDL_MOUSEBUTTONDOWN: + /* Tengo un Mouse Down */ + break; + case SDL_MOUSEBUTTONUP: + /* Tengo un mouse Up */ + break; + case SDL_KEYDOWN: + /* Tengo una tecla presionada */ + key = event.key.keysym.sym; + + if (key == SDLK_F11 || (key == SDLK_RETURN && (event.key.keysym.mod & KMOD_ALT))) { + SDL_WM_ToggleFullScreen (screen); + } + if (key == SDLK_ESCAPE) { + done = GAME_QUIT; + } + break; + } + } + + SDL_Flip (screen); + + now_time = SDL_GetTicks (); + if (now_time < last_time + FPS) SDL_Delay(last_time + FPS - now_time); + + } while (!done); + + return done; +} +/* Set video mode: */ +/* Mattias Engdegard */ +SDL_Surface * set_video_mode (unsigned flags) { + /* Prefer 16bpp, but also prefer native modes to emulated 16bpp. */ + + int depth; + + depth = SDL_VideoModeOK (760, 480, 16, flags); + return depth ? SDL_SetVideoMode (760, 480, depth, flags) : NULL; +} + +void setup (void) { + SDL_Surface * image; + TTF_Font *ttf10, *ttf14, *ttf16, *ttf26, *temp_font; + SDL_Color color; + SDL_Rect rect, rect2; + int g; + char buffer_file[8192]; + char *systemdata_path = get_systemdata_path (); + + /* Inicializar el Video SDL */ + if (SDL_Init(SDL_INIT_VIDEO) < 0) { + fprintf (stderr, + _("Error: Can't initialize the video subsystem\n" + "The error returned by SDL is:\n" + "%s\n"), SDL_GetError()); + exit (1); + } + sprintf (buffer_file, "%simages/icon.png", systemdata_path); + image = IMG_Load (buffer_file); + if (image) { + SDL_WM_SetIcon (image, NULL); + SDL_FreeSurface (image); + } + SDL_WM_SetCaption (_("Bean Counters Classic"), _("Bean Counters Classic")); + + /* Crear la pantalla de dibujado */ + screen = set_video_mode (0); + + if (screen == NULL) { + fprintf (stderr, + _("Error: Can't setup 760x480 video mode.\n" + "The error returned by SDL is:\n" + "%s\n"), SDL_GetError()); + exit (1); + } + + use_sound = 1; + if (SDL_InitSubSystem (SDL_INIT_AUDIO) < 0) { + fprintf (stdout, + _("Warning: Can't initialize the audio subsystem\n" + "Continuing...\n")); + use_sound = 0; + } + + if (use_sound) { + /* Inicializar el sonido */ + if (Mix_OpenAudio (22050, AUDIO_S16, 2, 4096) < 0) { + fprintf (stdout, + _("Warning: Can't initialize the SDL Mixer library\n")); + use_sound = 0; + } + } + + for (g = 0; g < NUM_IMAGES; g++) { + sprintf (buffer_file, "%s%s", systemdata_path, images_names[g]); + image = IMG_Load (buffer_file); + + if (image == NULL) { + fprintf (stderr, + _("Failed to load data file:\n" + "%s\n" + "The error returned by SDL is:\n" + "%s\n"), buffer_file, SDL_GetError()); + SDL_Quit (); + exit (1); + } + + images[g] = image; + /* TODO: Mostrar la carga de porcentaje */ + } + + if (use_sound) { + for (g = 0; g < NUM_SOUNDS; g++) { + sprintf (buffer_file, "%s%s", systemdata_path, sound_names[g]); + sounds[g] = Mix_LoadWAV (buffer_file); + + if (sounds[g] == NULL) { + fprintf (stderr, + _("Failed to load data file:\n" + "%s\n" + "The error returned by SDL is:\n" + "%s\n"), buffer_file, SDL_GetError ()); + SDL_Quit (); + exit (1); + } + Mix_VolumeChunk (sounds[g], MIX_MAX_VOLUME / 2); + } + + /* Cargar la música */ + //sprintf (buffer_file, "%s%s", systemdata_path, MUS_CARNIE); + //mus_carnie = Mix_LoadMUS (buffer_file); + + /*if (mus_carnie == NULL) { + fprintf (stderr, + _("Failed to load data file:\n" + "%s\n" + "The error returned by SDL is:\n" + "%s\n"), buffer_file, SDL_GetError ()); + SDL_Quit (); + exit (1); + }*/ + } + + if (TTF_Init () < 0) { + fprintf (stderr, + _("Error: Can't initialize the SDL TTF library\n" + "%s\n"), TTF_GetError ()); + SDL_Quit (); + exit (1); + } + + // TODO: Favor de manejar correctamente el bind_textdomain_codeset + //bind_textdomain_codeset (PACKAGE, "UTF-8"); + + /* Generador de números aleatorios */ + srand (SDL_GetTicks ()); +} + diff --git a/src/coffee_bag.rc b/src/coffee_bag.rc new file mode 100644 index 0000000..c43d36f --- /dev/null +++ b/src/coffee_bag.rc @@ -0,0 +1 @@ +coffee_bag ICON "./../data/coffee_bag.ico" diff --git a/src/gettext.h b/src/gettext.h new file mode 100644 index 0000000..841b072 --- /dev/null +++ b/src/gettext.h @@ -0,0 +1,292 @@ +/* Convenience header for conditional use of GNU . + Copyright (C) 1995-1998, 2000-2002, 2004-2006, 2009-2016 Free Software + Foundation, Inc. + + 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 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 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 . */ + +#ifndef _LIBGETTEXT_H +#define _LIBGETTEXT_H 1 + +/* NLS can be disabled through the configure --disable-nls option. */ +#if ENABLE_NLS + +/* Get declarations of GNU message catalog functions. */ +# include + +/* You can set the DEFAULT_TEXT_DOMAIN macro to specify the domain used by + the gettext() and ngettext() macros. This is an alternative to calling + textdomain(), and is useful for libraries. */ +# ifdef DEFAULT_TEXT_DOMAIN +# undef gettext +# define gettext(Msgid) \ + dgettext (DEFAULT_TEXT_DOMAIN, Msgid) +# undef ngettext +# define ngettext(Msgid1, Msgid2, N) \ + dngettext (DEFAULT_TEXT_DOMAIN, Msgid1, Msgid2, N) +# endif + +#else + +/* Solaris /usr/include/locale.h includes /usr/include/libintl.h, which + chokes if dcgettext is defined as a macro. So include it now, to make + later inclusions of a NOP. We don't include + as well because people using "gettext.h" will not include , + and also including would fail on SunOS 4, whereas + is OK. */ +#if defined(__sun) +# include +#endif + +/* Many header files from the libstdc++ coming with g++ 3.3 or newer include + , which chokes if dcgettext is defined as a macro. So include + it now, to make later inclusions of a NOP. */ +#if defined(__cplusplus) && defined(__GNUG__) && (__GNUC__ >= 3) +# include +# if (__GLIBC__ >= 2 && !defined __UCLIBC__) || _GLIBCXX_HAVE_LIBINTL_H +# include +# endif +#endif + +/* Disabled NLS. + The casts to 'const char *' serve the purpose of producing warnings + for invalid uses of the value returned from these functions. + On pre-ANSI systems without 'const', the config.h file is supposed to + contain "#define const". */ +# undef gettext +# define gettext(Msgid) ((const char *) (Msgid)) +# undef dgettext +# define dgettext(Domainname, Msgid) ((void) (Domainname), gettext (Msgid)) +# undef dcgettext +# define dcgettext(Domainname, Msgid, Category) \ + ((void) (Category), dgettext (Domainname, Msgid)) +# undef ngettext +# define ngettext(Msgid1, Msgid2, N) \ + ((N) == 1 \ + ? ((void) (Msgid2), (const char *) (Msgid1)) \ + : ((void) (Msgid1), (const char *) (Msgid2))) +# undef dngettext +# define dngettext(Domainname, Msgid1, Msgid2, N) \ + ((void) (Domainname), ngettext (Msgid1, Msgid2, N)) +# undef dcngettext +# define dcngettext(Domainname, Msgid1, Msgid2, N, Category) \ + ((void) (Category), dngettext (Domainname, Msgid1, Msgid2, N)) +# undef textdomain +# define textdomain(Domainname) ((const char *) (Domainname)) +# undef bindtextdomain +# define bindtextdomain(Domainname, Dirname) \ + ((void) (Domainname), (const char *) (Dirname)) +# undef bind_textdomain_codeset +# define bind_textdomain_codeset(Domainname, Codeset) \ + ((void) (Domainname), (const char *) (Codeset)) + +#endif + +/* Prefer gnulib's setlocale override over libintl's setlocale override. */ +#ifdef GNULIB_defined_setlocale +# undef setlocale +# define setlocale rpl_setlocale +#endif + +/* A pseudo function call that serves as a marker for the automated + extraction of messages, but does not call gettext(). The run-time + translation is done at a different place in the code. + The argument, String, should be a literal string. Concatenated strings + and other string expressions won't work. + The macro's expansion is not parenthesized, so that it is suitable as + initializer for static 'char[]' or 'const char[]' variables. */ +#define gettext_noop(String) String + +/* The separator between msgctxt and msgid in a .mo file. */ +#define GETTEXT_CONTEXT_GLUE "\004" + +/* Pseudo function calls, taking a MSGCTXT and a MSGID instead of just a + MSGID. MSGCTXT and MSGID must be string literals. MSGCTXT should be + short and rarely need to change. + The letter 'p' stands for 'particular' or 'special'. */ +#ifdef DEFAULT_TEXT_DOMAIN +# define pgettext(Msgctxt, Msgid) \ + pgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) +#else +# define pgettext(Msgctxt, Msgid) \ + pgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) +#endif +#define dpgettext(Domainname, Msgctxt, Msgid) \ + pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, LC_MESSAGES) +#define dcpgettext(Domainname, Msgctxt, Msgid, Category) \ + pgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, Category) +#ifdef DEFAULT_TEXT_DOMAIN +# define npgettext(Msgctxt, Msgid, MsgidPlural, N) \ + npgettext_aux (DEFAULT_TEXT_DOMAIN, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) +#else +# define npgettext(Msgctxt, Msgid, MsgidPlural, N) \ + npgettext_aux (NULL, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) +#endif +#define dnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ + npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, LC_MESSAGES) +#define dcnpgettext(Domainname, Msgctxt, Msgid, MsgidPlural, N, Category) \ + npgettext_aux (Domainname, Msgctxt GETTEXT_CONTEXT_GLUE Msgid, Msgid, MsgidPlural, N, Category) + +#ifdef __GNUC__ +__inline +#else +#ifdef __cplusplus +inline +#endif +#endif +static const char * +pgettext_aux (const char *domain, + const char *msg_ctxt_id, const char *msgid, + int category) +{ + const char *translation = dcgettext (domain, msg_ctxt_id, category); + if (translation == msg_ctxt_id) + return msgid; + else + return translation; +} + +#ifdef __GNUC__ +__inline +#else +#ifdef __cplusplus +inline +#endif +#endif +static const char * +npgettext_aux (const char *domain, + const char *msg_ctxt_id, const char *msgid, + const char *msgid_plural, unsigned long int n, + int category) +{ + const char *translation = + dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); + if (translation == msg_ctxt_id || translation == msgid_plural) + return (n == 1 ? msgid : msgid_plural); + else + return translation; +} + +/* The same thing extended for non-constant arguments. Here MSGCTXT and MSGID + can be arbitrary expressions. But for string literals these macros are + less efficient than those above. */ + +#include + +#if (((__GNUC__ >= 3 || __GNUG__ >= 2) && !defined __STRICT_ANSI__) \ + /* || __STDC_VERSION__ >= 199901L */ ) +# define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 1 +#else +# define _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS 0 +#endif + +#if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS +#include +#endif + +#define pgettext_expr(Msgctxt, Msgid) \ + dcpgettext_expr (NULL, Msgctxt, Msgid, LC_MESSAGES) +#define dpgettext_expr(Domainname, Msgctxt, Msgid) \ + dcpgettext_expr (Domainname, Msgctxt, Msgid, LC_MESSAGES) + +#ifdef __GNUC__ +__inline +#else +#ifdef __cplusplus +inline +#endif +#endif +static const char * +dcpgettext_expr (const char *domain, + const char *msgctxt, const char *msgid, + int category) +{ + size_t msgctxt_len = strlen (msgctxt) + 1; + size_t msgid_len = strlen (msgid) + 1; + const char *translation; +#if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS + char msg_ctxt_id[msgctxt_len + msgid_len]; +#else + char buf[1024]; + char *msg_ctxt_id = + (msgctxt_len + msgid_len <= sizeof (buf) + ? buf + : (char *) malloc (msgctxt_len + msgid_len)); + if (msg_ctxt_id != NULL) +#endif + { + int found_translation; + memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); + msg_ctxt_id[msgctxt_len - 1] = '\004'; + memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); + translation = dcgettext (domain, msg_ctxt_id, category); + found_translation = (translation != msg_ctxt_id); +#if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS + if (msg_ctxt_id != buf) + free (msg_ctxt_id); +#endif + if (found_translation) + return translation; + } + return msgid; +} + +#define npgettext_expr(Msgctxt, Msgid, MsgidPlural, N) \ + dcnpgettext_expr (NULL, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) +#define dnpgettext_expr(Domainname, Msgctxt, Msgid, MsgidPlural, N) \ + dcnpgettext_expr (Domainname, Msgctxt, Msgid, MsgidPlural, N, LC_MESSAGES) + +#ifdef __GNUC__ +__inline +#else +#ifdef __cplusplus +inline +#endif +#endif +static const char * +dcnpgettext_expr (const char *domain, + const char *msgctxt, const char *msgid, + const char *msgid_plural, unsigned long int n, + int category) +{ + size_t msgctxt_len = strlen (msgctxt) + 1; + size_t msgid_len = strlen (msgid) + 1; + const char *translation; +#if _LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS + char msg_ctxt_id[msgctxt_len + msgid_len]; +#else + char buf[1024]; + char *msg_ctxt_id = + (msgctxt_len + msgid_len <= sizeof (buf) + ? buf + : (char *) malloc (msgctxt_len + msgid_len)); + if (msg_ctxt_id != NULL) +#endif + { + int found_translation; + memcpy (msg_ctxt_id, msgctxt, msgctxt_len - 1); + msg_ctxt_id[msgctxt_len - 1] = '\004'; + memcpy (msg_ctxt_id + msgctxt_len, msgid, msgid_len); + translation = dcngettext (domain, msg_ctxt_id, msgid_plural, n, category); + found_translation = !(translation == msg_ctxt_id || translation == msgid_plural); +#if !_LIBGETTEXT_HAVE_VARIABLE_SIZE_ARRAYS + if (msg_ctxt_id != buf) + free (msg_ctxt_id); +#endif + if (found_translation) + return translation; + } + return (n == 1 ? msgid : msgid_plural); +} + +#endif /* _LIBGETTEXT_H */ diff --git a/src/path.c b/src/path.c new file mode 100644 index 0000000..5b29299 --- /dev/null +++ b/src/path.c @@ -0,0 +1,305 @@ +/* + * path.c + * This file is part of Paddle Puffle + * + * Copyright (C) 2015 - Félix Arreola Rodríguez + * + * Paddle Puffle 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 + * (at your option) any later version. + * + * Paddle Puffle 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 Paddle Puffle. If not, see . + */ + +#include +#include +#include + +#include +#include +#include + +#ifdef MACOSX +// for search paths +#include "NSSystemDirectories.h" +#include +#include +#include +#endif + +#ifdef __MINGW32__ +#include +#include +#endif + +#include "path.h" + +static char *systemdata_path; +static char *l10n_path; +static char *userdata_path; + +//#ifdef __MINGW32__ +//const char *PathSeparator = "\\"; // for path assembly +//#else +//const char *PathSeparator = "/"; // for path assembly +//#endif +//const char *PathSeparators = "/\\"; // for path splits + +#ifndef FALSE +#define FALSE 0 +#endif + +#ifndef TRUE +#define TRUE !FALSE +#endif + +#ifndef MAX_PATH +# define MAX_PATH 2048 +#endif + +int folder_exists (const char *fname) { + struct stat s; + return (stat(fname, &s) == 0 && S_ISDIR(s.st_mode)); +} + +int file_exists (const char *fname) { + struct stat s; + return (stat(fname, &s) == 0 && S_ISREG(s.st_mode)); +} + +static int split_path (const char *path, char * dir_part, char * filename_part) { + int lslash, lnslash; + int g; + char *dup; + + lslash = -1; + for (g = strlen (path) - 1; g >= 0; g--) { + if (path[g] == '/' || path[g] == '\\') { + lslash = g; + break; + } + } + + if ( + #ifdef __MINGW32__ + lslash == 2 && path[1] == ':' && (path[0] >= 'A' && path[0] <= 'Z') + #else + lslash == 0 + #endif + ) { + return FALSE; // we cannot split the root directory apart + } + + if (lslash == strlen (path) - 1) { + // trailing slash + dup = strdup (path); + dup[lslash] = 0; + g = split_path (dup, dir_part, filename_part); + + free (dup); + return g; + } + + if (lslash == -1) { + return FALSE; + } + + for (g = lslash; g >= 0; g--) { + if (path[g] != '/' && path[g] != '\\') { + lnslash = g; + break; + } + } + + if (dir_part) { + strncpy (dir_part, path, lnslash + 1); + dir_part[lnslash + 1] = 0; + } + + if (filename_part) { + strcpy (filename_part, &path[lslash + 1]); + } + + return TRUE; +} + +int folder_create (const char *fname) { + char *parent_folder; + char *sub_folder; + int ok = TRUE; + + if (folder_exists (fname)) return TRUE; + + parent_folder = strdup (fname); + sub_folder = strdup (fname); + + if (split_path (fname, parent_folder, sub_folder)) { + if (!folder_exists (parent_folder)) { + ok = folder_create(parent_folder); + } + } + + if (ok) { + #ifdef __MINGW32__ + ok = mkdir(fname) == 0; + #else + ok = mkdir(fname, 0775) == 0; + #endif + } + + free (parent_folder); + free (sub_folder); + return ok; +} + +#ifdef __MINGW32__ +// should be ecl_system_windows.cc ? +static void ApplicationDataPath (char * buffer) { + typedef HRESULT (WINAPI *SHGETFOLDERPATH)( HWND, int, HANDLE, DWORD, LPTSTR ); + # define CSIDL_FLAG_CREATE 0x8000 + # define CSIDL_APPDATA 0x1A + # define SHGFP_TYPE_CURRENT 0 + + HINSTANCE shfolder_dll; + SHGETFOLDERPATH SHGetFolderPath ; + + /* load the shfolder.dll to retreive SHGetFolderPath */ + if ((shfolder_dll = LoadLibrary("shfolder.dll")) != NULL) { + SHGetFolderPath = (SHGETFOLDERPATH)GetProcAddress(shfolder_dll, "SHGetFolderPathA"); + if (SHGetFolderPath != NULL) { + TCHAR szPath[MAX_PATH] = ""; + + /* get the "Application Data" folder for the current user */ + if (S_OK == SHGetFolderPath (NULL, CSIDL_APPDATA | CSIDL_FLAG_CREATE, NULL, SHGFP_TYPE_CURRENT, szPath)) { + strcpy (buffer, szPath); + } + } else { + buffer[0] = '\0'; + } + FreeLibrary (shfolder_dll); + } else { + buffer[0] = '\0'; + } +} +#endif + +void initSystemPaths (const char *argv_0) { + char *progCallPath; + int progdirexists; + char *progdir; + char *pref_path; +#ifdef __MINGW32__ + char winappdata_path[MAX_PATH]; + + ApplicationDataPath (winappdata_path); +#endif + + progCallPath = strdup (argv_0); +#if MACOSX + CFBundleRef mainBundle = CFBundleGetMainBundle(); + CFURLRef cfurlmain = CFBundleCopyExecutableURL(mainBundle); + CFStringRef cffileStr = CFURLCopyFileSystemPath(cfurlmain, kCFURLPOSIXPathStyle); + CFIndex cfmax = CFStringGetMaximumSizeOfFileSystemRepresentation(cffileStr); + char *localbuffer; + localbuffer = (char *) malloc (sizeof (char) * cfmax); + if (CFStringGetFileSystemRepresentation(cffileStr, localbuffer, cfmax)) { + free (progCallPath); + progCallPath = localbuffer; // error skips this and defaults to argv[0] which works for most purposes + } + CFRelease(mainBundle); + CFRelease(cfurlmain); + CFRelease(cffileStr); +#endif + progdir = strdup (progCallPath); + progdirexists = split_path (progCallPath, progdir, NULL); + + /* Primero conseguir el system path */ +#ifdef __MINGW32__ + if (!progdirexists) { + systemdata_path = "./data/"; + } else { + systemdata_path = (char *) malloc (strlen (progdir) + 50); + sprintf (systemdata_path, "%s/data/", progdir); + } +#elif MACOSX + // Mac OS X applications are self-contained bundles, + // i.e., directories like "Enigma.app". Resources are + // placed in those bundles under "Enigma.app/Contents/Resources", + // the main executable would be "Enigma.app/Contents/MacOS/enigma". + // Here, we get the executable name, clip off the last bit, chdir into it, + // then chdir to ../Resources. The original SDL implementation chdirs to + // "../../..", i.e. the directory the bundle is placed in. This breaks + // the self-containedness. + systemdata_path = (char *) malloc (sizeof (char) * (strlen (progdir) + 30)); + sprintf (systemdata_path, "%s/../Resources/data/", progdir); +#else + /* Para Linux */ + systemdata_path = GAMEDATA_DIR; +#endif + + /* Ahora, conseguir el L10n */ + l10n_path = LOCALEDIR; +#ifdef __MINGW32__ + if (progdirexists) { + l10n_path = (char *) malloc (strlen (progdir) + strlen (l10n_path) + 10); + if (strncmp (LOCALEDIR, "/", 1) == 0 || strncmp (LOCALEDIR, "\\", 1) == 0) { + /* No necesita slash final */ + sprintf (l10n_path, "%s%s", progdir, LOCALEDIR); + } else { + sprintf (l10n_path, "%s/%s", progdir, LOCALEDIR); + } + } +#elif MACOSX + l10n_path = (char *) malloc (sizeof (char) * (strlen (progdir) + 30)); + sprintf (l10n_path, "%s/../Resources/locale", progdir); +#endif + + /* Ahora conseguir el user path */ + if (getenv ("HOME") != 0) { + pref_path = getenv ("HOME"); + + if (!folder_exists (pref_path)) { + if (!folder_create (pref_path)) { + fprintf (stderr, "Error Home directory does not exist.\n"); + userdata_path = NULL; + } + } +#ifdef MACOSX + userdata_path = (char *) malloc (strlen (pref_path) + 40); + sprintf (userdata_path, "%s/Library/Application Support", pref_path); +#else + userdata_path = strdup (pref_path); +#endif +#ifdef __MINGW32__ + } else if (winappdata_path[0] != 0) { + userdata_path = strdup (winappdata_path); +#endif + } else { + userdata_path = NULL; + } + + /* Liberar las cadenas temporales */ + free (progdir); + free (progCallPath); +} + +char *get_systemdata_path (void) { + return systemdata_path; +} + +char *get_l10n_path (void) { + return l10n_path; +} + +char *get_userdata_path (void) { + return userdata_path; +} + + diff --git a/src/path.h b/src/path.h new file mode 100644 index 0000000..2276ec8 --- /dev/null +++ b/src/path.h @@ -0,0 +1,35 @@ +/* + * path.h + * This file is part of Paddle Puffle + * + * Copyright (C) 2015 - Félix Arreola Rodríguez + * + * Paddle Puffle 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 + * (at your option) any later version. + * + * Paddle Puffle 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 Paddle Puffle. If not, see . + */ + +#ifndef __PATH_H__ +#define __PATH_H__ + +char *get_systemdata_path (void); +char *get_l10n_path (void); +char *get_userdata_path (void); + +void initSystemPaths (const char *argv_0); +int folder_exists (const char *fname); +int file_exists (const char *fname); +int folder_create (const char *fname); + +#endif /* __PATH_H__ */ + +