aboutsummaryrefslogtreecommitdiff
path: root/devel/gettext
Commit message (Collapse)AuthorAgeFilesLines
* -Repocopy devel/libtool15 -> libtool22 and libltdl15 -> libltdl22.Jeremy Messenger2009-08-021-1/+1
| | | | | | | | | | | | | | | | | | | | | -Update libtool and libltdl to 2.2.6a. -Remove devel/libtool15 and devel/libltdl15. -Fix ports build with libtool22/libltdl22. -Bump ports that depend on libltdl22 due to shared library version change. -Explain what to do update in the UPDATING. It has been tested with GNOME2, XFCE4, KDE3, KDE4 and other many wm/desktop and applications in the runtime. With help: marcus and kwm Pointyhat-exp: a few times by pav Tested by: pgollucci, "Romain Tartière" <romain@blogreen.org>, and a few MarcusCom CVS users. Also, I might have missed a few. Repocopy by: marcus Approved by: portmgr Notes: svn path=/head/; revision=238781
* Update CONFIGURE_ARGS for how we pass CONFIGURE_TARGET to configure script.Rong-En Fan2008-08-211-1/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Specifically, newer autoconf (> 2.13) has different semantic of the configure target. In short, one should use --build=CONFIGURE_TARGET instead of CONFIGURE_TARGET directly. Otherwise, you will get a warning and the old semantic may be removed in later autoconf releases. To workaround this issue, many ports hack the CONFIGURE_TARGET variable so that it contains the ``--build='' prefix. To solve this issue, under the fact that some ports still have configure script generated by the old autoconf, we use runtime detection in the do-configure target so that the proper argument can be used. Changes to Mk/*: - Add runtime detection magic in bsd.port.mk - Remove CONFIGURE_TARGET hack in various bsd.*.mk - USE_GNOME=gnometarget is now an no-op Changes to individual ports, other than removing the CONFIGURE_TARGET hack: = pkg-plist changed (due to the ugly CONFIGURE_TARGET prefix in * executables) - comms/gnuradio - science/abinit - science/elmer-fem - science/elmer-matc - science/elmer-meshgen2d - science/elmerfront - science/elmerpost = use x86_64 as ARCH - devel/g-wrap = other changes - print/magicfilter GNU_CONFIGURE -> HAS_CONFIGURE since it's not generated by autoconf Total # of ports modified: 1,027 Total # of ports affected: ~7,000 (set GNU_CONFIGURE to yes) PR: 126524 (obsoletes 52917) Submitted by: rafan Tested on: two pointyhat 7-amd64 exp runs (by pav) Approved by: portmgr (pav) Notes: svn path=/head/; revision=218938
* Fix NOPORTDOCS case.Ade Lovett2008-06-071-4/+4
| | | | | | | | PR: 124348 Submitted by: oliver@gid0.org Notes: svn path=/head/; revision=214457
* Bump portrevision due to upgrade of devel/gettext.Edwin Groothuis2008-06-061-1/+1
| | | | | | | | | | | | | The affected ports are the ones with gettext as a run-dependency according to ports/INDEX-7 (5007 of them) and the ones with USE_GETTEXT in Makefile (29 of them). PR: ports/124340 Submitted by: edwin@ Approved by: portmgr (pav) Notes: svn path=/head/; revision=214431
* Major autotools-related update:Ade Lovett2008-06-065-55/+36
| | | | | | | | | | | | | | | | | automake 1.10 -> 1.10.1 gettext 0.16.1 -> 0.17 libtool 1.5.24 -> 1.5.26 m4 1.4.9 -> 1.4.11 Please see ports/UPDATING entry 20080605 for further information. PR: 123450 Tested by: Full -exp package building run Thanks to: linimon, pav Approved by: portmgr Notes: svn path=/head/; revision=214412
* - Remove unneeded dependency from gtk12/gtk20 [1]Martin Wilke2008-04-191-1/+1
| | | | | | | | | | | | | | | | | | - Remove USE_XLIB/USE_X_PREFIX/USE_XPM in favor of USE_XORG - Remove X11BASE support in favor of LOCALBASE or PREFIX - Use USE_LDCONFIG instead of INSTALLS_SHLIB - Remove unneeded USE_GCC 3.4+ Thanks to all Helpers: Dmitry Marakasov, Chess Griffin, beech@, dinoex, rafan, gahr, ehaupt, nox, itetcu, flz, pav PR: 116263 Tested on: pointyhat Approved by: portmgr (pav) Notes: svn path=/head/; revision=211584
* - Set --mandir and --infodir in CONFIGURE_ARGS if the configure scriptRong-En Fan2007-07-231-2/+1
| | | | | | | | | | | | | | | | | | | | | supports them. This is determined by running ``configure --help'' in do-configure target and set the shell variable _LATE_CONFIGURE_ARGS which is then passed to CONFIGURE_ARGS. - Remove --mandir and --infodir in ports' Makefile where applicable Few ports use REINPLACE_CMD to achieve the same effect, remove them too. - Correct some manual pages location from PREFIX/man to MANPREFIX/man - Define INFO_PATH where necessary - Document that .info files are installed in a subdirectory relative to PREFIX/INFO_PATH and slightly change add-plist-info to use INFO_PATH and subdirectory detection. PR: ports/111470 Approved by: portmgr Discussed with: stas (Mk/*), gerald (info related stuffs) Tested by: pointyhat exp run Notes: svn path=/head/; revision=196111
* Fix build on -CURRENT. openmp support with gcc 4.2 is autodetected butAde Lovett2007-05-291-1/+1
| | | | | | | | | | | | | is broken if threads are disabled (which they are). This results in msgmerge segfaulting all over the place. Since (a) this is -CURRENT only and (b) has no effect on -STABLE, PORTREVISION is not being bumped. Submitted by: kris Notes: svn path=/head/; revision=192323
* - Welcome X.org 7.2 \o/.Florent Thoumie2007-05-192-37/+1
| | | | | | | | - Set X11BASE to ${LOCALBASE} for recent ${OSVERSION}. - Bump PORTREVISION for ports intalling files in ${X11BASE}. Notes: svn path=/head/; revision=191544
* Unconditionally disable threading, it is apparently causing someAde Lovett2007-04-081-2/+3
| | | | | | | | | | | | | | edge cases to fail, and the previous version of gettext was unthreaded, so we're not losing anything. Note that if you've already rebuilt gettext to 0.16.1, you only need to upgrade gettext, and not everything that depends on it. Thanks to those that reported the issue, and both gnome@ and kde@ for confirming that this change does not cause any issues there. Notes: svn path=/head/; revision=189468
* Update to 0.16.1Ade Lovett2007-03-1714-399/+380
| | | | | | | | Many thanks to all those that tested this update, particularly the FreeBSD GNOME team. Notes: svn path=/head/; revision=187610
* Conversion to a single libtool environment.Ade Lovett2006-02-232-1/+6
| | | | | | | Approved by: portmgr (kris) Notes: svn path=/head/; revision=156749
* Chase shlib bump of libexpat.Jun Kuriyama2006-01-301-2/+2
| | | | Notes: svn path=/head/; revision=154857
* SHA256ifyEdwin Groothuis2006-01-221-0/+1
| | | | | | | Approved by: krion@ Notes: svn path=/head/; revision=154141
* eplace ugly "@unexec rmdir %D... 2>/dev/null || true" with @dirrmtryEdwin Groothuis2006-01-221-40/+40
| | | | | | | | Approved by: krion@ PR: ports/88711 (related) Notes: svn path=/head/; revision=154134
* Mass-conversion to the USE_AUTOTOOLS New World Order. The code presentAde Lovett2005-11-151-1/+1
| | | | | | | | | | | | | | | | | | | | in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run. Notes: svn path=/head/; revision=148323
* Unconditionally disable the installation of the start-po.el emacs lispAde Lovett2005-11-131-1/+2
| | | | | | | | | | file, regardless of whether emacs or xemacs is installed. PR: 87956 Submitted by: NIIMI Satoshi <sa2c@sa2c.net> Notes: svn path=/head/; revision=148175
* Update to 0.14.5Ade Lovett2005-06-173-4/+5
| | | | | | | Tested with: full build of x11/gnome2 and x11/kde3 Notes: svn path=/head/; revision=137640
* Pick this one up too, since it is somewhat intrinsically linkedAde Lovett2005-06-151-1/+1
| | | | | | | to autotools Notes: svn path=/head/; revision=137479
* - Remove incorrect dirrmPav Lucistnik2005-05-261-1/+0
| | | | | | | Bugged me for: too long Notes: svn path=/head/; revision=136190
* Trivial fix: add ending quotePalle Girgensohn2005-05-221-1/+1
| | | | | | | Approved by: seanc, ade (implicit) Notes: svn path=/head/; revision=135839
* Bump PORTREVISION for the addition of the msginit.c patch.Adam Weinberger2005-05-201-0/+1
| | | | Notes: svn path=/head/; revision=135669
* Sortof fix msginit a little bit kindof. It was looking forAdam Weinberger2005-05-201-0/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | certain files in the wrong place. Before, running msginit would give this: /usr/local/libdata/gettext/project-id: Can't open /usr/local/libdata/gettext/project-id: No such file or directory msginit: /usr/local/libdata/gettext/project-id subprocess I/O error /usr/local/libdata/gettext/user-email: Can't open /usr/local/libdata/gettext/user-email: No such file or directory msginit: /usr/local/libdata/gettext/user-email subprocess I/O error /usr/local/share/gettext/projects/TP/team-address: /usr/local/libdata/gettext/urlget: not found etc. Now, it gives this: root@smacky:/usr/ports/GNOME/grm/i18n# msginit The new message catalog should contain your email address, so that users can give you feedback about the translations, and so that maintainers can contact you in case of unexpected technical problems. sed: 8: "{ h s/^[^@]*@\(.*\)$/\1 ...": unterminated substitute pattern Couldn't find out about your email address. Please enter your email address. adamw@gnome.org sed: 8: "{ h s/^[^@]*@\(.*\)$/\1 ...": unterminated substitute pattern Exception in thread "main" java.lang.NoClassDefFoundError: gnu/gettext/GetURL Someone should look into that new error. Notes: svn path=/head/; revision=135668
* - Update to 0.14.4Michael Johnson2005-05-138-52/+59
| | | | Notes: svn path=/head/; revision=135168
* Be sure to create the empty lib/gettext directory during package creation.Joe Marcus Clarke2004-12-281-0/+1
| | | | | | | Spotted by: pav Notes: svn path=/head/; revision=125302
* Remove the empty lib/gettext directory.Joe Marcus Clarke2004-12-241-0/+1
| | | | | | | Reported by: pointyhat via kris Notes: svn path=/head/; revision=125041
* * Update to 0.14.1 without a shared library version bumpJoe Marcus Clarke2004-12-219-96/+76
| | | | | | | | | | | | | * Use new libtool scheme [1] The primary addition in this release is support for C# files when generating translations. Submitted by: mezz [1] Tested by: many, including mezz, adamw, and myself Notes: svn path=/head/; revision=124651
* Clean up handling of locale directories at deinstall-time:Kris Kennaway2004-12-161-2/+0
| | | | | | | | * Don't remove "system directories" (which were created by BSD.*.dist) * Silently try to remove locale directories which we might have created Notes: svn path=/head/; revision=124183
* Don't remove all empty locale directories, only the ones we createdKris Kennaway2004-11-241-29/+42
| | | | | | | ourselves. Notes: svn path=/head/; revision=122337
* - eliminate dependency on libexpat on >= 5.0Oliver Eikemeier2004-10-194-10/+64
| | | | | | | | | <http://lists.freebsd.org/pipermail/freebsd-ports/2004-October/016796.html> Reviewed by: ports@ Notes: svn path=/head/; revision=119797
* Previous revision accidently deleted the expat.5 dependancy.David E. O'Brien2004-08-271-1/+3
| | | | | | | s/NO_${PORTNAME}_OPTIONS/WITHOUT_${PORTNAME}_OPTIONS/ Notes: svn path=/head/; revision=117440
* Add a NO_GETTEXT_OPTIONS knob.David E. O'Brien2004-08-271-2/+2
| | | | Notes: svn path=/head/; revision=117383
* Put back OPTIONS now that release builds have been fixed to set BATCHKris Kennaway2004-07-121-8/+2
| | | | | | | for non-interactivity. Notes: svn path=/head/; revision=113451
* Fix the release build.David E. O'Brien2004-07-121-2/+8
| | | | Notes: svn path=/head/; revision=113446
* Fix packaging issues for html-files.Volker Stolz2004-06-141-2/+4
| | | | | | | | Closes PR: ports/67653 Noticed by: Paul Beard Notes: svn path=/head/; revision=111466
* - Relax mv in kaffe hackPav Lucistnik2004-06-021-2/+2
| | | | | | | | PR: ports/67453 Reported by: Andreas Schulz <ats@first.fraunhofer.de> Notes: svn path=/head/; revision=110704
* Correct last commit.Trevor Johnson2004-04-071-1/+1
| | | | | | | noticed by: lofi Notes: svn path=/head/; revision=106446
* Fix packing list when NOPORTDOCS is set.Trevor Johnson2004-04-061-0/+1
| | | | | | | | Reported by: parv PR: 65241 Notes: svn path=/head/; revision=106331
* By default, do not install HTML-formatted man pages.Trevor Johnson2004-04-033-51/+21
| | | | | | | When NOPORTDOCS is set, do not install a few other HTML files. Notes: svn path=/head/; revision=105999
* Fix whitespace.Trevor Johnson2004-04-031-1/+1
| | | | Notes: svn path=/head/; revision=105997
* Correct packing list.Trevor Johnson2004-04-031-5/+9
| | | | Notes: svn path=/head/; revision=105996
* Make examples (mostly) optional, requested by obrien.Trevor Johnson2004-04-023-590/+20
| | | | Notes: svn path=/head/; revision=105960
* o Bump $LIB_DEPENDS line to chase expat's shlib version.Jun Kuriyama2004-03-141-1/+2
| | | | | | | o Bump $PORTREVISION. Notes: svn path=/head/; revision=103969
* As discovered by Andrzej Tobola, gettext (this version, or theTrevor Johnson2004-02-181-1/+20
| | | | | | | | 0.12.1 version) fails to build if kaffe-devel-1.1.3 is installed. Kludge around this. Notes: svn path=/head/; revision=101282
* Add "anti-foot-shooting device".Trevor Johnson2004-02-081-0/+5
| | | | | | | Obtained from: sobomax via the imake-4 and linux_base ports Notes: svn path=/head/; revision=100417
* Use USE_ICONV.Joe Marcus Clarke2004-02-051-2/+2
| | | | Notes: svn path=/head/; revision=100072
* Remove the CONFLICTS as this is now the One True gettext.Joe Marcus Clarke2004-02-041-1/+0
| | | | Notes: svn path=/head/; revision=99988
* SIZEify.Trevor Johnson2004-01-291-0/+1
| | | | Notes: svn path=/head/; revision=99360
* - add missing manpage envsubst.1Dirk Meyer2004-01-251-1/+1
| | | | | | | was installed, but not in package. Notes: svn path=/head/; revision=99061
* version 0.13.1, noticed by marcusTrevor Johnson2004-01-253-14/+57
| | | | Notes: svn path=/head/; revision=98997