summaryrefslogtreecommitdiff
path: root/devel/gettext-lib
AgeCommit message (Collapse)AuthorFilesLines
2002-08-20Pullup versionsagc1-1/+3
1.36 pkgsrc/devel/gettext/Makefile 1.5 pkgsrc/devel/gettext/distinfo 1.13 pkgsrc/devel/gettext-lib/Makefile 1.4 pkgsrc/devel/gettext-m4/Makefile 1.8 pkgsrc/devel/gettext/patches/patch-aa 1.3 pkgsrc/devel/gettext/patches/patch-ac 1.2 pkgsrc/devel/gettext/patches/patch-ak to the pkgsrc 1.6 branch. Requested by Stoned Elipot. > From: Stoned Elipot <seb@netbsd.org> > Date: Mon, 19 Aug 2002 22:20:35 +0300 (EEST) > > Module Name: pkgsrc > Committed By: seb > Date: Mon Aug 19 19:20:35 UTC 2002 > > Modified Files: > pkgsrc/devel/gettext: Makefile distinfo > pkgsrc/devel/gettext-lib: Makefile > pkgsrc/devel/gettext-m4: Makefile > pkgsrc/devel/gettext/patches: patch-aa patch-ac patch-ak > > Log Message: > Solaris fix... Now that gettext-lib's buildlink.mk makes it required on Solaris > fix build and PLIST: > - obey PKGLOCALEDIR > - fix libtool's install mode invocation.
2002-08-20Pullup revisions 1.58 and 1.59 to the 1.6 pkgsrc branch.agc1-3/+1
Requested by Thomas Klausner. > Date: Mon, 19 Aug 2002 18:17:57 +0300 (EEST) > From: Thomas Klausner <wiz@netbsd.org> > > Module Name: pkgsrc > Committed By: wiz > Date: Mon Aug 19 15:17:56 UTC 2002 > > Modified Files: > pkgsrc/security/openssl: Makefile > > Log Message: > Compile no-shared on 1.4.x. This makes the package install and work for me > on 1.4.2/i386. Approved by agc. > Date: Mon, 19 Aug 2002 19:00:07 +0300 (EEST) > From: Thomas Klausner <wiz@netbsd.org> > > Module Name: pkgsrc > Committed By: wiz > Date: Mon Aug 19 16:00:07 UTC 2002 > > Modified Files: > pkgsrc/security/openssl: Makefile > > Log Message: > Fix a comment, and improve pattern to also work on netbsd-1-4.
2002-08-19Solaris fix... Now that gettext-lib's buildlink.mk makes it required on Solarisseb1-1/+3
fix build and PLIST: - obey PKGLOCALEDIR - fix libtool's install mode invocation.
2002-08-07Create new variables INCOMPAT_ZLIB, INCOMPAT_BZIP2, INCOMPAT_READLINE,jlam1-16/+26
INCOMPAT_GETTEXT that are analogous to INCOMPAT_ICONV and contain lists of shell wildcards intended to match against ${MACHINE_PLATFORM}. These variables are used to note those platforms that have the named packages in the base system but are incompatible in some way from the pkgsrc version of the same package. Change INCOMPAT_CURSES to have the same sematics as above. These variables allow much greater precision in specifying which platforms have broken (for the purposes of pkgsrc) versions of software in the base system that must be ignored. The buildlink.mk files for these packages define private _INCOMPAT_* versions of these variables, and they contain the default lists of platforms that are known to have incompatible software bits. This addresses pkg/17775 submitted by Julien T. Letessier <julien.letessier at sun dot com>.
2002-07-19Use CONFIG_{GUESS,SUB}_OVERRIDE to fix build problem on Darwin, noted byschmonz1-1/+3
Randy Beaudreault <maccult@pacbell.net>.
2002-02-21Only use -R if the linker supports it. Patch by Rob Latham in pkg/15652.wiz1-1/+3
2001-11-29Get rid of manually adding "nbX" to PKGNAME when a pkg was changed inhubertf1-2/+3
pkgsrc. Instead, a new variable PKGREVISION is invented that can get bumped independent of DISTNAME and PKGNAME. Example #1: DISTNAME= foo-X.Y PKGREVISION= Z => PKGNAME= foo-X.YnbZ Example #2: DISTNAME= barthing-X.Y PKGNAME= bar-X.Y PKGREVISION= Z => PKGNAME= bar=X.YnbZ (!) On subsequent changes, only PKGREVISION needs to be bumped, no more risk of getting DISTNAME changed accidentally.
2001-11-01Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-10-26Define INTLLIBS to be the flags needed to link against libintl.a, and passjlam1-4/+6
${INTLLIBS} through to the configure environment. This should fix pkg/14360 (x11/gtk: gtk-config does not list "-lintl") by Jun-ichiro itojun Hagino <itojun@itojun.org>.
2001-10-18SVR4 packages have a limit of 9 chars for a package name.veego1-1/+2
The automatic truncation in gensolpkg doesn't work for packages which have the same package name for the first 5-6 chars. e.g. amanda-server and amanda-client would be named amanda and amanda. Now, we add a SVR4_PKGNAME and use amacl for amanda-client and amase for amanda-server. All svr4 packages also have a vendor tag, so we have to reserve some chars for this tag, which is normaly 3 or 4 chars. Thats why we can only use 6 or 5 chars for SVR4_PKGNAME. I used 5 for all the packages, to give the vendor tag enough room. All p5-* packages and a few other packages have now a SVR4_PKGNAME.
2001-08-25Pass the appropriate linker flags in LIBS along with -lintl to ensure thatjlam1-2/+6
-lintl is picked up by the linker.
2001-07-27Add dir_DEFAULT setting used by EVAL_PREFIX logic to set the defaultjlam1-1/+2
installation directory in case the package isn't installed.
2001-07-20Mechanical changes to buildlink.mk files to use EVAL_PREFIX to setjlam1-2/+2
BUILDLINK_PREFIX.<pkgname>. This allows buildlink to find X11BASE packages regardless of whether they were installed before or after xpkgwedge was installed. Idea by Alistair Crooks <agc@pkgsrc.org>.
2001-07-01Move inclusion of bsd.buildlink.mk to start of file.jlam1-3/+3
2001-06-28Mark as USE_BUILDLINK_ONLY.jlam1-1/+2
2001-06-23Generalize how the dependency pattern may be specified. Instead of justjlam1-9/+9
FOO_REQD=1.0 being converted to foo>=1.0, one can now directly specify the dependency pattern as FOO_DEPENDS=foo>=1.0. This allows things like JPEG_DEPENDS=jpeg-6b, or fancier expressions like for postgresql-lib. Change existing FOO_REQD definitions in Makefiles to FOO_DEPENDS.
2001-06-11Use bsd.buildlink.mk instead of duplicating code all over the place.jlam1-49/+16
2001-06-10Use cookies (.*_done) to determine whether headers and libs have beenjlam1-6/+12
linked from a particular package, and add a pre-configure target to the buildlink.mk file to more painlessly use buildlink.mk files. A ${BUILDLINK_TARGETS} variable still exists in case a package _must_ define NO_CONFIGURE.
2001-06-09' '->'\t'wiz1-2/+2
2001-05-28Comment the last commit.jlam1-1/+7
2001-05-28Make sure that -lintl is add to LIBS in CONFIGURE_ENV to work aroundjlam1-1/+10
broken gettext.m4.
2001-05-28Add buildlink.mk file to link the appropriate libraries and headers intojlam1-0/+72
${BUILDLINK_INCDIR} and ${BUILDLINK_LIBDIR}, to be used by other packages.
2001-04-21Deprecate PATCH_SUM_FILE; use distinfo file from gettext.wiz2-6/+2
2001-04-21Add "CONFLICTS=gettext<=0.10.35" since it installs the same files thatfrueauf1-1/+2
gettext-0.10.35 and older versions installed.
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-13/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc2-3/+14
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-16Remove makepatchsum target.wiz1-3/+1
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2001-01-04The way that shared objects were handled in the PLISTs and bsd.pkg.mk wasagc1-1/+3
out of date - it was based on a.out OBJECT_FMT, and added entries in the generated PLISTs to reflect the symlinks that ELF packages uses. It also tried to be clever, and removed and recreated any symbolic links that were created, which has resulted in some fun, especially with packages which use dlopen(3) to load modules. Some recent changes to our ld.so to bring it more into line with other Operating Systems also exposed some cracks. + Modify bsd.pkg.mk and its shared object handling, so that PLISTs now contain the ELF symlinks. + Don't mess about with file system entries when handling shared objects in bsd.pkg.mk, since it's likely that libtool and the BSD *.mk processing will have got it right, and have a much better idea than we do. + Modify PLISTs to contain "ELF symlinks" + On a.out platforms, delete any "ELF symlinks" from the generated PLISTs + On ELF platforms, no extra processing needs to be done in bsd.pkg.mk + Modify print-PLIST target in bsd.pkg.mk to add dummy symlink entries on a.out platforms + Update the documentation in Packages.txt With many thanks to Thomas Klausner for keeping me honest with this.
2000-11-29move installation of gettextize files to devel/gettext.itojun2-27/+3
repair gettext build on fresh install. re-introduce gettextize file installation. reported by: mycroft
2000-11-16add HOMEPAGEwiz1-1/+2
2000-10-31no info on this directoryitojun1-3/+1
2000-10-31split devel/gettext into devel/gettext and devel/gettext-lib.itojun5-0/+67
TODO: gettext-lib can be omitted if we have /usr/lib/libintl.a.