summaryrefslogtreecommitdiff
path: root/devel/gettext-lib
AgeCommit message (Collapse)AuthorFilesLines
2010-10-28Remove patch-ad and Makefile changes intended to fix PR 43879 thatwiz4-36/+2
caused PR 44003. Fix PR 43879 by removing patch-ac which was added in 2004 to fix a problem on Darwin -- Darwins from at least 10.4 up don't need it any longer.
2010-10-27Set LICENSE.wiz1-1/+2
2010-10-22Fix compile on Dragonfly.darcy3-2/+20
Closes PR #43879. Patch supplied by ftigeot@wolfpond.org. Tested by darcy@NetBSD.org on i386. No revision bump as no code changed.
2010-02-05Reset WRKSRC settings, use CONFIGURE_DIRS instead.obache5-17/+16
This package are using some files outside of the directory specified by WRKSRC, (ex. ../build-aux/config.*). But some pkgsrc checks/replacements/modifications are only effect to below ${WRKSRC}.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-2/+1
2009-03-20Simply and speed up buildlink3.mk files and processing.joerg1-13/+6
This changes the buildlink3.mk files to use an include guard for the recursive include. The use of BUILDLINK_DEPTH, BUILDLINK_DEPENDS, BUILDLINK_PACKAGES and BUILDLINK_ORDER is handled by a single new variable BUILDLINK_TREE. Each buildlink3.mk file adds a pair of enter/exit marker, which can be used to reconstruct the tree and to determine first level includes. Avoiding := for large variables (BUILDLINK_ORDER) speeds up parse time as += has linear complexity. The include guard reduces system time by avoiding reading files over and over again. For complex packages this reduces both %user and %sys time to half of the former time.
2008-06-20Add DESTDIR support.joerg1-1/+2
2008-03-03explicite disable C#, otherwise "mcs" might be picked up,drochner1-1/+2
leading to chaos
2008-02-28+ Get rid of the separate check for glibc's libintl.h because it'sjlam1-20/+15
just the real GNU gettext embedded into glibc. + Check for Gentoo's funky libintl.h and assume that it's glibc's gettext.
2008-02-27Greatly simplify the logic that tries to determine whether -lintljlam2-71/+54
needs -liconv in order to satisfy linkage requirements. This is now patterned after the approach taken with readline and termlib. Examples on NetBSD for a package that includes only gettext-lib/buildlink3.mk: PREFER_NATIVE= yes PREFER_PKGSRC= # empty # This uses the native gettext and native iconv, with: # BUILDLINK_LDADD.gettext == "-lintl" PREFER_NATIVE= yes PREFER_PKGSRC= iconv # This uses the native gettext and native iconv, with: # BUILDLINK_LDADD.gettext == "-lintl" PREFER_NATIVE= yes PREFER_PKGSRC= gettext # This uses the pkgsrc gettext and native iconv, with: # BUILDLINK_LDADD.gettext == "-lintl" PREFER_NATIVE= yes PREFER_PKGSRC= gettext iconv # This uses the pkgsrc gettext and pkgsrc iconv, with: # BUILDLINK_LDADD.gettext == "-lintl -liconv" PREFER_NATIVE= # empty PREFER_PKGSRC= yes # This uses the pkgsrc gettext and pkgsrc iconv, with: # BUILDLINK_LDADD.gettext == "-lintl -liconv" PREFER_NATIVE= iconv PREFER_PKGSRC= yes # This uses the pkgsrc gettext and native iconv, with: # BUILDLINK_LDADD.gettext == "-lintl" PREFER_NATIVE= gettext PREFER_PKGSRC= yes # This uses the native gettext and native iconv, with: # BUILDLINK_LDADD.gettext == "-lintl" PREFER_NATIVE= gettext iconv PREFER_PKGSRC= yes # This uses the native gettext and native iconv, with: # BUILDLINK_LDADD.gettext == "-lintl"
2008-01-25On Linux, just assume that if /usr/include/libintl.h exists, that it isjoerg1-2/+6
GNU gettext. This works around amd64 issues on Gentoo.
2008-01-23Use bsd.fast.prefs.mk in some very commonly included locations.tnn1-2/+2
2007-09-24In gettext-lib/buildlink3.mk, check whether we need to pull in thejlam2-5/+11
libiconv/buildlink3.mk file based on whether or not we're using the built-in gettext-lib or not. This is clearer than what existed in revision 1.33 of gettext-lib/builtin.mk and fixes the problem introduced in revision 1.34.
2007-09-18Simplify a bit to work under bulk builds as well.joerg1-5/+2
2007-09-16Simplify the logic for libiconv -- we always have a gettext that dependsjoerg1-31/+2
on it for the non-native case. This seems to help with some issues on Solaris.
2006-07-26Changes 0.14.6:adam2-17/+13
* Updated the meaning of 'gcc-internal-format' to match GCC 4.1.
2006-07-20Remove USE_GNU_GETTEXT from pkgsrc. Packages generally only neededjlam1-10/+1
it for plurals support, but that is already handled correctly (FSVO "correctly") by the pkgsrc/mk/tools/msgfmt.sh script. Also remove _USE_GNU_GETTEXT definitions from pkgsrc/mk/platform/*.mk files as that value has been unused by pkgsrc for quite some time (going back several branches).
2006-07-09Use "defined": this fixes build problems under darwin.tonio2-4/+4
2006-07-08Change the format of BUILDLINK_ORDER to contain depth information as well,jlam1-2/+2
and add a new helper target and script, "show-buildlink3", that outputs a listing of the buildlink3.mk files included as well as the depth at which they are included. For example, "make show-buildlink3" in fonts/Xft2 displays: zlib fontconfig iconv zlib freetype2 expat freetype2 Xrender renderproto
2006-07-08Track information in a new variable BUILDLINK_ORDER that informs usjlam1-1/+2
of the order in which buildlink3.mk files are (recursively) included by a package Makefile.
2006-07-06Define locale_charset only when GNU iconv is used. This fixes the packageminskim3-12/+12
on Solaris where native iconv doesn't have locale_charset. Noted by Gilles Dauphin in PR pkg/32945. Bump PKGREVISION.
2006-07-03Make sure that locale_charset is defined only once. Otherwise, it may causeminskim3-2/+27
a link error on Darwin. The patch was adapted from the one submitted in PR pkg/32723. It also fixes PR pkg/32945. Bump PKGREVISION.
2006-04-13Overhaul the way packages can ask for "msgfmt". If a package needsjlam1-35/+1
msgfmt, then it should set the following in the package Makefile: USE_TOOLS+= msgfmt To deal with message files that use the "msgid_plural" statement, which isn't supported in NetBSD<=3.x and also in gettext<=0.10.35, we determine if the built-in "msgfmt" is sufficiently new enough to understand "msgid_plural". If it isn't, then we use the msgfmt.sh script to transform the msgid_plural statements to an equivalent construct that's understood by older msgfmt tools. The msgfmt.sh script is a straightforward translation of the original perl script msgfmt.pl script by Julio M. Merino Vidal into shell and awk, which are more lightweight dependencies than perl. We remove the USE_MSGFMT_PLURALS bits in gettext-lib/builtin.mk as they are made obsolete by the new code in mk/tools/msgfmt.mk. BUILD_USE_MSGFMT is still supported but will be removed in a separate commit.
2006-04-06Over 1200 files touched but no revisions bumped :)reed2-6/+6
RECOMMENDED is removed. It becomes ABI_DEPENDS. BUILDLINK_RECOMMENDED.foo becomes BUILDLINK_ABI_DEPENDS.foo. BUILDLINK_DEPENDS.foo becomes BUILDLINK_API_DEPENDS.foo. BUILDLINK_DEPENDS does not change. IGNORE_RECOMMENDED (which defaulted to "no") becomes USE_ABI_DEPENDS which defaults to "yes". Added to obsolete.mk checking for IGNORE_RECOMMENDED. I did not manually go through and fix any aesthetic tab/spacing issues. I have tested the above patch on DragonFly building and packaging subversion and pkglint and their many dependencies. I have also tested USE_ABI_DEPENDS=no on my NetBSD workstation (where I have used IGNORE_RECOMMENDED for a long time). I have been an active user of IGNORE_RECOMMENDED since it was available. As suggested, I removed the documentation sentences suggesting bumping for "security" issues. As discussed on tech-pkg. I will commit to revbump, pkglint, pkg_install, createbuildlink separately. Note that if you use wip, it will fail! I will commit to pkgsrc-wip later (within day).
2006-03-30Ensure that _BLTN_H_GETTEXT is actually defined by find-files.mk.jlam1-2/+2
2006-03-30Avoid extra stat() calls by not repeatedly checking whether a filejlam1-9/+10
exists on the disk -- we can just check whether a variable defined by find-files.mk is "__nonexistent__" or not.
2006-02-28Make BROKEN_GETTEXT_DETECTION=no the default for pkgsrc.joerg1-6/+2
2006-02-05Update gettext to 0.14.5. Many bugfixes and improvements,joerg6-50/+29
including support for relocable programs, Qt support, separation of the PO processing functions into a separate library and more. Reorganise the gettext infrastructure by splitting of the tools into devel/gettext-tools, which will be used by the tools framework. The remaining devel/gettext package contains gettextize and autopoint aka the infrastructure to embbed gettext into a package. Due to the ABI and API changes, a recursive revision bump will follow. Take blaim by receiving the maintainer hat. With input from jlam@, reed@ and wiz@.
2005-12-29Remove USE_PKGINSTALL from pkgsrc now that mk/install/pkginstall.mkjlam1-2/+1
automatically detects whether we want the pkginstall machinery to be used by the package Makefile.
2005-12-05Fixed pkglint warnings. The warnings are mostly quoting issues, forrillig1-3/+3
example MAKE_ENV+=FOO=${BAR} is changed to MAKE_ENV+=FOO=${BAR:Q}. Some other changes are outlined in http://mail-index.netbsd.org/tech-pkg/2005/12/02/0034.html
2005-08-21We need to pre-create the locale directory before copying the locale.aliasjlam1-2/+3
file into place. Bump the PKGREVISION to 6.
2005-08-20Fix the msgfmt.pl script to deal with messages with plurals whose stringsjmmv1-7/+20
are identical (e.g., msgid == msgid_plural) by ignoring the duplicates. In fact, this is a rewrite of the script, since I couldn't understand the old one (ew). Also change the way we use it to only pull it in the build if the real msgfmt does not support plurals (i.e., it's older than 0.10.36). Fixes PR pkg/30596 and PR pkg/30938 (both related to epiphany). It also fixes the build of evolution-data-server and probably others.
2005-08-19Install the locale.alias file into an example directory, and copy itjlam2-3/+12
into place via REQD_FILES. This fixes a CHECK_FILES error. Bump the PKGREVISION to 5.
2005-07-16Get rid of USE_PERL5. The new way to express needing the Perl executablejlam1-2/+2
around at either build-time or at run-time is: USE_TOOLS+= perl # build-time USE_TOOLS+= perl:run # run-time Also remove some places where perl5/buildlink3.mk was being included by a package Makefile, but all that the package wanted was the Perl executable.
2005-06-05In builtin.mk files, use _BLTN_ as the private namespace prefix.jlam1-20/+20
2005-06-01Ensure that BUILTIN_GETTEXT_NGETTEXT is always defined.jlam1-6/+9
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam2-88/+137
Several changes are involved since they are all interrelated. These changes affect about 1000 files. The first major change is rewriting bsd.builtin.mk as well as all of the builtin.mk files to follow the new example in bsd.builtin.mk. The loop to include all of the builtin.mk files needed by the package is moved from bsd.builtin.mk and into bsd.buildlink3.mk. bsd.builtin.mk is now included by each of the individual builtin.mk files and provides some common logic for all of the builtin.mk files. Currently, this includes the computation for whether the native or pkgsrc version of the package is preferred. This causes USE_BUILTIN.* to be correctly set when one builtin.mk file includes another. The second major change is teach the builtin.mk files to consider files under ${LOCALBASE} to be from pkgsrc-controlled packages. Most of the builtin.mk files test for the presence of built-in software by checking for the existence of certain files, e.g. <pthread.h>, and we now assume that if that file is under ${LOCALBASE}, then it must be from pkgsrc. This modification is a nod toward LOCALBASE=/usr. The exceptions to this new check are the X11 distribution packages, which are handled specially as noted below. The third major change is providing builtin.mk and version.mk files for each of the X11 distribution packages in pkgsrc. The builtin.mk file can detect whether the native X11 distribution is the same as the one provided by pkgsrc, and the version.mk file computes the version of the X11 distribution package, whether it's built-in or not. The fourth major change is that the buildlink3.mk files for X11 packages that install parts which are part of X11 distribution packages, e.g. Xpm, Xcursor, etc., now use imake to query the X11 distribution for whether the software is already provided by the X11 distribution. This is more accurate than grepping for a symbol name in the imake config files. Using imake required sprinkling various builtin-imake.mk helper files into pkgsrc directories. These files are used as input to imake since imake can't use stdin for that purpose. The fifth major change is in how packages note that they use X11. Instead of setting USE_X11, package Makefiles should now include x11.buildlink3.mk instead. This causes the X11 package buildlink3 and builtin logic to be executed at the correct place for buildlink3.mk and builtin.mk files that previously set USE_X11, and fixes packages that relied on buildlink3.mk files to implicitly note that X11 is needed. Package buildlink3.mk should also include x11.buildlink3.mk when linking against the package libraries requires also linking against the X11 libraries. Where it was obvious, redundant inclusions of x11.buildlink3.mk have been removed.
2005-05-24Rename _LIBINTL_H to _BLNK_LIBINTL_H (namespace issues).jlam1-7/+8
2005-05-24Re-add _LIBINTL_H definition that was accidentally removed in thejlam1-1/+3
previous commit.
2005-05-24Use mk/buildlink3/find-libs.mk instead of custom logic to find a nativejlam1-20/+6
libintl.so.
2005-05-19We can only use the subst.mk framework if the files are relative tojlam1-12/+14
${WRKSRC}. Just directly create the msgfmt wrapper in the proper target. Also, note that the msgfmt handling should eventually migrate to the tools framework so that build dependencies and binary paths are correct.
2005-04-19Include ../../converters/libiconv/buildlink3.mk in buildlink3.mk,epg2-45/+5
and let it worry about whether libiconv is built-in or not. Remove all references to libiconv from builtin.mk. The logic in builtin.mk was broken and unnecessary, leading to a build failure on at least some Linux systems (such as Debian woody without any gettext packages installed).
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-03-24Remove FreeBSD RCS Ids. pkgsrc has diverged too much for syncing to bewiz1-3/+1
useful.
2005-02-23Add RMD160 digests.agc1-1/+2
2004-12-18only include <search.h> if it is present. fixes build on Darwin.grant2-1/+17
2004-12-11Create directories before putting files in them. This should fixjlam1-1/+2
PR pkg/28480.
2004-12-03Rename ALL_TARGET to BUILD_TARGET for consistency with other *_TARGETs.wiz1-2/+2
Suggested by Roland Illig, ok'd by various.
2004-11-28Remove pre-buildlink and post-buildlink as part of getting pkgsrc readyjlam1-2/+2
for pkgsrc-2004Q4. The "buildlink" phase was removed for the last branch, and this is the final cleanup. "post-buildlink" is now "post-wrapper".
2004-11-27Fix broken libintl existence test; patch by minskim.wiz1-6/+6