summaryrefslogtreecommitdiff
path: root/x11/xfstt
AgeCommit message (Collapse)AuthorFilesLines
2009-06-14Remove @dirrm entries from PLISTsjoerg1-3/+1
2008-08-31Set proper dependencies. This now builds for xorg as well as xfree.dholland1-14/+18
I'm not entirely clear on whether it's expected to be useful with xorg, but that's a different story... PKGREVISION++ While here, add destdir support.
2007-01-07Mechanically replaced man/* with ${PKGMANDIR}/* in the definition ofrillig1-3/+3
INSTALLATION_DIRS, as well as all occurrences of ${PREFIX}/man with ${PREFIX}/${PKGMANDIR}. Fixes PR 35265, although I did not use the patch provided therein.
2006-05-10Uses C++.joerg1-1/+2
2006-03-04Point MAINTAINER to pkgsrc-users@NetBSD.org in the case where nojlam1-2/+2
developer is officially maintaining the package. The rationale for changing this from "tech-pkg" to "pkgsrc-users" is that it implies that any user can try to maintain the package (by submitting patches to the mailing list). Since the folks most likely to care about the package are the folks that want to use it or are already using it, this would leverage the energy of users who aren't developers.
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-05Only @PREFIX@ is used.joerg1-2/+1
2006-01-05Use the SUBST framework on the right files. FAQ now has the correctjoerg1-11/+7
entries. Bump revision due to this.
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-09-28Removed trailing white-space.rillig1-2/+2
2005-06-17Create directories before installing files into them.jlam1-1/+2
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-1/+3
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-22Remove USE_GNU_TOOLS and replace with the correct USE_TOOLS definitions:jlam1-2/+2
USE_GNU_TOOLS -> USE_TOOLS awk -> gawk m4 -> gm4 make -> gmake sed -> gsed yacc -> bison
2005-05-02RCD_SCRIPTS_EXAMPLEDIR is no longer customizable.reed1-1/+2
And always is defined as share/examples/rc.d which was the default before. This rc.d scripts are not automatically added to PLISTs now also. So add to each corresponding PLIST as required. This was discussed on tech-pkg in late January and late April. Todo: remove the RCD_SCRIPTS_EXAMPLEDIR uses in MESSAGES and elsewhere and remove the RCD_SCRIPTS_EXAMPLEDIR itself.
2005-02-23Add RMD160 checksums to the SHA1 ones.wiz1-1/+2
2004-12-28The default location of the pkgsrc-installed rc.d scripts is nowreed1-2/+2
under share/examples/rc.d. The variable name already was named RCD_SCRIPTS_EXAMPLEDIR. This is from ideas from Greg Woods and others. Also bumped PKGREVISION for all packages using RCD_SCRIPTS mechanism (as requested by wiz).
2004-10-11RCD_SCRIPTS_EXAMPLEDIR was just changed to be a relative directoryreed1-2/+2
under ${PREFIX} instead of being an absolute path. So fix the references using RCD_SCRIPTS_EXAMPLEDIR to be ${PREFIX}/${RCD_SCRIPTS_EXAMPLEDIR}. This should have no changes to use before. Please note that the MESSAGE files in most cases are wrong in the first place. We have automated mechanisms and could have an automated message for explaining rc.d script usage. (This is something to do!)
2004-04-23Fix references to rc.d scripts. This package uses RCD_SCRIPTSreed1-2/+2
which installs to ${RCD_SCRIPTS_EXAMPLEDIR}. But the MESSAGE referred to wrong hard-coded location if the RCD_SCRIPTS_EXAMPLEDIR was not the default. So use RCD_SCRIPTS_EXAMPLEDIR instead. PKGREVISION not bumped because if someone had changed RCD_SCRIPTS_EXAMPLEDIR before recent change of autoregistration of rc.d script in PLIST, then it could not have been packaged in first place. Note that this commit does not imply that the MESSAGE is correct. In some cases, the MESSAGE is clearly wrong such as suggesting running the rc.d script from the example directory (which will work although).
2004-04-23mk/bsd.pkg.install.mk now automatically registersreed1-2/+1
the RCD_SCRIPTS rc.d script(s) to the PLIST. This GENERATE_PLIST idea is part of Greg A. Woods' PR #22954. This helps when the RC_SCRIPTS are installed to a different ${RCD_SCRIPTS_EXAMPLEDIR}. (Later, the default RCD_SCRIPTS_EXAMPLEDIR will be changed to be more clear that they are the examples.) These patches also remove the etc/rc.d/ scripts from PLISTs (of packages that use RCD_SCRIPTS). (This also removes now unused references from openssh* makefiles. Note that qmail package has not been changed yet.) I have been doing automatic PLIST registration for RC_SCRIPTS for over a year. Not all of these packages have been tested, but many have been tested and used. Somethings maybe to do: - a few packages still manually install the rc.d scripts to hard-coded etc/rc.d. These need to be fixed. - maybe remove from mk/${OPSYS}.pkg.dist mtree specifications too.
2004-02-14Convert varargs-macros to old-style macros, to make the packagekristerw16-1/+2032
compile when using gcc 2.95.
2004-01-25Convert to look in the TTF subdir for its fonts (instead of thewiz7-21/+21
TrueType subdir), since that's where all ttf fonts in pkgsrc are installed into. PKGREVISION=1.
2004-01-24replace deprecated USE_GMAKE with USE_GNU_TOOLS+=make.grant1-2/+2
2004-01-02Oops. Forgot in previous commit.salo1-15/+0
2004-01-01Update to version 1.6.salo7-45/+48
- correct usage of PREFIX in MESSAGE - sort PLIST Changes: 1.6: ==== - Fixed ttSyncAll only looking at fontdir subdirectories - Added more robust checking for cachedir - Removed a constant path size limitation (for the Hurd) - Fixed a typo in "syncing" - Minor indentation fixes - Started the transition to using C++ strings - Changed the libfstt API: Fixed multiple memory leakages The member getString doesn't need the conversion buffer anymore - Fixed the output format of --gslist 1.5.1: ====== - Fixed a possible security problem by checking the byteorder magic in the connection handshake: bugtraq id 8255 1.5: ==== - Fixed multiple buffer overflows in the network packet handling code: CAN-2003-0581 - New encoding: iso8859-14 - Moved hardcoded dir locations to configure space - Mkdir the fontdir and cachedir in the make install target - Improve error messages when cachedir does not exist - Remove --gslist dependency on order of arguments - Replaced dprintfN with a debug function - Cleaned the debugging output - Indentation and minor source cosmetic changes - Updated to gettext 0.12.1, version 0.11.5 was buggy - Added a System V init file example - Cleaned the examples in doc/examples: font.properties, test.sh - Updated the documentation: doc/FAQ, INSTALL, THANKS, TODO, xfstt.1x
2003-12-20add missing trailing / to HOMEPAGE.grant1-2/+2
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-02Use tech-pkg@ in favor of packages@ as MAINTAINER for orphaned packages.jschauma1-2/+2
Should anybody feel like they could be the maintainer for any of thewe packages, please adjust.
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-2/+2
2003-02-22Updated to version 1.4.salo10-82/+135
Changes: - added MESSAGE file with post-install instructions - minor cleanups 1.4: ==== - Auto* tools - Initial i18n support (not used yet) - Fixed slow down with some programs using FS_ListFontsWithXInfo - Fixed childs unlinking unix socket when father uid == childs uid - Added an option to specify pidfile location - Added endpwent() to prevent leaking one fd - Changed usage output 1.3.1: ====== - Added --cache description to man page
2003-01-28Instead of including bsd.pkg.install.mk directly in a package Makefile,jlam1-2/+2
have it be automatically included by bsd.pkg.mk if USE_PKGINSTALL is set to "YES". This enforces the requirement that bsd.pkg.install.mk be included at the end of a package Makefile. Idea suggested by Julio M. Merino Vidal <jmmv at menta.net>.
2002-09-29Two fixes from Urban Boquist. Closes PR 18197.wiz2-4/+4
2002-09-27Make this work with xpkgwedge by using PREFIX instead of X11BASE.grant6-21/+30
Bump PKGREVISION. Fixes pkg/18197 from Urban Boquist <urban@boquist.net>.
2002-09-27* use bsd.pkg.install.mk and automatic rc.d script handling.grant2-21/+16
* convert to rc.subr-style script.
2002-09-20add missing RCD Id.grant1-0/+3
2002-08-22grr, files missed in last commit.grant3-13/+19
Update to xfstt-1.3. Significant changes since 1.2: * Fixed unix socket and its dir permissions * Added full path to unix socket address and use sockaddr_un instead * Added support for --notcp * Removed hard coded limits on path length (needed by the Hurd) Significant changes since 1.1: * Fixes bug that broke xfstt when using unix * domain sockets under linux 2.4 * Fixed bug in realloc() use. * Added Patch for Boxdrawing glyphs * New Encodings: iso8859_11 (latin/Thai) and koi8_u * Now compiles properly under newer versions of gcc
2002-08-22Update to xfstt-1.3.grant3-142/+23
Significant changes since 1.2: * Fixed unix socket and its dir permissions * Added full path to unix socket address and use sockaddr_un instead * Added support for --notcp * Removed hard coded limits on path length (needed by the Hurd) Significant changes since 1.1: * Fixes bug that broke xfstt when using unix * domain sockets under linux 2.4 * Fixed bug in realloc() use. * Added Patch for Boxdrawing glyphs * New Encodings: iso8859_11 (latin/Thai) and koi8_u * Now compiles properly under newer versions of gcc
2002-07-18use @X11BASE@ in xfstt.1 instead of '/usr/X11R6' - yuck!grant3-6/+6
2001-11-29Get rid of manually adding "nbX" to PKGNAME when a pkg was changed inhubertf1-2/+2
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-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-04-19Move to sha1 digests, and add distfile sizes.skrll1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-10/+8
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-28$() -> ${}wiz1-3/+3
2001-02-28We want RCS Ids in the patches.wiz1-0/+1
This is one of the things pkglint checks, so _please_ use it.
2001-02-25Cleanup MKDIR usage => INSTALL_*_DIRhubertf1-2/+2
XXX need to teach pkglint to be more picky about this
2001-02-18rc.d script, from PR 12201hubertf1-0/+19
2001-02-18 * Add --notcp option, to only listen on unix domain socket, not TCP socket.hubertf5-8/+104
* Add rc.d startup script * Update pkg name to xfstt-1.1nb1 Code based on FreeBSD port, submitted by Martti Kuparinen <martti.kuparinen@iki.fi> in PR 12201
2001-02-17Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-09-04TrueType font server for X11kim10-0/+158