diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-03-10 19:23:26 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2021-03-10 19:23:26 +0000 |
commit | e8afafe5edaa3ff36237896315375aadcf102d6c (patch) | |
tree | 1780357725c52a783f53c79628bc5dab6527dbab | |
parent | Initial commit. (diff) | |
download | gedit-upstream.tar.xz gedit-upstream.zip |
Adding upstream version 3.30.2.upstream/3.30.2upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
1898 files changed, 884309 insertions, 0 deletions
diff --git a/ABOUT-NLS b/ABOUT-NLS new file mode 100644 index 0000000..4f50fb5 --- /dev/null +++ b/ABOUT-NLS @@ -0,0 +1,1327 @@ +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. + + When reporting bugs in the `intl/' directory or bugs which may be +related to internationalization, you should tell about the version of +`gettext' which is used. The information can be found in the +`intl/VERSION' file, in internationalized packages. + +1.1 Quick configuration advice +============================== + +If you want to exploit the full power of internationalization, you +should configure it using + + ./configure --with-included-gettext + +to force usage of internationalizing routines provided within this +package, despite the existence of internationalizing capabilities in the +operating system where this package is being installed. So far, only +the `gettext' implementation in the GNU C library version 2 provides as +many features (such as locale alias, message inheritance, automatic +charset conversion or plural form handling) as the implementation here. +It is also not possible to offer this additional functionality on top +of a `catgets' implementation. Future versions of GNU `gettext' will +very likely convey even more functionality. So it might be a good idea +to change to GNU `gettext' as soon as possible. + + So you need _not_ provide this option if you are using GNU libc 2 or +you have installed a recent copy of the GNU gettext package with the +included `libintl'. + +1.2 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. If not, the included GNU +`gettext' library will be used. This library is wholly contained +within this package, usually in the `intl/' subdirectory, so prior +installation of the GNU `gettext' package is _not_ required. +Installers may use special options at configuration time for changing +the default behaviour. The commands: + + ./configure --with-included-gettext + ./configure --disable-nls + +will, respectively, bypass any pre-existing `gettext' to use the +internationalizing routines provided within this package, or else, +_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.a' file and +will decide to use this. This might not be desirable. You should use +the more recent version of the GNU `gettext' library. I.e. if the file +`intl/VERSION' shows that the library which comes with this package is +more recent, you should use + + ./configure --with-included-gettext + +to prevent auto-detection. + + The configuration process will not test for the `catgets' function +and therefore it will not be used. The reason is that even an +emulation of `gettext' on top of `catgets' could not provide all the +extensions of the GNU `gettext' library. + + 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.3 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.4 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.5 Available Packages +====================== + +Languages are not equally supported in all packages. The following +matrix shows the current state of internationalization, as of May 2010. +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 ar as ast az be be@latin bg bn_IN bs ca crh + +---------------------------------------------------+ + a2ps | [] [] | + aegis | | + ant-phone | | + anubis | | + aspell | [] [] | + bash | | + bfd | | + bibshelf | [] | + binutils | | + bison | | + bison-runtime | [] | + bluez-pin | [] [] | + bombono-dvd | | + buzztard | | + cflow | | + clisp | | + coreutils | [] [] | + cpio | | + cppi | | + cpplib | [] | + cryptsetup | | + dfarc | | + dialog | [] [] | + dico | | + diffutils | [] | + dink | | + doodle | | + e2fsprogs | [] | + enscript | [] | + exif | | + fetchmail | [] | + findutils | [] | + flex | [] | + freedink | | + gas | | + gawk | [] [] | + gcal | [] | + gcc | | + gettext-examples | [] [] [] [] | + gettext-runtime | [] [] [] | + gettext-tools | [] [] | + gip | [] | + gjay | | + gliv | [] | + glunarclock | [] [] | + gnubiff | | + gnucash | [] | + gnuedu | | + gnulib | | + gnunet | | + gnunet-gtk | | + gnutls | | + gold | | + gpe-aerial | | + gpe-beam | | + gpe-bluetooth | | + gpe-calendar | | + gpe-clock | [] | + gpe-conf | | + gpe-contacts | | + gpe-edit | | + gpe-filemanager | | + gpe-go | | + gpe-login | | + gpe-ownerinfo | [] | + gpe-package | | + gpe-sketchbook | | + gpe-su | [] | + gpe-taskmanager | [] | + gpe-timesheet | [] | + gpe-today | [] | + gpe-todo | | + gphoto2 | | + gprof | [] | + gpsdrive | | + gramadoir | | + grep | | + grub | [] [] | + gsasl | | + gss | | + gst-plugins-bad | [] | + gst-plugins-base | [] | + gst-plugins-good | [] | + gst-plugins-ugly | [] | + gstreamer | [] [] [] | + gtick | | + gtkam | [] | + gtkorphan | [] | + gtkspell | [] [] [] | + gutenprint | | + hello | [] | + help2man | | + hylafax | | + idutils | | + indent | [] [] | + iso_15924 | | + iso_3166 | [] [] [] [] [] [] [] [] | + iso_3166_2 | | + iso_4217 | | + iso_639 | [] [] [] [] [] | + iso_639_3 | [] | + jwhois | | + kbd | | + keytouch | [] | + keytouch-editor | | + keytouch-keyboa... | [] | + klavaro | [] | + latrine | | + ld | [] | + leafpad | [] [] | + libc | [] [] | + libexif | () | + libextractor | | + libgnutls | | + libgpewidget | | + libgpg-error | | + libgphoto2 | | + libgphoto2_port | | + libgsasl | | + libiconv | [] | + libidn | | + lifelines | | + liferea | [] [] | + lilypond | | + linkdr | [] | + lordsawar | | + lprng | | + lynx | [] | + m4 | | + mailfromd | | + mailutils | | + make | | + man-db | | + man-db-manpages | | + minicom | | + mkisofs | | + myserver | | + nano | [] [] | + opcodes | | + parted | | + pies | | + popt | | + psmisc | | + pspp | [] | + pwdutils | | + radius | [] | + recode | [] [] | + rosegarden | | + rpm | | + rush | | + sarg | | + screem | | + scrollkeeper | [] [] [] | + sed | [] [] | + sharutils | [] [] | + shishi | | + skencil | | + solfege | | + solfege-manual | | + soundtracker | | + sp | | + sysstat | | + tar | [] | + texinfo | | + tin | | + unicode-han-tra... | | + unicode-transla... | | + util-linux-ng | [] | + vice | | + vmm | | + vorbis-tools | | + wastesedge | | + wdiff | | + wget | [] [] | + wyslij-po | | + xchat | [] [] [] [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] | + +---------------------------------------------------+ + af am ar as ast az be be@latin bg bn_IN bs ca crh + 6 0 2 3 19 1 11 3 28 3 1 38 5 + + cs da de el en en_GB en_ZA eo es et eu fa fi + +-------------------------------------------------+ + a2ps | [] [] [] [] [] [] [] [] | + aegis | [] [] [] | + ant-phone | [] () | + anubis | [] [] [] | + aspell | [] [] [] [] [] | + bash | [] [] [] [] | + bfd | [] [] | + bibshelf | [] [] [] [] | + binutils | [] [] | + bison | [] [] [] | + bison-runtime | [] [] [] [] [] | + bluez-pin | [] [] [] [] [] [] [] | + bombono-dvd | [] [] | + buzztard | [] [] [] | + cflow | [] [] [] | + clisp | [] [] [] [] | + coreutils | [] [] [] [] | + cpio | [] | + cppi | [] | + cpplib | [] [] [] | + cryptsetup | [] | + dfarc | [] [] [] [] | + dialog | [] [] [] [] [] | + dico | | + diffutils | [] [] [] [] [] [] [] | + dink | [] [] [] | + doodle | [] | + e2fsprogs | [] [] [] | + enscript | [] [] [] | + exif | () [] [] [] | + fetchmail | [] [] () [] [] [] | + findutils | [] [] [] [] | + flex | [] [] [] | + freedink | [] [] [] [] | + gas | [] | + gawk | [] [] [] | + gcal | [] | + gcc | [] [] | + gettext-examples | [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] | + gettext-tools | [] [] [] | + gip | [] [] [] [] [] | + gjay | [] [] | + gliv | [] [] [] [] | + glunarclock | [] [] [] | + gnubiff | () | + gnucash | [] () () () () () | + gnuedu | [] [] | + gnulib | [] [] [] | + gnunet | | + gnunet-gtk | [] | + gnutls | [] [] | + gold | [] [] | + gpe-aerial | [] [] [] [] [] | + gpe-beam | [] [] [] [] [] | + gpe-bluetooth | [] [] [] | + gpe-calendar | [] [] | + gpe-clock | [] [] [] [] [] | + gpe-conf | [] [] [] [] | + gpe-contacts | [] [] [] [] | + gpe-edit | [] [] [] | + gpe-filemanager | [] [] [] [] | + gpe-go | [] [] [] [] [] | + gpe-login | [] [] [] | + gpe-ownerinfo | [] [] [] [] [] | + gpe-package | [] [] [] [] | + gpe-sketchbook | [] [] [] [] [] | + gpe-su | [] [] [] [] [] | + gpe-taskmanager | [] [] [] [] [] | + gpe-timesheet | [] [] [] [] [] | + gpe-today | [] [] [] [] [] | + gpe-todo | [] [] [] [] | + gphoto2 | [] [] () [] [] [] [] | + gprof | [] [] [] [] | + gpsdrive | [] [] [] | + gramadoir | [] [] [] | + grep | [] [] | + grub | [] [] [] | + gsasl | [] [] | + gss | [] | + gst-plugins-bad | [] [] [] [] [] [] | + gst-plugins-base | [] [] [] [] [] [] | + gst-plugins-good | [] [] [] [] [] [] [] | + gst-plugins-ugly | [] [] [] [] [] [] [] | + gstreamer | [] [] [] [] [] [] | + gtick | [] () [] [] | + gtkam | [] [] () [] [] | + gtkorphan | [] [] [] [] | + gtkspell | [] [] [] [] [] [] [] [] | + gutenprint | [] [] [] [] | + hello | [] [] [] [] [] | + help2man | [] [] | + hylafax | [] [] | + idutils | [] [] [] | + indent | [] [] [] [] [] [] [] [] | + iso_15924 | [] () [] [] [] | + iso_3166 | [] [] [] () [] [] [] () [] | + iso_3166_2 | () | + iso_4217 | [] [] [] () [] [] [] | + iso_639 | [] [] [] () [] [] [] | + iso_639_3 | | + jwhois | [] [] | + kbd | [] [] [] [] [] | + keytouch | [] [] [] | + keytouch-editor | [] [] [] | + keytouch-keyboa... | [] [] | + klavaro | [] [] [] [] | + latrine | [] () [] | + ld | [] [] [] | + leafpad | [] [] [] [] [] [] [] | + libc | [] [] [] [] [] | + libexif | [] [] () | + libextractor | | + libgnutls | [] | + libgpewidget | [] [] [] | + libgpg-error | [] [] | + libgphoto2 | [] () | + libgphoto2_port | [] () [] | + libgsasl | [] | + libiconv | [] [] [] [] [] [] | + libidn | [] [] [] [] | + lifelines | [] () | + liferea | [] [] [] [] [] | + lilypond | [] [] [] [] | + linkdr | [] [] [] [] | + lordsawar | [] | + lprng | | + lynx | [] [] [] [] | + m4 | [] [] [] [] [] | + mailfromd | | + mailutils | [] | + make | [] [] [] [] | + man-db | | + man-db-manpages | | + minicom | [] [] [] [] [] | + mkisofs | [] | + myserver | | + nano | [] [] [] [] | + opcodes | [] [] [] | + parted | [] [] | + pies | | + popt | [] [] [] [] [] [] | + psmisc | [] [] [] [] | + pspp | [] | + pwdutils | [] | + radius | [] | + recode | [] [] [] [] [] [] [] | + rosegarden | () () () () | + rpm | [] [] [] | + rush | | + sarg | | + screem | | + scrollkeeper | [] [] [] [] [] [] | + sed | [] [] [] [] [] [] [] | + sharutils | [] [] [] [] [] | + shishi | | + skencil | [] () [] | + solfege | [] [] [] [] | + solfege-manual | [] [] | + soundtracker | [] [] [] | + sp | [] | + sysstat | [] [] [] [] | + tar | [] [] [] [] [] | + texinfo | [] [] [] | + tin | [] [] | + unicode-han-tra... | | + unicode-transla... | | + util-linux-ng | [] [] [] [] [] | + vice | () () | + vmm | [] | + vorbis-tools | [] [] | + wastesedge | [] | + wdiff | [] [] [] | + wget | [] [] [] [] | + wyslij-po | [] | + xchat | [] [] [] [] [] [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] [] [] [] | + +-------------------------------------------------+ + cs da de el en en_GB en_ZA eo es et eu fa fi + 64 105 117 18 1 8 0 28 89 18 19 0 104 + + fr ga gl gu he hi hr hu hy id is it ja ka kn + +------------------------------------------------+ + a2ps | [] [] [] | + aegis | [] [] | + ant-phone | [] [] | + anubis | [] [] [] | + aspell | [] [] [] [] | + bash | [] [] [] | + bfd | [] [] | + bibshelf | [] [] [] [] | + binutils | [] [] | + bison | [] [] [] | + bison-runtime | [] [] [] [] [] | + bluez-pin | [] [] [] [] [] [] [] | + bombono-dvd | | + buzztard | [] | + cflow | [] [] | + clisp | [] | + coreutils | [] [] [] [] [] | + cpio | [] [] [] | + cppi | [] | + cpplib | [] [] | + cryptsetup | [] [] [] | + dfarc | [] [] | + dialog | [] [] [] [] [] [] [] | + dico | | + diffutils | [] [] [] [] [] [] [] [] | + dink | [] | + doodle | [] [] | + e2fsprogs | [] [] | + enscript | [] [] [] [] | + exif | [] [] [] [] [] | + fetchmail | [] [] [] [] | + findutils | [] [] [] [] [] | + flex | [] [] | + freedink | [] [] | + gas | [] [] | + gawk | [] [] [] [] () [] | + gcal | [] | + gcc | [] | + gettext-examples | [] [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] | + gettext-tools | [] [] [] [] | + gip | [] [] [] [] [] | + gjay | | + gliv | () | + glunarclock | [] [] [] | + gnubiff | () [] () | + gnucash | () () () () [] | + gnuedu | [] [] | + gnulib | [] [] [] [] [] | + gnunet | | + gnunet-gtk | [] | + gnutls | [] [] | + gold | [] | + gpe-aerial | [] [] | + gpe-beam | [] [] [] | + gpe-bluetooth | [] [] [] | + gpe-calendar | [] | + gpe-clock | [] [] [] [] | + gpe-conf | [] [] [] | + gpe-contacts | [] [] [] | + gpe-edit | [] [] | + gpe-filemanager | [] [] [] | + gpe-go | [] [] [] [] | + gpe-login | [] [] | + gpe-ownerinfo | [] [] [] [] | + gpe-package | [] [] | + gpe-sketchbook | [] [] [] | + gpe-su | [] [] [] [] [] | + gpe-taskmanager | [] [] [] [] | + gpe-timesheet | [] [] [] [] | + gpe-today | [] [] [] [] [] [] | + gpe-todo | [] [] | + gphoto2 | [] [] [] [] [] | + gprof | [] [] [] | + gpsdrive | [] [] [] | + gramadoir | [] [] [] | + grep | [] | + grub | [] [] [] | + gsasl | [] [] [] [] | + gss | [] [] [] [] | + gst-plugins-bad | [] [] [] [] | + gst-plugins-base | [] [] [] [] [] | + gst-plugins-good | [] [] [] [] [] | + gst-plugins-ugly | [] [] [] [] [] | + gstreamer | [] [] [] [] | + gtick | [] [] [] [] | + gtkam | [] [] [] [] [] | + gtkorphan | [] [] [] | + gtkspell | [] [] [] [] [] [] [] [] | + gutenprint | [] [] [] | + hello | [] [] | + help2man | [] | + hylafax | [] | + idutils | [] [] [] [] [] | + indent | [] [] [] [] [] [] [] | + iso_15924 | () [] [] | + iso_3166 | () [] [] [] [] [] [] [] [] [] [] | + iso_3166_2 | () [] [] [] | + iso_4217 | () [] [] [] [] | + iso_639 | () [] [] [] [] [] [] [] | + iso_639_3 | () [] [] | + jwhois | [] [] [] [] | + kbd | [] [] | + keytouch | [] [] [] [] [] | + keytouch-editor | [] [] [] [] | + keytouch-keyboa... | [] [] [] [] | + klavaro | [] [] | + latrine | [] [] | + ld | [] [] [] | + leafpad | [] [] [] [] [] [] () | + libc | [] [] [] [] | + libexif | | + libextractor | | + libgnutls | [] [] | + libgpewidget | [] [] [] | + libgpg-error | [] [] | + libgphoto2 | [] [] [] | + libgphoto2_port | [] [] [] | + libgsasl | [] [] [] [] | + libiconv | [] [] [] [] [] | + libidn | [] [] [] | + lifelines | () | + liferea | [] [] [] [] | + lilypond | [] | + linkdr | [] [] [] [] | + lordsawar | | + lprng | [] | + lynx | [] [] [] [] [] | + m4 | [] [] [] [] [] | + mailfromd | | + mailutils | [] [] | + make | [] [] [] [] [] [] [] [] | + man-db | [] [] | + man-db-manpages | [] | + minicom | [] [] [] [] | + mkisofs | [] [] [] | + myserver | | + nano | [] [] [] [] [] | + opcodes | [] [] [] | + parted | [] [] [] [] | + pies | | + popt | [] [] [] [] [] [] [] [] | + psmisc | [] [] | + pspp | | + pwdutils | [] [] | + radius | [] [] | + recode | [] [] [] [] [] [] [] | + rosegarden | () () () () | + rpm | [] [] | + rush | | + sarg | [] | + screem | [] [] | + scrollkeeper | [] [] [] | + sed | [] [] [] [] [] [] [] | + sharutils | [] [] [] [] [] [] | + shishi | [] | + skencil | [] | + solfege | [] [] [] | + solfege-manual | [] [] | + soundtracker | [] [] | + sp | [] () | + sysstat | [] [] [] [] | + tar | [] [] [] [] [] [] | + texinfo | [] [] [] [] | + tin | [] | + unicode-han-tra... | | + unicode-transla... | [] [] | + util-linux-ng | [] [] [] [] [] | + vice | () () () | + vmm | [] | + vorbis-tools | [] | + wastesedge | () () | + wdiff | | + wget | [] [] [] [] [] [] [] | + wyslij-po | [] [] | + xchat | [] [] [] [] [] [] [] [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] [] | + +------------------------------------------------+ + fr ga gl gu he hi hr hu hy id is it ja ka kn + 121 53 20 4 8 2 5 53 2 120 5 83 66 0 4 + + ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne + +-----------------------------------------------+ + a2ps | [] | + aegis | | + ant-phone | | + anubis | [] [] | + aspell | [] | + bash | | + bfd | | + bibshelf | [] [] | + binutils | | + bison | [] | + bison-runtime | [] [] [] [] [] | + bluez-pin | [] [] [] [] [] | + bombono-dvd | | + buzztard | | + cflow | | + clisp | | + coreutils | [] | + cpio | | + cppi | | + cpplib | | + cryptsetup | | + dfarc | [] | + dialog | [] [] [] [] [] | + dico | | + diffutils | [] [] | + dink | | + doodle | | + e2fsprogs | | + enscript | | + exif | [] | + fetchmail | | + findutils | | + flex | | + freedink | [] | + gas | | + gawk | | + gcal | | + gcc | | + gettext-examples | [] [] [] [] | + gettext-runtime | [] | + gettext-tools | [] | + gip | [] [] | + gjay | | + gliv | | + glunarclock | [] | + gnubiff | | + gnucash | () () () () | + gnuedu | | + gnulib | | + gnunet | | + gnunet-gtk | | + gnutls | [] | + gold | | + gpe-aerial | [] | + gpe-beam | [] | + gpe-bluetooth | [] [] | + gpe-calendar | [] | + gpe-clock | [] [] [] [] [] | + gpe-conf | [] [] | + gpe-contacts | [] [] | + gpe-edit | [] | + gpe-filemanager | [] [] | + gpe-go | [] [] [] | + gpe-login | [] | + gpe-ownerinfo | [] [] | + gpe-package | [] [] | + gpe-sketchbook | [] [] | + gpe-su | [] [] [] [] [] [] | + gpe-taskmanager | [] [] [] [] [] [] | + gpe-timesheet | [] [] | + gpe-today | [] [] [] [] | + gpe-todo | [] [] | + gphoto2 | | + gprof | [] | + gpsdrive | | + gramadoir | | + grep | | + grub | | + gsasl | | + gss | | + gst-plugins-bad | [] [] | + gst-plugins-base | [] [] | + gst-plugins-good | [] [] | + gst-plugins-ugly | [] [] [] [] [] | + gstreamer | | + gtick | | + gtkam | [] | + gtkorphan | [] [] | + gtkspell | [] [] [] [] [] [] [] | + gutenprint | | + hello | [] [] [] | + help2man | | + hylafax | | + idutils | | + indent | | + iso_15924 | [] [] | + iso_3166 | [] [] () [] [] [] [] [] | + iso_3166_2 | | + iso_4217 | [] [] | + iso_639 | [] [] | + iso_639_3 | [] | + jwhois | [] | + kbd | | + keytouch | [] | + keytouch-editor | [] | + keytouch-keyboa... | [] | + klavaro | [] | + latrine | [] | + ld | | + leafpad | [] [] [] | + libc | [] | + libexif | | + libextractor | | + libgnutls | [] | + libgpewidget | [] [] | + libgpg-error | | + libgphoto2 | | + libgphoto2_port | | + libgsasl | | + libiconv | | + libidn | | + lifelines | | + liferea | | + lilypond | | + linkdr | | + lordsawar | | + lprng | | + lynx | | + m4 | | + mailfromd | | + mailutils | | + make | [] | + man-db | | + man-db-manpages | | + minicom | [] | + mkisofs | | + myserver | | + nano | [] [] | + opcodes | | + parted | | + pies | | + popt | [] [] [] | + psmisc | | + pspp | | + pwdutils | | + radius | | + recode | | + rosegarden | | + rpm | | + rush | | + sarg | | + screem | | + scrollkeeper | [] [] | + sed | | + sharutils | | + shishi | | + skencil | | + solfege | [] | + solfege-manual | | + soundtracker | | + sp | | + sysstat | [] | + tar | [] | + texinfo | [] | + tin | | + unicode-han-tra... | | + unicode-transla... | | + util-linux-ng | | + vice | | + vmm | | + vorbis-tools | | + wastesedge | | + wdiff | | + wget | [] | + wyslij-po | | + xchat | [] [] [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] | + +-----------------------------------------------+ + ko ku ky lg lt lv mk ml mn mr ms mt nb nds ne + 20 5 10 1 12 48 4 2 2 4 24 10 19 3 1 + + nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr + +---------------------------------------------------+ + a2ps | [] [] [] [] [] [] [] [] | + aegis | [] [] [] | + ant-phone | [] [] | + anubis | [] [] [] | + aspell | [] [] [] [] [] | + bash | [] [] | + bfd | [] | + bibshelf | [] [] | + binutils | [] [] | + bison | [] [] [] | + bison-runtime | [] [] [] [] [] [] [] | + bluez-pin | [] [] [] [] [] [] [] [] | + bombono-dvd | [] () | + buzztard | [] [] | + cflow | [] | + clisp | [] [] | + coreutils | [] [] [] [] [] [] | + cpio | [] [] [] | + cppi | [] | + cpplib | [] | + cryptsetup | [] | + dfarc | [] | + dialog | [] [] [] [] | + dico | [] | + diffutils | [] [] [] [] [] [] | + dink | () | + doodle | [] [] | + e2fsprogs | [] [] | + enscript | [] [] [] [] [] | + exif | [] [] [] () [] | + fetchmail | [] [] [] [] | + findutils | [] [] [] [] [] | + flex | [] [] [] [] [] | + freedink | [] [] | + gas | | + gawk | [] [] [] [] | + gcal | | + gcc | [] | + gettext-examples | [] [] [] [] [] [] [] [] | + gettext-runtime | [] [] [] [] [] [] [] [] [] | + gettext-tools | [] [] [] [] [] [] | + gip | [] [] [] [] [] | + gjay | | + gliv | [] [] [] [] [] [] | + glunarclock | [] [] [] [] [] | + gnubiff | [] () | + gnucash | [] () () () | + gnuedu | [] | + gnulib | [] [] [] [] | + gnunet | | + gnunet-gtk | | + gnutls | [] [] | + gold | | + gpe-aerial | [] [] [] [] [] [] [] | + gpe-beam | [] [] [] [] [] [] [] | + gpe-bluetooth | [] [] | + gpe-calendar | [] [] [] [] | + gpe-clock | [] [] [] [] [] [] [] [] | + gpe-conf | [] [] [] [] [] [] [] | + gpe-contacts | [] [] [] [] [] | + gpe-edit | [] [] [] | + gpe-filemanager | [] [] [] | + gpe-go | [] [] [] [] [] [] [] [] | + gpe-login | [] [] | + gpe-ownerinfo | [] [] [] [] [] [] [] [] | + gpe-package | [] [] | + gpe-sketchbook | [] [] [] [] [] [] [] | + gpe-su | [] [] [] [] [] [] [] [] | + gpe-taskmanager | [] [] [] [] [] [] [] [] | + gpe-timesheet | [] [] [] [] [] [] [] [] | + gpe-today | [] [] [] [] [] [] [] [] | + gpe-todo | [] [] [] [] [] | + gphoto2 | [] [] [] [] [] [] [] [] | + gprof | [] [] [] | + gpsdrive | [] [] | + gramadoir | [] [] | + grep | [] [] [] [] | + grub | [] [] [] | + gsasl | [] [] [] [] | + gss | [] [] [] | + gst-plugins-bad | [] [] [] [] [] | + gst-plugins-base | [] [] [] [] [] | + gst-plugins-good | [] [] [] [] [] | + gst-plugins-ugly | [] [] [] [] [] [] | + gstreamer | [] [] [] [] [] | + gtick | [] [] [] | + gtkam | [] [] [] [] [] [] | + gtkorphan | [] | + gtkspell | [] [] [] [] [] [] [] [] [] [] | + gutenprint | [] [] | + hello | [] [] [] [] | + help2man | [] [] | + hylafax | [] | + idutils | [] [] [] [] [] | + indent | [] [] [] [] [] [] [] | + iso_15924 | [] [] [] [] | + iso_3166 | [] [] [] [] [] () [] [] [] [] [] [] [] [] | + iso_3166_2 | [] [] [] | + iso_4217 | [] [] [] [] [] [] [] [] | + iso_639 | [] [] [] [] [] [] [] [] [] | + iso_639_3 | [] [] | + jwhois | [] [] [] [] | + kbd | [] [] [] | + keytouch | [] [] [] | + keytouch-editor | [] [] [] | + keytouch-keyboa... | [] [] [] | + klavaro | [] [] | + latrine | [] [] | + ld | | + leafpad | [] [] [] [] [] [] [] [] [] | + libc | [] [] [] [] | + libexif | [] [] () [] | + libextractor | | + libgnutls | [] [] | + libgpewidget | [] [] [] | + libgpg-error | [] [] | + libgphoto2 | [] [] | + libgphoto2_port | [] [] [] [] | + libgsasl | [] [] [] [] [] | + libiconv | [] [] [] [] [] | + libidn | [] [] | + lifelines | [] [] | + liferea | [] [] [] [] [] () () [] | + lilypond | [] | + linkdr | [] [] [] | + lordsawar | | + lprng | [] | + lynx | [] [] [] | + m4 | [] [] [] [] [] | + mailfromd | [] | + mailutils | [] | + make | [] [] [] [] | + man-db | [] [] [] | + man-db-manpages | [] [] [] | + minicom | [] [] [] [] | + mkisofs | [] [] [] | + myserver | | + nano | [] [] [] [] | + opcodes | [] [] | + parted | [] [] [] [] | + pies | [] | + popt | [] [] [] [] | + psmisc | [] [] [] | + pspp | [] [] | + pwdutils | [] | + radius | [] [] [] | + recode | [] [] [] [] [] [] [] [] | + rosegarden | () () | + rpm | [] [] [] | + rush | [] [] | + sarg | | + screem | | + scrollkeeper | [] [] [] [] [] [] [] [] | + sed | [] [] [] [] [] [] [] [] [] | + sharutils | [] [] [] [] | + shishi | [] | + skencil | [] [] | + solfege | [] [] [] [] | + solfege-manual | [] [] [] | + soundtracker | [] | + sp | | + sysstat | [] [] [] [] | + tar | [] [] [] [] | + texinfo | [] [] [] [] | + tin | [] | + unicode-han-tra... | | + unicode-transla... | | + util-linux-ng | [] [] [] [] [] | + vice | [] | + vmm | [] | + vorbis-tools | [] [] | + wastesedge | [] | + wdiff | [] [] | + wget | [] [] [] [] [] [] [] | + wyslij-po | [] [] [] | + xchat | [] [] [] [] [] [] [] [] [] | + xdg-user-dirs | [] [] [] [] [] [] [] [] [] [] [] [] [] [] | + xkeyboard-config | [] [] [] [] [] | + +---------------------------------------------------+ + nl nn or pa pl ps pt pt_BR ro ru rw sk sl sq sr + 135 10 4 7 105 1 29 61 47 91 3 55 47 8 37 + + sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW + +---------------------------------------------------+ + a2ps | [] [] [] [] [] | 27 + aegis | [] | 9 + ant-phone | [] [] [] [] | 9 + anubis | [] [] [] [] | 15 + aspell | [] [] [] | 20 + bash | [] [] | 11 + bfd | [] | 6 + bibshelf | [] [] [] | 16 + binutils | [] [] | 8 + bison | [] [] | 12 + bison-runtime | [] [] [] [] [] [] | 29 + bluez-pin | [] [] [] [] [] [] [] [] | 37 + bombono-dvd | [] | 4 + buzztard | [] | 7 + cflow | [] [] [] | 9 + clisp | | 10 + coreutils | [] [] [] [] | 22 + cpio | [] [] [] [] [] [] | 13 + cppi | [] [] | 5 + cpplib | [] [] [] [] [] [] | 13 + cryptsetup | [] [] | 7 + dfarc | [] | 9 + dialog | [] [] [] [] [] [] [] | 30 + dico | [] | 2 + diffutils | [] [] [] [] [] [] | 30 + dink | | 4 + doodle | [] [] | 7 + e2fsprogs | [] [] [] | 11 + enscript | [] [] [] [] | 17 + exif | [] [] [] | 16 + fetchmail | [] [] [] | 17 + findutils | [] [] [] [] [] | 20 + flex | [] [] [] [] | 15 + freedink | [] | 10 + gas | [] | 4 + gawk | [] [] [] [] | 18 + gcal | [] [] | 5 + gcc | [] [] [] | 7 + gettext-examples | [] [] [] [] [] [] [] | 34 + gettext-runtime | [] [] [] [] [] [] [] | 30 + gettext-tools | [] [] [] [] [] [] | 22 + gip | [] [] [] [] | 22 + gjay | [] | 3 + gliv | [] [] [] | 14 + glunarclock | [] [] [] [] [] | 19 + gnubiff | [] [] | 4 + gnucash | () [] () () | 9 + gnuedu | [] [] | 7 + gnulib | [] [] [] [] | 16 + gnunet | [] | 1 + gnunet-gtk | [] [] [] | 5 + gnutls | [] [] [] | 10 + gold | [] | 4 + gpe-aerial | [] [] [] | 18 + gpe-beam | [] [] [] | 19 + gpe-bluetooth | [] [] [] | 13 + gpe-calendar | [] [] [] [] | 12 + gpe-clock | [] [] [] [] [] | 28 + gpe-conf | [] [] [] [] | 20 + gpe-contacts | [] [] [] | 17 + gpe-edit | [] [] [] | 12 + gpe-filemanager | [] [] [] [] | 16 + gpe-go | [] [] [] [] [] | 25 + gpe-login | [] [] [] | 11 + gpe-ownerinfo | [] [] [] [] [] | 25 + gpe-package | [] [] [] | 13 + gpe-sketchbook | [] [] [] | 20 + gpe-su | [] [] [] [] [] | 30 + gpe-taskmanager | [] [] [] [] [] | 29 + gpe-timesheet | [] [] [] [] [] | 25 + gpe-today | [] [] [] [] [] [] | 30 + gpe-todo | [] [] [] [] | 17 + gphoto2 | [] [] [] [] [] | 24 + gprof | [] [] [] | 15 + gpsdrive | [] [] [] | 11 + gramadoir | [] [] [] | 11 + grep | [] [] [] | 10 + grub | [] [] [] | 14 + gsasl | [] [] [] [] | 14 + gss | [] [] [] | 11 + gst-plugins-bad | [] [] [] [] | 22 + gst-plugins-base | [] [] [] [] [] | 24 + gst-plugins-good | [] [] [] [] [] | 25 + gst-plugins-ugly | [] [] [] [] [] | 29 + gstreamer | [] [] [] [] | 22 + gtick | [] [] [] | 13 + gtkam | [] [] [] | 20 + gtkorphan | [] [] [] | 14 + gtkspell | [] [] [] [] [] [] [] [] [] | 45 + gutenprint | [] | 10 + hello | [] [] [] [] [] [] | 21 + help2man | [] [] | 7 + hylafax | [] | 5 + idutils | [] [] [] [] | 17 + indent | [] [] [] [] [] [] | 30 + iso_15924 | () [] () [] [] | 16 + iso_3166 | [] [] () [] [] () [] [] [] () | 53 + iso_3166_2 | () [] () [] | 9 + iso_4217 | [] () [] [] () [] [] | 26 + iso_639 | [] [] [] () [] () [] [] [] [] | 38 + iso_639_3 | [] () | 8 + jwhois | [] [] [] [] [] | 16 + kbd | [] [] [] [] [] | 15 + keytouch | [] [] [] | 16 + keytouch-editor | [] [] [] | 14 + keytouch-keyboa... | [] [] [] | 14 + klavaro | [] | 11 + latrine | [] [] [] | 10 + ld | [] [] [] [] | 11 + leafpad | [] [] [] [] [] [] | 33 + libc | [] [] [] [] [] | 21 + libexif | [] () | 6 + libextractor | [] | 1 + libgnutls | [] [] [] | 9 + libgpewidget | [] [] [] | 14 + libgpg-error | [] [] [] | 9 + libgphoto2 | [] [] | 8 + libgphoto2_port | [] [] [] [] | 13 + libgsasl | [] [] [] | 13 + libiconv | [] [] [] [] | 21 + libidn | () [] [] | 11 + lifelines | [] | 4 + liferea | [] [] [] | 21 + lilypond | [] | 7 + linkdr | [] [] [] [] [] | 17 + lordsawar | | 1 + lprng | [] | 3 + lynx | [] [] [] [] | 17 + m4 | [] [] [] [] | 19 + mailfromd | [] [] | 3 + mailutils | [] | 5 + make | [] [] [] [] | 21 + man-db | [] [] [] | 8 + man-db-manpages | | 4 + minicom | [] [] | 16 + mkisofs | [] [] | 9 + myserver | | 0 + nano | [] [] [] [] | 21 + opcodes | [] [] [] | 11 + parted | [] [] [] [] [] | 15 + pies | [] [] | 3 + popt | [] [] [] [] [] [] | 27 + psmisc | [] [] | 11 + pspp | | 4 + pwdutils | [] [] | 6 + radius | [] [] | 9 + recode | [] [] [] [] | 28 + rosegarden | () | 0 + rpm | [] [] [] | 11 + rush | [] [] | 4 + sarg | | 1 + screem | [] | 3 + scrollkeeper | [] [] [] [] [] | 27 + sed | [] [] [] [] [] | 30 + sharutils | [] [] [] [] [] | 22 + shishi | [] | 3 + skencil | [] [] | 7 + solfege | [] [] [] [] | 16 + solfege-manual | [] | 8 + soundtracker | [] [] [] | 9 + sp | [] | 3 + sysstat | [] [] | 15 + tar | [] [] [] [] [] [] | 23 + texinfo | [] [] [] [] | 16 + tin | | 4 + unicode-han-tra... | | 0 + unicode-transla... | | 2 + util-linux-ng | [] [] [] [] | 20 + vice | () () | 1 + vmm | [] | 4 + vorbis-tools | [] | 6 + wastesedge | | 2 + wdiff | [] [] | 7 + wget | [] [] [] [] [] | 26 + wyslij-po | [] [] | 8 + xchat | [] [] [] [] [] [] | 36 + xdg-user-dirs | [] [] [] [] [] [] [] [] [] | 60 + xkeyboard-config | [] [] [] [] | 25 + +---------------------------------------------------+ + 84 teams sv sw ta te tg th tr uk vi wa zh_CN zh_HK zh_TW + 178 domains 119 1 3 2 0 10 66 50 155 17 97 7 41 2610 + + 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 May 2010 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.6 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 Library 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. + @@ -0,0 +1,16 @@ +Active authors: + +Paolo Borelli <pborelli@katamail.com> +Steve Frécinaux <code@istique.net> +Jesse van den Kieboom <jessevdk@gnome.org> +Ignacio Casal Quinteiro <icq@gnome.org> +Garrett Regier <garrettregier@gmail.com> +Sébastien Lafargue <slafargue@gnome.org> +Sébastien Wilmet <swilmet@gnome.org> + +Old contributors: + +Chema Celorio +James Willcox <jwillcox@gnome.org> +Federico Mena Quintero <federico@ximian.com> +Paolo Maggi <paolo@gnome.org> @@ -0,0 +1,340 @@ + GNU GENERAL PUBLIC LICENSE + Version 2, June 1991 + + Copyright (C) 1989, 1991 Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA + Everyone is permitted to copy and distribute verbatim copies + of this license document, but changing it is not allowed. + + Preamble + + The licenses for most software are designed to take away your +freedom to share and change it. By contrast, the GNU General Public +License is intended to guarantee your freedom to share and change free +software--to make sure the software is free for all its users. This +General Public License applies to most of the Free Software +Foundation's software and to any other program whose authors commit to +using it. (Some other Free Software Foundation software is covered by +the GNU Lesser General Public License instead.) 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 +this service 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 make restrictions that forbid +anyone to deny you these rights or to ask you to surrender the rights. +These restrictions translate to certain responsibilities for you if you +distribute copies of the software, or if you modify it. + + For example, if you distribute copies of such a program, whether +gratis or for a fee, you must give the recipients all the rights that +you have. 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. + + We protect your rights with two steps: (1) copyright the software, and +(2) offer you this license which gives you legal permission to copy, +distribute and/or modify the software. + + Also, for each author's protection and ours, we want to make certain +that everyone understands that there is no warranty for this free +software. If the software is modified by someone else and passed on, we +want its recipients to know that what they have is not the original, so +that any problems introduced by others will not reflect on the original +authors' reputations. + + Finally, any free program is threatened constantly by software +patents. We wish to avoid the danger that redistributors of a free +program will individually obtain patent licenses, in effect making the +program proprietary. To prevent this, we have made it clear that any +patent must be licensed for everyone's free use or not licensed at all. + + The precise terms and conditions for copying, distribution and +modification follow. + + GNU GENERAL PUBLIC LICENSE + TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION + + 0. This License applies to any program or other work which contains +a notice placed by the copyright holder saying it may be distributed +under the terms of this General Public License. The "Program", below, +refers to any such program or work, and a "work based on the Program" +means either the Program or any derivative work under copyright law: +that is to say, a work containing the Program or a portion of it, +either verbatim or with modifications and/or translated into another +language. (Hereinafter, translation is included without limitation in +the term "modification".) Each licensee is addressed as "you". + +Activities other than copying, distribution and modification are not +covered by this License; they are outside its scope. The act of +running the Program is not restricted, and the output from the Program +is covered only if its contents constitute a work based on the +Program (independent of having been made by running the Program). +Whether that is true depends on what the Program does. + + 1. You may copy and distribute 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 and disclaimer of warranty; keep intact all the +notices that refer to this License and to the absence of any warranty; +and give any other recipients of the Program a copy of this License +along with the Program. + +You may charge a fee for the physical act of transferring a copy, and +you may at your option offer warranty protection in exchange for a fee. + + 2. You may modify your copy or copies of the Program or any portion +of it, thus forming a work based on the Program, and copy and +distribute such modifications or work under the terms of Section 1 +above, provided that you also meet all of these conditions: + + a) You must cause the modified files to carry prominent notices + stating that you changed the files and the date of any change. + + b) You must cause any work that you distribute or publish, that in + whole or in part contains or is derived from the Program or any + part thereof, to be licensed as a whole at no charge to all third + parties under the terms of this License. + + c) If the modified program normally reads commands interactively + when run, you must cause it, when started running for such + interactive use in the most ordinary way, to print or display an + announcement including an appropriate copyright notice and a + notice that there is no warranty (or else, saying that you provide + a warranty) and that users may redistribute the program under + these conditions, and telling the user how to view a copy of this + License. (Exception: if the Program itself is interactive but + does not normally print such an announcement, your work based on + the Program is not required to print an announcement.) + +These requirements apply to the modified work as a whole. If +identifiable sections of that work are not derived from the Program, +and can be reasonably considered independent and separate works in +themselves, then this License, and its terms, do not apply to those +sections when you distribute them as separate works. But when you +distribute the same sections as part of a whole which is a work based +on the Program, the distribution of the whole must be on the terms of +this License, whose permissions for other licensees extend to the +entire whole, and thus to each and every part regardless of who wrote it. + +Thus, it is not the intent of this section to claim rights or contest +your rights to work written entirely by you; rather, the intent is to +exercise the right to control the distribution of derivative or +collective works based on the Program. + +In addition, mere aggregation of another work not based on the Program +with the Program (or with a work based on the Program) on a volume of +a storage or distribution medium does not bring the other work under +the scope of this License. + + 3. You may copy and distribute the Program (or a work based on it, +under Section 2) in object code or executable form under the terms of +Sections 1 and 2 above provided that you also do one of the following: + + a) Accompany it with the complete corresponding machine-readable + source code, which must be distributed under the terms of Sections + 1 and 2 above on a medium customarily used for software interchange; or, + + b) Accompany it with a written offer, valid for at least three + years, to give any third party, for a charge no more than your + cost of physically performing source distribution, a complete + machine-readable copy of the corresponding source code, to be + distributed under the terms of Sections 1 and 2 above on a medium + customarily used for software interchange; or, + + c) Accompany it with the information you received as to the offer + to distribute corresponding source code. (This alternative is + allowed only for noncommercial distribution and only if you + received the program in object code or executable form with such + an offer, in accord with Subsection b above.) + +The source code for a work means the preferred form of the work for +making modifications to it. For an executable work, complete source +code means all the source code for all modules it contains, plus any +associated interface definition files, plus the scripts used to +control compilation and installation of the executable. However, as a +special exception, the source code distributed need not include +anything that is normally distributed (in either source or binary +form) with the major components (compiler, kernel, and so on) of the +operating system on which the executable runs, unless that component +itself accompanies the executable. + +If distribution of executable or object code is made by offering +access to copy from a designated place, then offering equivalent +access to copy the source code from the same place counts as +distribution of the source code, even though third parties are not +compelled to copy the source along with the object code. + + 4. You may not copy, modify, sublicense, or distribute the Program +except as expressly provided under this License. Any attempt +otherwise to copy, modify, sublicense or distribute the Program is +void, and will automatically terminate your rights under this License. +However, parties who have received copies, or rights, from you under +this License will not have their licenses terminated so long as such +parties remain in full compliance. + + 5. You are not required to accept this License, since you have not +signed it. However, nothing else grants you permission to modify or +distribute the Program or its derivative works. These actions are +prohibited by law if you do not accept this License. Therefore, by +modifying or distributing the Program (or any work based on the +Program), you indicate your acceptance of this License to do so, and +all its terms and conditions for copying, distributing or modifying +the Program or works based on it. + + 6. Each time you redistribute the Program (or any work based on the +Program), the recipient automatically receives a license from the +original licensor to copy, distribute or modify the Program subject to +these terms and conditions. You may not impose any further +restrictions on the recipients' exercise of the rights granted herein. +You are not responsible for enforcing compliance by third parties to +this License. + + 7. If, as a consequence of a court judgment or allegation of patent +infringement or for any other reason (not limited to patent issues), +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 +distribute so as to satisfy simultaneously your obligations under this +License and any other pertinent obligations, then as a consequence you +may not distribute the Program at all. For example, if a patent +license would not permit royalty-free redistribution of the Program by +all those who receive copies directly or indirectly through you, then +the only way you could satisfy both it and this License would be to +refrain entirely from distribution of the Program. + +If any portion of this section is held invalid or unenforceable under +any particular circumstance, the balance of the section is intended to +apply and the section as a whole is intended to apply in other +circumstances. + +It is not the purpose of this section to induce you to infringe any +patents or other property right claims or to contest validity of any +such claims; this section has the sole purpose of protecting the +integrity of the free software distribution system, which is +implemented by public license practices. Many people have made +generous contributions to the wide range of software distributed +through that system in reliance on consistent application of that +system; it is up to the author/donor to decide if he or she is willing +to distribute software through any other system and a licensee cannot +impose that choice. + +This section is intended to make thoroughly clear what is believed to +be a consequence of the rest of this License. + + 8. If the distribution and/or use of the Program is restricted in +certain countries either by patents or by copyrighted interfaces, the +original copyright holder who places the Program under this License +may add an explicit geographical distribution limitation excluding +those countries, so that distribution is permitted only in or among +countries not thus excluded. In such case, this License incorporates +the limitation as if written in the body of this License. + + 9. The Free Software Foundation may publish revised and/or new versions +of the 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 a version number of this License which applies to it and "any +later version", you have the option of following the terms and conditions +either of that version or of any later version published by the Free +Software Foundation. If the Program does not specify a version number of +this License, you may choose any version ever published by the Free Software +Foundation. + + 10. If you wish to incorporate parts of the Program into other free +programs whose distribution conditions are different, write to the author +to ask for permission. For software which is copyrighted by the Free +Software Foundation, write to the Free Software Foundation; we sometimes +make exceptions for this. Our decision will be guided by the two goals +of preserving the free status of all derivatives of our free software and +of promoting the sharing and reuse of software generally. + + NO WARRANTY + + 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, 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. + + 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING +WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR +REDISTRIBUTE 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. + + 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 +convey the exclusion of warranty; and each file should have at least +the "copyright" line and a pointer to where the full notice is found. + + <one line to give the program's name and a brief idea of what it does.> + Copyright (C) <year> <name of author> + + This program is free software; you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation; either version 2 of the License, or + (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, write to the Free Software Foundation, Inc., + 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. + +Also add information on how to contact you by electronic and paper mail. + +If the program is interactive, make it output a short notice like this +when it starts in an interactive mode: + + Gnomovision version 69, Copyright (C) year name of author + Gnomovision 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, the commands you use may +be called something other than `show w' and `show c'; they could even be +mouse-clicks or menu items--whatever suits your program. + +You should also get your employer (if you work as a programmer) or your +school, if any, to sign a "copyright disclaimer" for the program, if +necessary. Here is a sample; alter the names: + + Yoyodyne, Inc., hereby disclaims all copyright interest in the program + `Gnomovision' (which makes passes at compilers) written by James Hacker. + + <signature of Ty Coon>, 1 April 1989 + Ty Coon, President of Vice + +This 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. + diff --git a/ChangeLog b/ChangeLog new file mode 100644 index 0000000..1397dbe --- /dev/null +++ b/ChangeLog @@ -0,0 +1 @@ +Refer to the "git log" for a detailed list of changes @@ -0,0 +1,194 @@ +Source code repository +====================== + +gedit source code is maintained using the git version control system +and is available at the following location: + + git://git.gnome.org/gedit + +Or if you have an account on GNOME servers: + + ssh://USERNAME@git.gnome.org/git/gedit + +A web interface is available at: + + https://git.gnome.org/browse/gedit + + +Building from git +================= + +When building from a git checkout you will need to run the +autogen.sh script which takes care of running automake, autoconf, +etc and then run "configure" for you. You can pass options like +--prefix to autogen.sh and they will be forwarded to the configure +script. + +Note that you cannot run gedit from its build directory: you need +to install it with "make install". For this reason it is highly +recommended that you install in a separate prefix instead of +overwriting your system binaries. Note however that when running +gedit from a custom prefix you will need to set many environment +variables accordingly, for instance PATH and XDG_DATA_DIR. +The JHBuild tool can take care of all this for you. + + +Commit guidelines +================= + +Please don't commit directly to the git repository unless +you have been given the green light to commit freely to gedit. +When in doubt assume you haven't ;-). + +Please attach patches in bugzilla (http://bugzilla.gnome.org). +If the patch fixes a bug that is not reported yet in bugzilla or is +an enhancement, create a new bugreport. + +Please create patches with the git format-patch command. + +If you are a translator feel free to mark strings for translation, +fix typos in the code, etc. + +Please send patches for build & configure fixes too. I really appreciate +your help, I just want to review these fixes before applying. + +If you are a "build sheriff", feel free to commit fixes for build and +configure (please, send me an e-mail with the patch you have applied). + +When committing to the gedit git repository make sure to include a +meaningful commit message. Changes without a sufficient commit message +will be reverted. Commit messages should have the following format: + +=== begin example commit === +Short explanation of the commit + +Longer explanation explaining exactly what's changed, whether any +external or private interfaces changed, what bugs were fixed (with bug +tracker reference if applicable) and so forth. Be concise but not too brief. +=== end example commit === + + - Always add a brief description of the commit to the _first_ line of + the commit and terminate by two newlines (it will work without the + second newline, but that is not nice for the interfaces). + + - First line (the brief description) must only be one sentence and + should start with a capital letter unless it starts with a lowercase + symbol or identifier. Don't use a trailing period either. Don't exceed + 72 characters. + + - The main description (the body) is normal prose and should use normal + punctuation and capital letters where appropriate. Normally, for patches + sent to a mailing list it's copied from there. + + - When committing code on behalf of others use the --author option, e.g. + git commit -a --author "Joe Coder <joe@coder.org>" and --signoff. + + +Code conventions +================ + +You may encounter old code that doesn't follow all the following code +conventions, but for new code it is better to follow them, for consistency. + + - Avoid trailing whitespace. + + - Indent the C code with tabulations with a width of eight characters. + + - The files should have a modeline for the indentation style. + + - All blocks should be surrounded by curly braces, even one-line blocks. It + spaces out the code, and it is more convenient when some code must be added + or removed without the need to add or remove the curly braces. + + - Follow the C89 standard. In particular, no "//"-style comments. + + - As a general rule of thumb, follow the same coding style as the surrounding + code. + + - Do not be cheap about blank lines, spacing the code vertically help + readability. However never use two consecutive blank lines, there is really + no need. + + +Programming best practices +========================== + +gedit is a pretty big piece of software, developed over the years by different +people and GNOME technologies. Some parts of the code may be a little old. So +when editing the code, we should try to make it better, not worse. + +Here are some general advices. + + - Simplicity: the simpler code the better. Any trick that seem smart when you + write it is going to bite your ass later when reading the code. Given that + you spend 90% of the time staring at the code and 10% writing it, making + reading the code harder is a net loss. + + - Brevity: make an effort to refactor common code into utility functions and + use library function whenever is possible: every time you cut and paste a + line of code you are throwing away all the precious seconds of your life + that you will later spend trying to figure out the differences among the two + copies that will have surely diverged. + + - Code for change: code is bound to contain bugs no matter how well it is + written. A good coding style allows to fix these bugs with minimal changes + instead of reformatting a whole section of unrelated code, this is + especially important to make patch review easier and to easily understand + the commit history. Some practical examples are: + + - Factor code into self contained functions so that changing a function + does not require to change all the callers. + + - Do not align variable declaration, "case" statements etc, since this + will inevitably mean that when a line will change you'll have to + reformat all the surrounding ones. + + - Declare variables in the strictest scope as possible. + + - Reorder functions so that you do not need prototypes for static + functions so that when you change them you need to change them only in + one place. + + - Self documentation and code comments: use code comments parsimoniously. Code + should be written so that it is clear and evident without the need of + comments. Besides, comments usually get outdated when the code is changed + and they become misleading. In particular avoid stating the obvious e.g. "a + = 1; /* assign 1 to a */". Use good function names and variables to make the + code self-documented. + + A good function name is one that explain clearly all what its code really + does. There shouldn't be hidden features. If you can not find easily a good + function name, you should probably split the function in smaller pieces. A + function should do only one thing, but do it well. + + Please avoid lots of one-letter variables. And a variable should be used for + only one purpose. + + Self-documentation is obviously not always possible, so when a comment is + needed, it is needed. In those cases make sure to explain why and not only + how a specific thing is done: you can deduce the "how" from the code, but + not the "why". Public library functions should always be documented and in + particular should include the calling conventions, e.g. if the result should + be freed by the caller. + + Do not use fancy frames around comments like a line full of + /*---------------*/ etc. + + - Contribute below on the stack. Fix a problem at the right place, instead of + writing hacks to work around a bug or a lack of feature in an underlying + library. + + +See also +======== + +https://wiki.gnome.org/Apps/Gedit/DevGettingStarted +https://developer.gnome.org/programming-guidelines/stable/ +https://wiki.gnome.org/Projects/GTK%2B/BestPractices +http://ometer.com/hacking.html +http://blogs.gnome.org/swilmet/2012/08/01/about-code-quality-and-maintainability/ + + +Thanks, + + The gedit team. @@ -0,0 +1,368 @@ +Installation Instructions +************************* + + Copyright (C) 1994-1996, 1999-2002, 2004-2016 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 '<wchar.h>' 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/MAINTAINERS b/MAINTAINERS new file mode 100644 index 0000000..0f04922 --- /dev/null +++ b/MAINTAINERS @@ -0,0 +1,11 @@ +Paolo Borelli +E-mail: pborelli@gnome.org +Userid: pborelli + +Jesse van den Kieboom +E-mail: jessevdk@gnome.org +Userid: jessevdk + +Ignacio Casal Quinteiro +E-mail: icq@gnome.org +Userid: icq diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..0769fb9 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,113 @@ +## Process this file with automake to produce Makefile.in +ACLOCAL_AMFLAGS = -I m4 -I libgd ${ACLOCAL_FLAGS} + +SUBDIRS = libgd . po docs + +if !OS_OSX +SUBDIRS += help +endif + +EXTRA_DIST = \ + HACKING \ + MAINTAINERS \ + gedit.doap \ + intltool-extract.in \ + intltool-merge.in \ + intltool-update.in + +DISTCLEANFILES = \ + gnome-doc-utils.make \ + intltool-extract \ + intltool-merge \ + intltool-update + +MAINTAINERCLEANFILES = \ + $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \ + $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \ + $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) \ + ABOUT-NLS \ + INSTALL \ + config.rpath \ + gtk-doc.make \ + py-compile \ + test-driver \ + m4/gnome-doc-utils.m4 \ + m4/gtk-doc.m4 \ + m4/intltool.m4 \ + m4/codeset.m4 \ + m4/fcntl-o.m4 \ + m4/gettext.m4 \ + m4/glibc2.m4 \ + m4/glibc21.m4 \ + m4/iconv.m4 \ + m4/intdiv0.m4 \ + m4/intl.m4 \ + m4/intldir.m4 \ + m4/intlmacosx.m4 \ + m4/intmax.m4 \ + m4/inttypes-pri.m4 \ + m4/inttypes_h.m4 \ + m4/lcmessage.m4 \ + m4/lib-ld.m4 \ + m4/lib-link.m4 \ + m4/lib-prefix.m4 \ + m4/lock.m4 \ + m4/longlong.m4 \ + m4/nls.m4 \ + m4/po.m4 \ + m4/printf-posix.m4 \ + m4/progtest.m4 \ + m4/size_max.m4 \ + m4/stdint_h.m4 \ + m4/threadlib.m4 \ + m4/uintmax_t.m4 \ + m4/visibility.m4 \ + m4/wchar_t.m4 \ + m4/wint_t.m4 \ + m4/xsize.m4 \ + po/Makevars.template \ + po/Rules-quot \ + po/*.sed \ + po/*.header \ + po/*.sin + +DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc + +GRESDEPS = $(srcdir)/$1 $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir)/$(dir $1) $(srcdir)/$1) + +GRESGEN = $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target="$@" --sourcedir="$(dir $<)" --generate-source "$<" + +noinst_LTLIBRARIES = +noinst_PROGRAMS = +bin_PROGRAMS = +pkglib_LTLIBRARIES = +gsettings_SCHEMAS = +gsettings_ENUMS = +dist_gsettingsschema_DATA = +BUILT_SOURCES = +CLEANFILES = + +include data/Makefile.am +include data/icons/Makefile.am +include win32/Makefile.am +include osx/bundle/data/Makefile.am +include plugins/Makefile.am +include gedit/Makefile.am + +@GSETTINGS_RULES@ + +CLEANFILES += $(gsettings_SCHEMAS) $(gsettings_ENUMS) $(BUILT_SOURCES) +DISTCLEANFILES += $(gsettings_SCHEMAS) $(gsettings_ENUMS) $(BUILT_SOURCES) +MAINTAINERCLEANFILES += $(gsettings_SCHEMAS:.xml=.valid) + +@INTLTOOL_DESKTOP_RULE@ +@INTLTOOL_XML_RULE@ + +dist-hook: dist-hook-cleanup + +dist-hook-cleanup: + cd $(distdir); rm -f $(BUILT_SOURCES) + +.PHONY: dist-hook-cleanup + +-include $(top_srcdir)/git.mk diff --git a/Makefile.in b/Makefile.in new file mode 100644 index 0000000..ac2744c --- /dev/null +++ b/Makefile.in @@ -0,0 +1,4764 @@ +# Makefile.in generated by automake 1.16.1 from Makefile.am. +# @configure_input@ + +# Copyright (C) 1994-2018 Free Software Foundation, Inc. + +# This Makefile.in is free software; the Free Software Foundation +# gives unlimited permission to copy and/or distribute it, +# with or without modifications, as long as this notice is preserved. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY, to the extent permitted by law; without +# even the implied warranty of MERCHANTABILITY or FITNESS FOR A +# PARTICULAR PURPOSE. + +@SET_MAKE@ + + + + + +VPATH = @srcdir@ +am__is_gnu_make = { \ + if test -z '$(MAKELEVEL)'; then \ + false; \ + elif test -n '$(MAKE_HOST)'; then \ + true; \ + elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ + true; \ + else \ + false; \ + fi; \ +} +am__make_running_with_option = \ + case $${target_option-} in \ + ?) ;; \ + *) echo "am__make_running_with_option: internal error: invalid" \ + "target option '$${target_option-}' specified" >&2; \ + exit 1;; \ + esac; \ + has_opt=no; \ + sane_makeflags=$$MAKEFLAGS; \ + if $(am__is_gnu_make); then \ + sane_makeflags=$$MFLAGS; \ + else \ + case $$MAKEFLAGS in \ + *\\[\ \ ]*) \ + bs=\\; \ + sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ + | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ + esac; \ + fi; \ + skip_next=no; \ + strip_trailopt () \ + { \ + flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ + }; \ + for flg in $$sane_makeflags; do \ + test $$skip_next = yes && { skip_next=no; continue; }; \ + case $$flg in \ + *=*|--*) continue;; \ + -*I) strip_trailopt 'I'; skip_next=yes;; \ + -*I?*) strip_trailopt 'I';; \ + -*O) strip_trailopt 'O'; skip_next=yes;; \ + -*O?*) strip_trailopt 'O';; \ + -*l) strip_trailopt 'l'; skip_next=yes;; \ + -*l?*) strip_trailopt 'l';; \ + -[dEDm]) skip_next=yes;; \ + -[JT]) skip_next=yes;; \ + esac; \ + case $$flg in \ + *$$target_option*) has_opt=yes; break;; \ + esac; \ + done; \ + test $$has_opt = yes +am__make_dryrun = (target_option=n; $(am__make_running_with_option)) +am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) +pkgdatadir = $(datadir)/@PACKAGE@ +pkgincludedir = $(includedir)/@PACKAGE@ +pkglibdir = $(libdir)/@PACKAGE@ +pkglibexecdir = $(libexecdir)/@PACKAGE@ +am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd +install_sh_DATA = $(install_sh) -c -m 644 +install_sh_PROGRAM = $(install_sh) -c +install_sh_SCRIPT = $(install_sh) -c +INSTALL_HEADER = $(INSTALL_DATA) +transform = $(program_transform_name) +NORMAL_INSTALL = : +PRE_INSTALL = : +POST_INSTALL = : +NORMAL_UNINSTALL = : +PRE_UNINSTALL = : +POST_UNINSTALL = : +build_triplet = @build@ +host_triplet = @host@ +@OS_OSX_FALSE@am__append_1 = help +noinst_PROGRAMS = +bin_PROGRAMS = gedit/gedit$(EXEEXT) +@OS_OSX_TRUE@am__append_2 = data/gedit-osx.gschema.override +@ENABLE_UPDATER_TRUE@am__append_3 = plugins/checkupdate/libcheckupdate.la +@ENABLE_UPDATER_TRUE@am__append_4 = plugins/checkupdate/checkupdate.plugin.desktop.in +@ENABLE_UPDATER_TRUE@am__append_5 = \ +@ENABLE_UPDATER_TRUE@ plugins/checkupdate/org.gnome.gedit.plugins.checkupdate.gschema.xml + +@ENABLE_UPDATER_FALSE@am__append_6 = plugins/checkupdate/checkupdate.plugin.desktop.in +@ENABLE_UPDATER_FALSE@am__append_7 = \ +@ENABLE_UPDATER_FALSE@ plugins/checkupdate/org.gnome.gedit.plugins.checkupdate.gschema.xml + +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@@PLATFORM_OSX_TRUE@am__append_8 = $(externaltools_tools_in_osx) +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@@PLATFORM_OSX_FALSE@@PLATFORM_WIN32_TRUE@am__append_9 = $(externaltools_tools_in_win32) +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@@PLATFORM_OSX_FALSE@@PLATFORM_WIN32_FALSE@am__append_10 = $(externaltools_tools_in_linux) +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@am__append_11 = $(externaltools_all_desktop_in_files) \ +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@ $(externaltools_all_tools_in_files) \ +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@ plugins/externaltools/scripts/gedit-tool-merge.pl +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@am__append_12 = \ +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@ $(externaltools_all_desktop_files) \ +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@ $(externaltools_all_tools_files) + +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@am__append_13 = $(externaltools_plugin_in) +@ENABLE_PYTHON_TRUE@@OS_WIN32_FALSE@am__append_14 = $(externaltools_gschema) +@ENABLE_PYTHON_FALSE@@OS_WIN32_FALSE@am__append_15 = $(externaltools_plugin_in) +@ENABLE_PYTHON_FALSE@@OS_WIN32_FALSE@am__append_16 = $(externaltools_schema) +@OS_WIN32_TRUE@am__append_17 = $(externaltools_plugin_in) +@OS_WIN32_TRUE@am__append_18 = $(externaltools_schema) +@ENABLE_PYTHON_TRUE@am__append_19 = $(pythonconsole_gschema) +@ENABLE_PYTHON_TRUE@am__append_20 = $(pythonconsole_plugin_in) +@ENABLE_PYTHON_FALSE@am__append_21 = $(pythonconsole_gschema) +@ENABLE_PYTHON_FALSE@am__append_22 = $(pythonconsole_plugin_in) \ +@ENABLE_PYTHON_FALSE@ plugins/quickopen/quickopen.plugin.desktop.in \ +@ENABLE_PYTHON_FALSE@ plugins/snippets/snippets.plugin.desktop.in +@ENABLE_PYTHON_TRUE@am__append_23 = plugins/quickopen/quickopen.plugin.desktop.in \ +@ENABLE_PYTHON_TRUE@ plugins/snippets/snippets.plugin.desktop.in +@ENABLE_SPELL_TRUE@am__append_24 = plugins/spell/libspell.la +@ENABLE_SPELL_TRUE@am__append_25 = plugins/spell/spell.plugin.desktop.in +@ENABLE_SPELL_FALSE@am__append_26 = plugins/spell/spell.plugin.desktop.in + +# Mac OSX convenience library and ldflags +@OS_OSX_TRUE@am__append_27 = gedit/libosx.la +@OS_OSX_TRUE@am__append_28 = gedit/libosx.la + +# Win32 convenience library and ldflags +@OS_WIN32_TRUE@am__append_29 = -mwindows +@OS_WIN32_TRUE@am__append_30 = gedit/libwin32.la +@OS_WIN32_TRUE@am__append_31 = gedit/libwin32.la +@OS_WIN32_TRUE@am__append_32 = gedit/gedit-res.o + +# X11 convenience library +@GDK_WINDOWING_X11_TRUE@am__append_33 = gedit/libx11.la +@GDK_WINDOWING_X11_TRUE@am__append_34 = gedit/libx11.la +@HAVE_INTROSPECTION_TRUE@am__append_35 = \ +@HAVE_INTROSPECTION_TRUE@ $(gedit_gir_DATA) \ +@HAVE_INTROSPECTION_TRUE@ $(gedit_typelib_DATA) + +@ENABLE_VAPIGEN_TRUE@am__append_36 = $(VAPIGEN_VAPIS) gedit/gedit.deps gedit/gedit.deps +subdir = . +ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 +am__aclocal_m4_deps = $(top_srcdir)/libgd/libgd.m4 \ + $(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/gsettings.m4 \ + $(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/iconv.m4 \ + $(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intltool.m4 \ + $(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \ + $(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libtool.m4 \ + $(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \ + $(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \ + $(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \ + $(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/vapigen.m4 \ + $(top_srcdir)/configure.ac +am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ + $(ACLOCAL_M4) +DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ + $(am__configure_deps) $(dist_data_bugreport_SCRIPTS) \ + $(am__externaltools_PYTHON_DIST) \ + $(am__gedit_overrides_PYTHON_DIST) \ + $(am__plugins_pythonconsole_PYTHON_DIST) \ + $(am__plugins_quickopen_PYTHON_DIST) \ + $(am__plugins_snippets_PYTHON_DIST) $(dist_data_convert_DATA) \ + $(am__dist_externaltools_ui_DATA_DIST) \ + $(am__dist_gsettingsschema_DATA_DIST) \ + $(dist_plugins_modelines_DATA) \ + $(am__dist_plugins_pythonconsole_ui_DATA_DIST) \ + $(am__dist_plugins_snippets_lang_DATA_DIST) \ + $(am__dist_plugins_snippets_snippets_DATA_DIST) \ + $(am__dist_plugins_snippets_ui_DATA_DIST) \ + $(gedit_header_HEADERS) $(am__DIST_COMMON) +am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ + configure.lineno config.status.lineno +mkinstalldirs = $(install_sh) -d +CONFIG_HEADER = config.h +CONFIG_CLEAN_FILES = gedit/resources/gedit.gresource.xml \ + data/org.gnome.gedit.desktop.in data/gedit.pc \ + data/org.gnome.gedit.gschema.xml \ + plugins/checkupdate/org.gnome.gedit.plugins.checkupdate.gschema.xml \ + plugins/externaltools/org.gnome.gedit.plugins.externaltools.gschema.xml \ + plugins/filebrowser/org.gnome.gedit.plugins.filebrowser.gschema.xml \ + plugins/pythonconsole/org.gnome.gedit.plugins.pythonconsole.gschema.xml \ + plugins/time/org.gnome.gedit.plugins.time.gschema.xml \ + osx/bundle/data/Info.plist \ + gedit/resources/css/gedit-style-os.css +CONFIG_CLEAN_VPATH_FILES = +am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(pkglibdir)" \ + "$(DESTDIR)$(plugindir)" "$(DESTDIR)$(data_bugreportdir)" \ + "$(DESTDIR)$(externaltools_toolsdir)" \ + "$(DESTDIR)$(externaltoolsdir)" \ + "$(DESTDIR)$(gedit_overridesdir)" \ + "$(DESTDIR)$(plugins_pythonconsoledir)" \ + "$(DESTDIR)$(plugins_quickopendir)" \ + "$(DESTDIR)$(plugins_snippetsdir)" "$(DESTDIR)$(man1dir)" \ + "$(DESTDIR)$(data_appdatadir)" "$(DESTDIR)$(data_desktopdir)" \ + "$(DESTDIR)$(data_pkgconfigdir)" \ + "$(DESTDIR)$(data_servicedir)" "$(DESTDIR)$(data_convertdir)" \ + "$(DESTDIR)$(externaltools_uidir)" \ + "$(DESTDIR)$(gsettingsschemadir)" \ + "$(DESTDIR)$(plugins_modelinesdir)" \ + "$(DESTDIR)$(plugins_pythonconsole_uidir)" \ + "$(DESTDIR)$(plugins_snippets_langdir)" \ + "$(DESTDIR)$(plugins_snippets_snippetsdir)" \ + "$(DESTDIR)$(plugins_snippets_uidir)" \ + "$(DESTDIR)$(gedit_girdir)" "$(DESTDIR)$(gedit_typelibdir)" \ + "$(DESTDIR)$(icon16dir)" "$(DESTDIR)$(icon22dir)" \ + "$(DESTDIR)$(icon24dir)" "$(DESTDIR)$(icon256dir)" \ + "$(DESTDIR)$(icon32dir)" "$(DESTDIR)$(icon48dir)" \ + "$(DESTDIR)$(iconsymbolicdir)" "$(DESTDIR)$(plugindir)" \ + "$(DESTDIR)$(vapidir)" "$(DESTDIR)$(gedit_headerdir)" +PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) +am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; +am__vpath_adj = case $$p in \ + $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ + *) f=$$p;; \ + esac; +am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; +am__install_max = 40 +am__nobase_strip_setup = \ + srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` +am__nobase_strip = \ + for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" +am__nobase_list = $(am__nobase_strip_setup); \ + for p in $$list; do echo "$$p $$p"; done | \ + sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ + $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ + if (++n[$$2] == $(am__install_max)) \ + { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ + END { for (dir in files) print dir, files[dir] }' +am__base_list = \ + sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ + sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' +am__uninstall_files_from_dir = { \ + test -z "$$files" \ + || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ + || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ + $(am__cd) "$$dir" && rm -f $$files; }; \ + } +LTLIBRARIES = $(noinst_LTLIBRARIES) $(pkglib_LTLIBRARIES) \ + $(plugin_LTLIBRARIES) +am__DEPENDENCIES_1 = +gedit_libgedit_la_DEPENDENCIES = $(top_builddir)/libgd/libgd.la \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) $(am__append_28) \ + $(am__append_31) $(am__append_34) +am__dirstamp = $(am__leading_dot)dirstamp +am__objects_1 = gedit/libgedit_la-gedit-enum-types.lo +am__objects_2 = gedit/libgedit_la-gedit-app-activatable.lo \ + gedit/libgedit_la-gedit-app.lo \ + gedit/libgedit_la-gedit-close-confirmation-dialog.lo \ + gedit/libgedit_la-gedit-commands-documents.lo \ + gedit/libgedit_la-gedit-commands-edit.lo \ + gedit/libgedit_la-gedit-commands-file.lo \ + gedit/libgedit_la-gedit-commands-file-print.lo \ + gedit/libgedit_la-gedit-commands-help.lo \ + gedit/libgedit_la-gedit-commands-search.lo \ + gedit/libgedit_la-gedit-commands-view.lo \ + gedit/libgedit_la-gedit-debug.lo \ + gedit/libgedit_la-gedit-dirs.lo \ + gedit/libgedit_la-gedit-document.lo \ + gedit/libgedit_la-gedit-documents-panel.lo \ + gedit/libgedit_la-gedit-encoding-items.lo \ + gedit/libgedit_la-gedit-encodings-combo-box.lo \ + gedit/libgedit_la-gedit-encodings-dialog.lo \ + gedit/libgedit_la-gedit-file-chooser-dialog.lo \ + gedit/libgedit_la-gedit-file-chooser-dialog-gtk.lo \ + gedit/libgedit_la-gedit-highlight-mode-dialog.lo \ + gedit/libgedit_la-gedit-highlight-mode-selector.lo \ + gedit/libgedit_la-gedit-history-entry.lo \ + gedit/libgedit_la-gedit-io-error-info-bar.lo \ + gedit/libgedit_la-gedit-menu-extension.lo \ + gedit/libgedit_la-gedit-menu-stack-switcher.lo \ + gedit/libgedit_la-gedit-message-bus.lo \ + gedit/libgedit_la-gedit-message.lo \ + gedit/libgedit_la-gedit-metadata-manager.lo \ + gedit/libgedit_la-gedit-multi-notebook.lo \ + gedit/libgedit_la-gedit-notebook.lo \ + gedit/libgedit_la-gedit-notebook-popup-menu.lo \ + gedit/libgedit_la-gedit-notebook-stack-switcher.lo \ + gedit/libgedit_la-gedit-open-document-selector.lo \ + gedit/libgedit_la-gedit-open-document-selector-helper.lo \ + gedit/libgedit_la-gedit-open-document-selector-store.lo \ + gedit/libgedit_la-gedit-plugins-engine.lo \ + gedit/libgedit_la-gedit-preferences-dialog.lo \ + gedit/libgedit_la-gedit-print-job.lo \ + gedit/libgedit_la-gedit-print-preview.lo \ + gedit/libgedit_la-gedit-progress-info-bar.lo \ + gedit/libgedit_la-gedit-recent.lo \ + gedit/libgedit_la-gedit-replace-dialog.lo \ + gedit/libgedit_la-gedit-resources.lo \ + gedit/libgedit_la-gedit-settings.lo \ + gedit/libgedit_la-gedit-statusbar.lo \ + gedit/libgedit_la-gedit-status-menu-button.lo \ + gedit/libgedit_la-gedit-tab.lo \ + gedit/libgedit_la-gedit-tab-label.lo \ + gedit/libgedit_la-gedit-utils.lo \ + gedit/libgedit_la-gedit-view-activatable.lo \ + gedit/libgedit_la-gedit-view.lo \ + gedit/libgedit_la-gedit-view-centering.lo \ + gedit/libgedit_la-gedit-view-frame.lo \ + gedit/libgedit_la-gedit-window-activatable.lo \ + gedit/libgedit_la-gedit-window.lo +am__objects_3 = +am_gedit_libgedit_la_OBJECTS = $(am__objects_1) $(am__objects_2) \ + $(am__objects_3) $(am__objects_3) +gedit_libgedit_la_OBJECTS = $(am_gedit_libgedit_la_OBJECTS) +AM_V_lt = $(am__v_lt_@AM_V@) +am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) +am__v_lt_0 = --silent +am__v_lt_1 = +gedit_libgedit_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(gedit_libgedit_la_CFLAGS) $(CFLAGS) \ + $(gedit_libgedit_la_LDFLAGS) $(LDFLAGS) -o $@ +gedit_libosx_la_DEPENDENCIES = +am__gedit_libosx_la_SOURCES_DIST = gedit/gedit-app-osx.c \ + gedit/gedit-app-osx.h gedit/gedit-file-chooser-dialog-osx.c \ + gedit/gedit-file-chooser-dialog-osx.h +@OS_OSX_TRUE@am_gedit_libosx_la_OBJECTS = \ +@OS_OSX_TRUE@ gedit/libosx_la-gedit-app-osx.lo \ +@OS_OSX_TRUE@ gedit/libosx_la-gedit-file-chooser-dialog-osx.lo +gedit_libosx_la_OBJECTS = $(am_gedit_libosx_la_OBJECTS) +gedit_libosx_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(gedit_libosx_la_CFLAGS) $(CFLAGS) $(gedit_libosx_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +@OS_OSX_TRUE@am_gedit_libosx_la_rpath = +gedit_libwin32_la_LIBADD = +am__gedit_libwin32_la_SOURCES_DIST = gedit/gedit-app-win32.c \ + gedit/gedit-app-win32.h +@OS_WIN32_TRUE@am_gedit_libwin32_la_OBJECTS = \ +@OS_WIN32_TRUE@ gedit/libwin32_la-gedit-app-win32.lo +gedit_libwin32_la_OBJECTS = $(am_gedit_libwin32_la_OBJECTS) +gedit_libwin32_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(gedit_libwin32_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +@OS_WIN32_TRUE@am_gedit_libwin32_la_rpath = +gedit_libx11_la_LIBADD = +am__gedit_libx11_la_SOURCES_DIST = gedit/gedit-app-x11.c \ + gedit/gedit-app-x11.h +@GDK_WINDOWING_X11_TRUE@am_gedit_libx11_la_OBJECTS = \ +@GDK_WINDOWING_X11_TRUE@ gedit/libx11_la-gedit-app-x11.lo +gedit_libx11_la_OBJECTS = $(am_gedit_libx11_la_OBJECTS) +gedit_libx11_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(gedit_libx11_la_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ + -o $@ +@GDK_WINDOWING_X11_TRUE@am_gedit_libx11_la_rpath = +@ENABLE_UPDATER_TRUE@plugins_checkupdate_libcheckupdate_la_DEPENDENCIES = \ +@ENABLE_UPDATER_TRUE@ $(top_builddir)/gedit/libgedit.la \ +@ENABLE_UPDATER_TRUE@ $(am__DEPENDENCIES_1) \ +@ENABLE_UPDATER_TRUE@ $(am__DEPENDENCIES_1) +am__plugins_checkupdate_libcheckupdate_la_SOURCES_DIST = \ + plugins/checkupdate/gedit-check-update-plugin.h \ + plugins/checkupdate/gedit-check-update-plugin.c +@ENABLE_UPDATER_TRUE@am_plugins_checkupdate_libcheckupdate_la_OBJECTS = plugins/checkupdate/libcheckupdate_la-gedit-check-update-plugin.lo +plugins_checkupdate_libcheckupdate_la_OBJECTS = \ + $(am_plugins_checkupdate_libcheckupdate_la_OBJECTS) +plugins_checkupdate_libcheckupdate_la_LINK = $(LIBTOOL) $(AM_V_lt) \ + --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ + $(CCLD) $(plugins_checkupdate_libcheckupdate_la_CFLAGS) \ + $(CFLAGS) $(plugins_checkupdate_libcheckupdate_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +@ENABLE_UPDATER_TRUE@am_plugins_checkupdate_libcheckupdate_la_rpath = \ +@ENABLE_UPDATER_TRUE@ -rpath $(plugindir) +plugins_docinfo_libdocinfo_la_DEPENDENCIES = \ + $(top_builddir)/gedit/libgedit.la $(am__DEPENDENCIES_1) +am_plugins_docinfo_libdocinfo_la_OBJECTS = \ + plugins/docinfo/libdocinfo_la-gedit-docinfo-plugin.lo \ + plugins/docinfo/libdocinfo_la-gedit-docinfo-resources.lo +plugins_docinfo_libdocinfo_la_OBJECTS = \ + $(am_plugins_docinfo_libdocinfo_la_OBJECTS) +plugins_docinfo_libdocinfo_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(plugins_docinfo_libdocinfo_la_CFLAGS) $(CFLAGS) \ + $(plugins_docinfo_libdocinfo_la_LDFLAGS) $(LDFLAGS) -o $@ +plugins_filebrowser_libfilebrowser_la_DEPENDENCIES = \ + $(top_builddir)/gedit/libgedit.la $(am__DEPENDENCIES_1) +am__objects_4 = plugins/filebrowser/libfilebrowser_la-gedit-file-browser-enum-types.lo \ + plugins/filebrowser/libfilebrowser_la-gedit-file-browser-resources.lo +am__objects_5 = plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-activation.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-add-filter.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-extend-context-menu.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-get-root.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-get-view.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-id.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-id-location.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-set-emblem.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-set-markup.lo \ + plugins/filebrowser/messages/libfilebrowser_la-gedit-file-browser-message-set-root.lo +am__objects_6 = $(am__objects_3) +am_plugins_filebrowser_libfilebrowser_la_OBJECTS = $(am__objects_4) \ + plugins/filebrowser/libfilebrowser_la-gedit-file-bookmarks-store.lo \ + plugins/filebrowser/libfilebrowser_la-gedit-file-browser-store.lo \ + plugins/filebrowser/libfilebrowser_la-gedit-file-browser-view.lo \ + plugins/filebrowser/libfilebrowser_la-gedit-file-browser-widget.lo \ + plugins/filebrowser/libfilebrowser_la-gedit-file-browser-utils.lo \ + plugins/filebrowser/libfilebrowser_la-gedit-file-browser-plugin.lo \ + plugins/filebrowser/libfilebrowser_la-gedit-file-browser-messages.lo \ + $(am__objects_5) $(am__objects_6) +plugins_filebrowser_libfilebrowser_la_OBJECTS = \ + $(am_plugins_filebrowser_libfilebrowser_la_OBJECTS) +plugins_filebrowser_libfilebrowser_la_LINK = $(LIBTOOL) $(AM_V_lt) \ + --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ + $(CCLD) $(plugins_filebrowser_libfilebrowser_la_CFLAGS) \ + $(CFLAGS) $(plugins_filebrowser_libfilebrowser_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +plugins_modelines_libmodelines_la_DEPENDENCIES = \ + $(top_builddir)/gedit/libgedit.la $(am__DEPENDENCIES_1) +am_plugins_modelines_libmodelines_la_OBJECTS = \ + plugins/modelines/libmodelines_la-gedit-modeline-plugin.lo \ + plugins/modelines/libmodelines_la-modeline-parser.lo +plugins_modelines_libmodelines_la_OBJECTS = \ + $(am_plugins_modelines_libmodelines_la_OBJECTS) +plugins_modelines_libmodelines_la_LINK = $(LIBTOOL) $(AM_V_lt) \ + --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \ + $(CCLD) $(plugins_modelines_libmodelines_la_CFLAGS) $(CFLAGS) \ + $(plugins_modelines_libmodelines_la_LDFLAGS) $(LDFLAGS) -o $@ +plugins_quickhighlight_libquickhighlight_la_DEPENDENCIES = \ + $(top_builddir)/gedit/libgedit.la $(am__DEPENDENCIES_1) +am_plugins_quickhighlight_libquickhighlight_la_OBJECTS = plugins/quickhighlight/libquickhighlight_la-gedit-quick-highlight-plugin.lo +plugins_quickhighlight_libquickhighlight_la_OBJECTS = \ + $(am_plugins_quickhighlight_libquickhighlight_la_OBJECTS) +plugins_quickhighlight_libquickhighlight_la_LINK = $(LIBTOOL) \ + $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ + --mode=link $(CCLD) \ + $(plugins_quickhighlight_libquickhighlight_la_CFLAGS) \ + $(CFLAGS) \ + $(plugins_quickhighlight_libquickhighlight_la_LDFLAGS) \ + $(LDFLAGS) -o $@ +plugins_sort_libsort_la_DEPENDENCIES = \ + $(top_builddir)/gedit/libgedit.la $(am__DEPENDENCIES_1) +am_plugins_sort_libsort_la_OBJECTS = \ + plugins/sort/libsort_la-gedit-sort-plugin.lo \ + plugins/sort/libsort_la-gedit-sort-resources.lo +plugins_sort_libsort_la_OBJECTS = \ + $(am_plugins_sort_libsort_la_OBJECTS) +plugins_sort_libsort_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(plugins_sort_libsort_la_CFLAGS) $(CFLAGS) \ + $(plugins_sort_libsort_la_LDFLAGS) $(LDFLAGS) -o $@ +@ENABLE_SPELL_TRUE@plugins_spell_libspell_la_DEPENDENCIES = \ +@ENABLE_SPELL_TRUE@ $(top_builddir)/gedit/libgedit.la \ +@ENABLE_SPELL_TRUE@ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) +am__plugins_spell_libspell_la_SOURCES_DIST = \ + plugins/spell/gedit-spell-plugin.c \ + plugins/spell/gedit-spell-plugin.h \ + plugins/spell/gedit-spell-app-activatable.c \ + plugins/spell/gedit-spell-app-activatable.h +@ENABLE_SPELL_TRUE@am_plugins_spell_libspell_la_OBJECTS = plugins/spell/libspell_la-gedit-spell-plugin.lo \ +@ENABLE_SPELL_TRUE@ plugins/spell/libspell_la-gedit-spell-app-activatable.lo +plugins_spell_libspell_la_OBJECTS = \ + $(am_plugins_spell_libspell_la_OBJECTS) +plugins_spell_libspell_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(plugins_spell_libspell_la_CFLAGS) $(CFLAGS) \ + $(plugins_spell_libspell_la_LDFLAGS) $(LDFLAGS) -o $@ +@ENABLE_SPELL_TRUE@am_plugins_spell_libspell_la_rpath = -rpath \ +@ENABLE_SPELL_TRUE@ $(plugindir) +plugins_time_libtime_la_DEPENDENCIES = \ + $(top_builddir)/gedit/libgedit.la $(am__DEPENDENCIES_1) +am_plugins_time_libtime_la_OBJECTS = \ + plugins/time/libtime_la-gedit-time-plugin.lo \ + plugins/time/libtime_la-gedit-time-resources.lo +plugins_time_libtime_la_OBJECTS = \ + $(am_plugins_time_libtime_la_OBJECTS) +plugins_time_libtime_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \ + $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \ + $(plugins_time_libtime_la_CFLAGS) $(CFLAGS) \ + $(plugins_time_libtime_la_LDFLAGS) $(LDFLAGS) -o $@ +am_gedit_gedit_OBJECTS = gedit/gedit-gedit.$(OBJEXT) +gedit_gedit_OBJECTS = $(am_gedit_gedit_OBJECTS) +gedit_gedit_DEPENDENCIES = gedit/libgedit.la $(am__DEPENDENCIES_1) \ + $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) $(am__append_32) +gedit_gedit_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(gedit_gedit_CFLAGS) \ + $(CFLAGS) $(gedit_gedit_LDFLAGS) $(LDFLAGS) -o $@ +SCRIPTS = $(dist_data_bugreport_SCRIPTS) \ + $(externaltools_tools_SCRIPTS) +AM_V_P = $(am__v_P_@AM_V@) +am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) +am__v_P_0 = false +am__v_P_1 = : +AM_V_GEN = $(am__v_GEN_@AM_V@) +am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) +am__v_GEN_0 = @echo " GEN " $@; +am__v_GEN_1 = +AM_V_at = $(am__v_at_@AM_V@) +am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) +am__v_at_0 = @ +am__v_at_1 = +DEFAULT_INCLUDES = -I.@am__isrc@ +depcomp = $(SHELL) $(top_srcdir)/depcomp +am__maybe_remake_depfiles = depfiles +am__depfiles_remade = gedit/$(DEPDIR)/gedit-gedit.Po \ + gedit/$(DEPDIR)/libgedit_la-gedit-app-activatable.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-app.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-close-confirmation-dialog.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-commands-documents.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-commands-edit.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-commands-file-print.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-commands-file.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-commands-help.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-commands-search.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-commands-view.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-debug.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-dirs.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-document.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-documents-panel.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-encoding-items.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-encodings-combo-box.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-encodings-dialog.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-enum-types.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-file-chooser-dialog-gtk.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-file-chooser-dialog.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-highlight-mode-dialog.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-highlight-mode-selector.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-history-entry.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-io-error-info-bar.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-menu-extension.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-menu-stack-switcher.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-message-bus.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-message.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-metadata-manager.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-multi-notebook.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-notebook-popup-menu.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-notebook-stack-switcher.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-notebook.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-open-document-selector-helper.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-open-document-selector-store.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-open-document-selector.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-plugins-engine.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-preferences-dialog.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-print-job.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-print-preview.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-progress-info-bar.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-recent.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-replace-dialog.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-resources.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-settings.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-status-menu-button.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-statusbar.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-tab-label.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-tab.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-utils.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-view-activatable.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-view-centering.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-view-frame.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-view.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-window-activatable.Plo \ + gedit/$(DEPDIR)/libgedit_la-gedit-window.Plo \ + gedit/$(DEPDIR)/libosx_la-gedit-app-osx.Plo \ + gedit/$(DEPDIR)/libosx_la-gedit-file-chooser-dialog-osx.Plo \ + gedit/$(DEPDIR)/libwin32_la-gedit-app-win32.Plo \ + gedit/$(DEPDIR)/libx11_la-gedit-app-x11.Plo \ + plugins/checkupdate/$(DEPDIR)/libcheckupdate_la-gedit-check-update-plugin.Plo \ + plugins/docinfo/$(DEPDIR)/libdocinfo_la-gedit-docinfo-plugin.Plo \ + plugins/docinfo/$(DEPDIR)/libdocinfo_la-gedit-docinfo-resources.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-bookmarks-store.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-enum-types.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-messages.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-plugin.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-resources.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-store.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-utils.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-view.Plo \ + plugins/filebrowser/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-widget.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-activation.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-add-filter.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-extend-context-menu.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-get-root.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-get-view.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-id-location.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-id.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-set-emblem.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-set-markup.Plo \ + plugins/filebrowser/messages/$(DEPDIR)/libfilebrowser_la-gedit-file-browser-message-set-root.Plo \ + plugins/modelines/$(DEPDIR)/libmodelines_la-gedit-modeline-plugin.Plo \ + plugins/modelines/$(DEPDIR)/libmodelines_la-modeline-parser.Plo \ + plugins/quickhighlight/$(DEPDIR)/libquickhighlight_la-gedit-quick-highlight-plugin.Plo \ + plugins/sort/$(DEPDIR)/libsort_la-gedit-sort-plugin.Plo \ + plugins/sort/$(DEPDIR)/libsort_la-gedit-sort-resources.Plo \ + plugins/spell/$(DEPDIR)/libspell_la-gedit-spell-app-activatable.Plo \ + plugins/spell/$(DEPDIR)/libspell_la-gedit-spell-plugin.Plo \ + plugins/time/$(DEPDIR)/libtime_la-gedit-time-plugin.Plo \ + plugins/time/$(DEPDIR)/libtime_la-gedit-time-resources.Plo +am__mv = mv -f +COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ + $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) +LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ + $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ + $(AM_CFLAGS) $(CFLAGS) +AM_V_CC = $(am__v_CC_@AM_V@) +am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) +am__v_CC_0 = @echo " CC " $@; +am__v_CC_1 = +CCLD = $(CC) +LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ + $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ + $(AM_LDFLAGS) $(LDFLAGS) -o $@ +AM_V_CCLD = $(am__v_CCLD_@AM_V@) +am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) +am__v_CCLD_0 = @echo " CCLD " $@; +am__v_CCLD_1 = +SOURCES = $(gedit_libgedit_la_SOURCES) $(gedit_libosx_la_SOURCES) \ + $(gedit_libwin32_la_SOURCES) $(gedit_libx11_la_SOURCES) \ + $(plugins_checkupdate_libcheckupdate_la_SOURCES) \ + $(plugins_docinfo_libdocinfo_la_SOURCES) \ + $(plugins_filebrowser_libfilebrowser_la_SOURCES) \ + $(plugins_modelines_libmodelines_la_SOURCES) \ + $(plugins_quickhighlight_libquickhighlight_la_SOURCES) \ + $(plugins_sort_libsort_la_SOURCES) \ + $(plugins_spell_libspell_la_SOURCES) \ + $(plugins_time_libtime_la_SOURCES) $(gedit_gedit_SOURCES) +DIST_SOURCES = $(gedit_libgedit_la_SOURCES) \ + $(am__gedit_libosx_la_SOURCES_DIST) \ + $(am__gedit_libwin32_la_SOURCES_DIST) \ + $(am__gedit_libx11_la_SOURCES_DIST) \ + $(am__plugins_checkupdate_libcheckupdate_la_SOURCES_DIST) \ + $(plugins_docinfo_libdocinfo_la_SOURCES) \ + $(plugins_filebrowser_libfilebrowser_la_SOURCES) \ + $(plugins_modelines_libmodelines_la_SOURCES) \ + $(plugins_quickhighlight_libquickhighlight_la_SOURCES) \ + $(plugins_sort_libsort_la_SOURCES) \ + $(am__plugins_spell_libspell_la_SOURCES_DIST) \ + $(plugins_time_libtime_la_SOURCES) $(gedit_gedit_SOURCES) +RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ + ctags-recursive dvi-recursive html-recursive info-recursive \ + install-data-recursive install-dvi-recursive \ + install-exec-recursive install-html-recursive \ + install-info-recursive install-pdf-recursive \ + install-ps-recursive install-recursive installcheck-recursive \ + installdirs-recursive pdf-recursive ps-recursive \ + tags-recursive uninstall-recursive +am__can_run_installinfo = \ + case $$AM_UPDATE_INFO_DIR in \ + n|no|NO) false;; \ + *) (install-info --version) >/dev/null 2>&1;; \ + esac +am__externaltools_PYTHON_DIST = \ + plugins/externaltools/tools/__init__.py \ + plugins/externaltools/tools/capture.py \ + plugins/externaltools/tools/library.py \ + plugins/externaltools/tools/functions.py \ + plugins/externaltools/tools/manager.py \ + plugins/externaltools/tools/outputpanel.py \ + plugins/externaltools/tools/filelookup.py \ + plugins/externaltools/tools/linkparsing.py \ + plugins/externaltools/tools/appactivatable.py \ + plugins/externaltools/tools/windowactivatable.py +am__py_compile = PYTHON=$(PYTHON) $(SHELL) $(py_compile) +am__pep3147_tweak = \ + sed -e 's|\.py$$||' -e 's|[^/]*$$|&.*.pyc\n&.*.pyo|' +am__gedit_overrides_PYTHON_DIST = gedit/Gedit.py +am__plugins_pythonconsole_PYTHON_DIST = \ + plugins/pythonconsole/pythonconsole/__init__.py \ + plugins/pythonconsole/pythonconsole/console.py \ + plugins/pythonconsole/pythonconsole/config.py +am__plugins_quickopen_PYTHON_DIST = \ + plugins/quickopen/quickopen/__init__.py \ + plugins/quickopen/quickopen/popup.py \ + plugins/quickopen/quickopen/virtualdirs.py +am__plugins_snippets_PYTHON_DIST = \ + plugins/snippets/snippets/__init__.py \ + plugins/snippets/snippets/appactivatable.py \ + plugins/snippets/snippets/windowactivatable.py \ + plugins/snippets/snippets/document.py \ + plugins/snippets/snippets/library.py \ + plugins/snippets/snippets/snippet.py \ + plugins/snippets/snippets/parser.py \ + plugins/snippets/snippets/placeholder.py \ + plugins/snippets/snippets/manager.py \ + plugins/snippets/snippets/helper.py \ + plugins/snippets/snippets/singleton.py \ + plugins/snippets/snippets/shareddata.py \ + plugins/snippets/snippets/substitutionparser.py \ + plugins/snippets/snippets/importer.py \ + plugins/snippets/snippets/exporter.py \ + plugins/snippets/snippets/languagemanager.py \ + plugins/snippets/snippets/completion.py \ + plugins/snippets/snippets/signals.py +py_compile = $(top_srcdir)/py-compile +man1dir = $(mandir)/man1 +NROFF = nroff +MANS = $(dist_man_MANS) +am__dist_externaltools_ui_DATA_DIST = \ + plugins/externaltools/tools/tools.ui \ + plugins/externaltools/tools/outputpanel.ui +am__dist_gsettingsschema_DATA_DIST = data/gedit-osx.gschema.override +am__dist_plugins_pythonconsole_ui_DATA_DIST = \ + plugins/pythonconsole/pythonconsole/config.ui +am__dist_plugins_snippets_lang_DATA_DIST = \ + plugins/snippets/data/lang/snippets.lang +am__dist_plugins_snippets_snippets_DATA_DIST = \ + plugins/snippets/data/chdr.xml plugins/snippets/data/cpp.xml \ + plugins/snippets/data/css.xml plugins/snippets/data/c.xml \ + plugins/snippets/data/docbook.xml \ + plugins/snippets/data/fortran.xml \ + plugins/snippets/data/global.xml \ + plugins/snippets/data/haskell.xml \ + plugins/snippets/data/html.xml plugins/snippets/data/idl.xml \ + plugins/snippets/data/javascript.xml \ + plugins/snippets/data/java.xml plugins/snippets/data/latex.xml \ + plugins/snippets/data/mallard.xml \ + plugins/snippets/data/markdown.xml \ + plugins/snippets/data/perl.xml plugins/snippets/data/php.xml \ + plugins/snippets/data/python.xml \ + plugins/snippets/data/rpmspec.xml \ + plugins/snippets/data/ruby.xml plugins/snippets/data/sh.xml \ + plugins/snippets/data/snippets.xml \ + plugins/snippets/data/tcl.xml plugins/snippets/data/xml.xml \ + plugins/snippets/data/xslt.xml +am__dist_plugins_snippets_ui_DATA_DIST = \ + plugins/snippets/snippets/snippets.ui +DATA = $(data_appdata_DATA) $(data_desktop_DATA) \ + $(data_pkgconfig_DATA) $(data_service_DATA) \ + $(dist_data_convert_DATA) $(dist_externaltools_ui_DATA) \ + $(dist_gsettingsschema_DATA) $(dist_plugins_modelines_DATA) \ + $(dist_plugins_pythonconsole_ui_DATA) \ + $(dist_plugins_snippets_lang_DATA) \ + $(dist_plugins_snippets_snippets_DATA) \ + $(dist_plugins_snippets_ui_DATA) $(gedit_gir_DATA) \ + $(gedit_typelib_DATA) $(icon16_DATA) $(icon22_DATA) \ + $(icon24_DATA) $(icon256_DATA) $(icon32_DATA) $(icon48_DATA) \ + $(iconsymbolic_DATA) $(plugin_DATA) $(vapi_DATA) +HEADERS = $(gedit_header_HEADERS) +RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ + distclean-recursive maintainer-clean-recursive +am__recursive_targets = \ + $(RECURSIVE_TARGETS) \ + $(RECURSIVE_CLEAN_TARGETS) \ + $(am__extra_recursive_targets) +AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ + cscope distdir distdir-am dist dist-all distcheck +am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) \ + $(LISP)config.h.in +# Read a list of newline-separated strings from the standard input, +# and print each of them once, without duplicates. Input order is +# *not* preserved. +am__uniquify_input = $(AWK) '\ + BEGIN { nonempty = 0; } \ + { items[$$0] = 1; nonempty = 1; } \ + END { if (nonempty) { for (i in items) print i; }; } \ +' +# Make sure the list of sources is unique. This is necessary because, +# e.g., the same source file might be shared among _SOURCES variables +# for different programs/libraries. +am__define_uniq_tagged_files = \ + list='$(am__tagged_files)'; \ + unique=`for i in $$list; do \ + if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ + done | $(am__uniquify_input)` +ETAGS = etags +CTAGS = ctags +CSCOPE = cscope +DIST_SUBDIRS = libgd . po docs help +am__DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.in \ + $(srcdir)/config.h.in $(srcdir)/data/Makefile.am \ + $(srcdir)/data/icons/Makefile.am $(srcdir)/gedit/Makefile.am \ + $(srcdir)/osx/bundle/data/Makefile.am \ + $(srcdir)/plugins/Makefile.am \ + $(srcdir)/plugins/checkupdate/Makefile.am \ + $(srcdir)/plugins/docinfo/Makefile.am \ + $(srcdir)/plugins/externaltools/Makefile.am \ + $(srcdir)/plugins/externaltools/data/Makefile.am \ + $(srcdir)/plugins/externaltools/tools/Makefile.am \ + $(srcdir)/plugins/filebrowser/Makefile.am \ + $(srcdir)/plugins/modelines/Makefile.am \ + $(srcdir)/plugins/pythonconsole/Makefile.am \ + $(srcdir)/plugins/quickhighlight/Makefile.am \ + $(srcdir)/plugins/quickopen/Makefile.am \ + $(srcdir)/plugins/snippets/Makefile.am \ + $(srcdir)/plugins/sort/Makefile.am \ + $(srcdir)/plugins/spell/Makefile.am \ + $(srcdir)/plugins/time/Makefile.am $(srcdir)/win32/Makefile.am \ + $(top_srcdir)/data/gedit.pc.in \ + $(top_srcdir)/data/org.gnome.gedit.desktop.in.in \ + $(top_srcdir)/data/org.gnome.gedit.gschema.xml.in \ + $(top_srcdir)/gedit/resources/gedit.gresource.xml.in \ + $(top_srcdir)/osx/bundle/data/Info.plist.in \ + $(top_srcdir)/plugins/checkupdate/org.gnome.gedit.plugins.checkupdate.gschema.xml.in \ + $(top_srcdir)/plugins/externaltools/org.gnome.gedit.plugins.externaltools.gschema.xml.in \ + $(top_srcdir)/plugins/filebrowser/org.gnome.gedit.plugins.filebrowser.gschema.xml.in \ + $(top_srcdir)/plugins/pythonconsole/org.gnome.gedit.plugins.pythonconsole.gschema.xml.in \ + $(top_srcdir)/plugins/time/org.gnome.gedit.plugins.time.gschema.xml.in \ + ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS README \ + compile config.guess config.rpath config.sub depcomp \ + install-sh ltmain.sh missing py-compile +DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) +distdir = $(PACKAGE)-$(VERSION) +top_distdir = $(distdir) +am__remove_distdir = \ + if test -d "$(distdir)"; then \ + find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ + && rm -rf "$(distdir)" \ + || { sleep 5 && rm -rf "$(distdir)"; }; \ + else :; fi +am__post_remove_distdir = $(am__remove_distdir) +am__relativize = \ + dir0=`pwd`; \ + sed_first='s,^\([^/]*\)/.*$$,\1,'; \ + sed_rest='s,^[^/]*/*,,'; \ + sed_last='s,^.*/\([^/]*\)$$,\1,'; \ + sed_butlast='s,/*[^/]*$$,,'; \ + while test -n "$$dir1"; do \ + first=`echo "$$dir1" | sed -e "$$sed_first"`; \ + if test "$$first" != "."; then \ + if test "$$first" = ".."; then \ + dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ + dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ + else \ + first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ + if test "$$first2" = "$$first"; then \ + dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ + else \ + dir2="../$$dir2"; \ + fi; \ + dir0="$$dir0"/"$$first"; \ + fi; \ + fi; \ + dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ + done; \ + reldir="$$dir2" +GZIP_ENV = --best +DIST_ARCHIVES = $(distdir).tar.xz +DIST_TARGETS = dist-xz +distuninstallcheck_listfiles = find . -type f -print +am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ + | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' +distcleancheck_listfiles = find . -type f -print +ACLOCAL = @ACLOCAL@ +ACTIVE_PLUGINS = @ACTIVE_PLUGINS@ +ALL_LINGUAS = @ALL_LINGUAS@ +AMTAR = @AMTAR@ +AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ +AR = @AR@ +AUTOCONF = @AUTOCONF@ +AUTOHEADER = @AUTOHEADER@ +AUTOMAKE = @AUTOMAKE@ +AWK = @AWK@ +CC = @CC@ +CCDEPMODE = @CCDEPMODE@ +CFLAGS = @CFLAGS@ +CPP = @CPP@ +CPPFLAGS = @CPPFLAGS@ +CYGPATH_W = @CYGPATH_W@ +DEFS = @DEFS@ +DEPDIR = @DEPDIR@ +DISABLE_DEPRECATED_CFLAGS = @DISABLE_DEPRECATED_CFLAGS@ +DLLTOOL = @DLLTOOL@ +DSYMUTIL = @DSYMUTIL@ +DUMPBIN = @DUMPBIN@ +ECHO_C = @ECHO_C@ +ECHO_N = @ECHO_N@ +ECHO_T = @ECHO_T@ +EGREP = @EGREP@ +EXEEXT = @EXEEXT@ +FGREP = @FGREP@ +FULL_LIBEXECDIR = @FULL_LIBEXECDIR@ +GEDIT_API_VERSION = @GEDIT_API_VERSION@ +GEDIT_CFLAGS = @GEDIT_CFLAGS@ +GEDIT_IMPLIB = @GEDIT_IMPLIB@ +GEDIT_LIBS = @GEDIT_LIBS@ +GEDIT_MAJOR_VERSION = @GEDIT_MAJOR_VERSION@ +GEDIT_MICRO_VERSION = @GEDIT_MICRO_VERSION@ +GEDIT_MINOR_VERSION = @GEDIT_MINOR_VERSION@ +GEDIT_PLUGINS_DATA_DIR = @GEDIT_PLUGINS_DATA_DIR@ +GEDIT_PLUGINS_LIBS_DIR = @GEDIT_PLUGINS_LIBS_DIR@ +GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@ +GETTEXT_PACKAGE = @GETTEXT_PACKAGE@ +GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@ +GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@ +GLIB_MKENUMS = @GLIB_MKENUMS@ +GMSGFMT = @GMSGFMT@ +GMSGFMT_015 = @GMSGFMT_015@ +GREP = @GREP@ +GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@ +GSPELL_CFLAGS = @GSPELL_CFLAGS@ +GSPELL_LIBS = @GSPELL_LIBS@ +GTKDOC_CHECK = @GTKDOC_CHECK@ +GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@ +GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@ +GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@ +GTKDOC_MKPDF = @GTKDOC_MKPDF@ +GTKDOC_REBASE = @GTKDOC_REBASE@ +GTK_MAC_CFLAGS = @GTK_MAC_CFLAGS@ +GTK_MAC_LIBS = @GTK_MAC_LIBS@ +HELP_DIR = @HELP_DIR@ +HTML_DIR = @HTML_DIR@ +INSTALL = @INSTALL@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ +INTLLIBS = @INTLLIBS@ +INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@ +INTLTOOL_MERGE = @INTLTOOL_MERGE@ +INTLTOOL_PERL = @INTLTOOL_PERL@ +INTLTOOL_UPDATE = @INTLTOOL_UPDATE@ +INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@ +INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@ +INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@ +INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@ +INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@ +INTROSPECTION_CFLAGS = @INTROSPECTION_CFLAGS@ +INTROSPECTION_COMPILER = @INTROSPECTION_COMPILER@ +INTROSPECTION_GENERATE = @INTROSPECTION_GENERATE@ +INTROSPECTION_GIRDIR = @INTROSPECTION_GIRDIR@ +INTROSPECTION_LIBS = @INTROSPECTION_LIBS@ +INTROSPECTION_MAKEFILE = @INTROSPECTION_MAKEFILE@ +INTROSPECTION_SCANNER = @INTROSPECTION_SCANNER@ +INTROSPECTION_TYPELIBDIR = @INTROSPECTION_TYPELIBDIR@ +ITSTOOL = @ITSTOOL@ +LD = @LD@ +LDFLAGS = @LDFLAGS@ +LIBGD_CFLAGS = @LIBGD_CFLAGS@ +LIBGD_GIR_INCLUDES = @LIBGD_GIR_INCLUDES@ +LIBGD_LIBS = @LIBGD_LIBS@ +LIBGD_MODULE_DIR = @LIBGD_MODULE_DIR@ +LIBGD_SOURCES = @LIBGD_SOURCES@ +LIBICONV = @LIBICONV@ +LIBINTL = @LIBINTL@ +LIBM = @LIBM@ +LIBOBJS = @LIBOBJS@ +LIBS = @LIBS@ +LIBSOUP_CFLAGS = @LIBSOUP_CFLAGS@ +LIBSOUP_LIBS = @LIBSOUP_LIBS@ +LIBTOOL = @LIBTOOL@ +LIPO = @LIPO@ +LN_S = @LN_S@ +LTLIBICONV = @LTLIBICONV@ +LTLIBINTL = @LTLIBINTL@ +LTLIBOBJS = @LTLIBOBJS@ +LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ +MAINT = @MAINT@ +MAKEINFO = @MAKEINFO@ +MANIFEST_TOOL = @MANIFEST_TOOL@ +MKDIR_P = @MKDIR_P@ +MSGFMT = @MSGFMT@ +MSGFMT_015 = @MSGFMT_015@ +MSGMERGE = @MSGMERGE@ +NM = @NM@ +NMEDIT = @NMEDIT@ +OBJC = @OBJC@ +OBJCDEPMODE = @OBJCDEPMODE@ +OBJCFLAGS = @OBJCFLAGS@ +OBJDUMP = @OBJDUMP@ +OBJEXT = @OBJEXT@ +OS_DEPENDENT_RESOURCE_FILES = @OS_DEPENDENT_RESOURCE_FILES@ +OTOOL = @OTOOL@ +OTOOL64 = @OTOOL64@ +PACKAGE = @PACKAGE@ +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_TARNAME = @PACKAGE_TARNAME@ +PACKAGE_URL = @PACKAGE_URL@ +PACKAGE_VERSION = @PACKAGE_VERSION@ +PATH_SEPARATOR = @PATH_SEPARATOR@ +PKG_CONFIG = @PKG_CONFIG@ +PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ +PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ +PLUGIN_LIBTOOL_FLAGS = @PLUGIN_LIBTOOL_FLAGS@ +POSUB = @POSUB@ +PYTHON = @PYTHON@ +PYTHON_CFLAGS = @PYTHON_CFLAGS@ +PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@ +PYTHON_LIBS = @PYTHON_LIBS@ +PYTHON_PLATFORM = @PYTHON_PLATFORM@ +PYTHON_PREFIX = @PYTHON_PREFIX@ +PYTHON_VERSION = @PYTHON_VERSION@ +RANLIB = @RANLIB@ +SED = @SED@ +SET_MAKE = @SET_MAKE@ +SHELL = @SHELL@ +STRIP = @STRIP@ +USE_NLS = @USE_NLS@ +VAPIGEN = @VAPIGEN@ +VAPIGEN_MAKEFILE = @VAPIGEN_MAKEFILE@ +VAPIGEN_VAPIDIR = @VAPIGEN_VAPIDIR@ +VERSION = @VERSION@ +WARN_CFLAGS = @WARN_CFLAGS@ +WINDRES = @WINDRES@ +X11_CFLAGS = @X11_CFLAGS@ +X11_LIBS = @X11_LIBS@ +XGETTEXT = @XGETTEXT@ +XGETTEXT_015 = @XGETTEXT_015@ +XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@ +XMLLINT = @XMLLINT@ +YELP_LC_DIST = @YELP_LC_DIST@ +YELP_LC_MEDIA_LINKS = @YELP_LC_MEDIA_LINKS@ +abs_builddir = @abs_builddir@ +abs_srcdir = @abs_srcdir@ +abs_top_builddir = @abs_top_builddir@ +abs_top_srcdir = @abs_top_srcdir@ +ac_ct_AR = @ac_ct_AR@ +ac_ct_CC = @ac_ct_CC@ +ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ +ac_ct_OBJC = @ac_ct_OBJC@ +am__include = @am__include@ +am__leading_dot = @am__leading_dot@ +am__quote = @am__quote@ +am__tar = @am__tar@ +am__untar = @am__untar@ +bindir = @bindir@ +build = @build@ +build_alias = @build_alias@ +build_cpu = @build_cpu@ +build_os = @build_os@ +build_vendor = @build_vendor@ +builddir = @builddir@ +datadir = @datadir@ +datarootdir = @datarootdir@ +docdir = @docdir@ +dvidir = @dvidir@ +exec_prefix = @exec_prefix@ +gsettingsschemadir = @gsettingsschemadir@ +host = @host@ +host_alias = @host_alias@ +host_cpu = @host_cpu@ +host_os = @host_os@ +host_vendor = @host_vendor@ +htmldir = @htmldir@ +includedir = @includedir@ +infodir = @infodir@ +install_sh = @install_sh@ +intltool__v_merge_options_ = @intltool__v_merge_options_@ +intltool__v_merge_options_0 = @intltool__v_merge_options_0@ +libdir = @libdir@ +libexecdir = @libexecdir@ +localedir = @localedir@ +localstatedir = @localstatedir@ +mandir = @mandir@ +mkdir_p = @mkdir_p@ +oldincludedir = @oldincludedir@ +pdfdir = @pdfdir@ +pkgpyexecdir = @pkgpyexecdir@ +pkgpythondir = @pkgpythondir@ +prefix = @prefix@ +program_transform_name = @program_transform_name@ +psdir = @psdir@ +pyexecdir = @pyexecdir@ +pyoverridesdir = @pyoverridesdir@ +pythondir = @pythondir@ +runstatedir = @runstatedir@ +sbindir = @sbindir@ +sharedstatedir = @sharedstatedir@ +srcdir = @srcdir@ +sysconfdir = @sysconfdir@ +target_alias = @target_alias@ +top_build_prefix = @top_build_prefix@ +top_builddir = @top_builddir@ +top_srcdir = @top_srcdir@ +ACLOCAL_AMFLAGS = -I m4 -I libgd ${ACLOCAL_FLAGS} +SUBDIRS = libgd . po docs $(am__append_1) + +# Stuff to build the Windows installer: +EXTRA_DIST = HACKING MAINTAINERS gedit.doap intltool-extract.in \ + intltool-merge.in intltool-update.in $(data_desktop_in_files) \ + $(data_appdata_in_files) $(data_service_in_files) \ + data/org.gnome.gedit.gschema.xml.in data/gedit.pc.in \ + $(icon_files) win32/make-gedit-installer \ + win32/make-gedit-installer.bat win32/README \ + win32/installer/COPYING.rtf win32/installer/defines.wxi \ + win32/installer/gedit.wxs win32/installer/WixUIBannerBmp.bmp \ + win32/installer/WixUIDialogBmp.bmp \ + osx/bundle/data/Info.plist.in $(docinfo_resources_deps) \ + $(am__append_11) $(filebrowser_resources_deps) \ + plugins/filebrowser/gedit-file-browser-enum-types.h.template \ + plugins/filebrowser/gedit-file-browser-enum-types.c.template \ + plugins/filebrowser/gedit-file-browser-enum-register.c.template \ + $(sort_resource_deps) $(time_resource_deps) $(plugin_in_files) \ + $(dist_plugin_in_files) \ + $(plugin_gsettings_SCHEMAS:%.gschema.xml=%.gschema.xml.in) \ + $(dist_plugin_gsettings_SCHEMAS:%.gschema.xml=%.gschema.xml.in) \ + gedit/gedit-enum-types.h.template \ + gedit/gedit-enum-types.c.template gedit/gedit.rc \ + gedit/Gedit-3.0.metadata \ + gedit/resources/gedit.gresource.xml.in \ + gedit/resources/pixmaps/gedit.ico $(gedit_dist_resource_deps) +DISTCLEANFILES = gnome-doc-utils.make intltool-extract intltool-merge \ + intltool-update $(data_desktop_DATA) $(data_service_DATA) \ + $(data_pkgconfig_DATA) $(GENERATED_PLUGIN_FILES) \ + $(gsettings_SCHEMAS) $(gsettings_ENUMS) $(BUILT_SOURCES) +MAINTAINERCLEANFILES = $(GITIGNORE_MAINTAINERCLEANFILES_TOPLEVEL) \ + $(GITIGNORE_MAINTAINERCLEANFILES_MAKEFILE_IN) \ + $(GITIGNORE_MAINTAINERCLEANFILES_M4_LIBTOOL) ABOUT-NLS INSTALL \ + config.rpath gtk-doc.make py-compile test-driver \ + m4/gnome-doc-utils.m4 m4/gtk-doc.m4 m4/intltool.m4 \ + m4/codeset.m4 m4/fcntl-o.m4 m4/gettext.m4 m4/glibc2.m4 \ + m4/glibc21.m4 m4/iconv.m4 m4/intdiv0.m4 m4/intl.m4 \ + m4/intldir.m4 m4/intlmacosx.m4 m4/intmax.m4 m4/inttypes-pri.m4 \ + m4/inttypes_h.m4 m4/lcmessage.m4 m4/lib-ld.m4 m4/lib-link.m4 \ + m4/lib-prefix.m4 m4/lock.m4 m4/longlong.m4 m4/nls.m4 m4/po.m4 \ + m4/printf-posix.m4 m4/progtest.m4 m4/size_max.m4 \ + m4/stdint_h.m4 m4/threadlib.m4 m4/uintmax_t.m4 \ + m4/visibility.m4 m4/wchar_t.m4 m4/wint_t.m4 m4/xsize.m4 \ + po/Makevars.template po/Rules-quot po/*.sed po/*.header \ + po/*.sin $(gsettings_SCHEMAS:.xml=.valid) +DISTCHECK_CONFIGURE_FLAGS = --enable-gtk-doc +GRESDEPS = $(srcdir)/$1 $(shell $(GLIB_COMPILE_RESOURCES) --generate-dependencies --sourcedir $(srcdir)/$(dir $1) $(srcdir)/$1) +GRESGEN = $(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) --target="$@" --sourcedir="$(dir $<)" --generate-source "$<" +noinst_LTLIBRARIES = $(am__append_27) $(am__append_30) \ + $(am__append_33) +pkglib_LTLIBRARIES = gedit/libgedit.la +gsettings_SCHEMAS = data/org.gnome.gedit.gschema.xml \ + $(plugin_gsettings_SCHEMAS) +gsettings_ENUMS = data/org.gnome.gedit.enums.xml \ + plugins/filebrowser/org.gnome.gedit.plugins.filebrowser.enums.xml \ + plugins/time/org.gnome.gedit.plugins.time.enums.xml +dist_gsettingsschema_DATA = $(am__append_2) +BUILT_SOURCES = plugins/docinfo/gedit-docinfo-resources.c \ + $(plugins_filebrowser_BUILTSOURCES) \ + plugins/sort/gedit-sort-resources.c \ + plugins/time/gedit-time-resources.c $(gedit_built_sources) \ + gedit/gedit-resources.c +CLEANFILES = $(data_appdata_DATA) $(data_desktop_DATA) \ + $(data_service_DATA) $(data_pkgconfig_DATA) $(am__append_12) \ + $(GENERATED_PLUGIN_FILES) $(am__append_35) $(am__append_36) \ + $(gsettings_SCHEMAS) $(gsettings_ENUMS) $(BUILT_SOURCES) +data_desktopdir = $(datadir)/applications +data_desktop_in_files = data/org.gnome.gedit.desktop.in +data_desktop_DATA = $(data_desktop_in_files:.desktop.in=.desktop) +data_appdatadir = $(datadir)/metainfo +data_appdata_in_files = data/org.gnome.gedit.appdata.xml.in +data_appdata_DATA = $(data_appdata_in_files:.xml.in=.xml) +data_servicedir = $(datadir)/dbus-1/services +data_service_in_files = data/org.gnome.gedit.service.in +data_service_DATA = $(data_service_in_files:.service.in=.service) +dist_man_MANS = data/gedit.1 +data_pkgconfigdir = $(libdir)/pkgconfig +data_pkgconfig_DATA = data/gedit.pc +data_bugreportdir = $(libexecdir)/gedit +dist_data_bugreport_SCRIPTS = data/gedit-bugreport.sh +data_convertdir = $(datadir)/GConf/gsettings +dist_data_convert_DATA = data/gedit.convert +icon16dir = $(datadir)/icons/hicolor/16x16/apps +icon16_DATA = data/icons/hicolor/16x16/apps/gedit.png +icon22dir = $(datadir)/icons/hicolor/22x22/apps +icon22_DATA = data/icons/hicolor/22x22/apps/gedit.png +icon24dir = $(datadir)/icons/hicolor/24x24/apps +icon24_DATA = data/icons/hicolor/24x24/apps/gedit.png +icon32dir = $(datadir)/icons/hicolor/32x32/apps +icon32_DATA = data/icons/hicolor/32x32/apps/gedit.png +icon48dir = $(datadir)/icons/hicolor/48x48/apps +icon48_DATA = data/icons/hicolor/48x48/apps/gedit.png +icon256dir = $(datadir)/icons/hicolor/256x256/apps +icon256_DATA = data/icons/hicolor/256x256/apps/gedit.png +iconsymbolicdir = $(datadir)/icons/hicolor/symbolic/apps +iconsymbolic_DATA = data/icons/hicolor/symbolic/apps/gedit-symbolic.svg +icon_files = \ + $(icon16_DATA) \ + $(icon22_DATA) \ + $(icon24_DATA) \ + $(icon32_DATA) \ + $(icon48_DATA) \ + $(icon256_DATA) \ + $(iconsymbolic_DATA) \ + data/icons/src/gedit.svg + +gtk_update_icon_cache = gtk-update-icon-cache -f -t $(datadir)/icons/hicolor +plugindir = $(GEDIT_PLUGINS_LIBS_DIR) +plugin_in_files = $(am__append_4) \ + plugins/docinfo/docinfo.plugin.desktop.in $(am__append_13) \ + plugins/filebrowser/filebrowser.plugin.desktop.in \ + plugins/modelines/modelines.plugin.desktop.in $(am__append_20) \ + plugins/quickhighlight/quickhighlight.plugin.desktop.in \ + $(am__append_23) plugins/sort/sort.plugin.desktop.in \ + $(am__append_25) plugins/time/time.plugin.desktop.in +dist_plugin_in_files = $(am__append_6) $(am__append_15) \ + $(am__append_17) $(am__append_22) $(am__append_26) +plugin_LTLIBRA |