summaryrefslogtreecommitdiff
path: root/editors/ted
AgeCommit message (Collapse)AuthorFilesLines
2010-12-23Mechanically replace references to graphics/jpeg with the suitabledsainty1-4/+4
alternative from mk/jpeg.buildlink3.mk This allows selection of an alternative jpeg library (namely the x86 MMX, SSE, SSE2 accelerated libjpeg-turbo) via JPEG_DEFAULT=libjpeg-turbo, and follows the current standard model for alternatives (fam, motif, fuse etc). The mechanical edits were applied via the following script: #!/bin/sh for d in */*; do [ -d "$d" ] || continue for i in "$d/"Makefile* "$d/"*.mk; do case "$i" in *.orig|*"*"*) continue;; esac out="$d/x" sed -e 's;graphics/jpeg/buildlink3\.mk;mk/jpeg.buildlink3.mk;g' \ -e 's;BUILDLINK_PREFIX\.jpeg;JPEGBASE;g' \ < "$i" > "$out" if cmp -s "$i" "$out"; then rm -f "$out" else echo "Edited $i" mv -f "$i" "$i.orig" && mv "$out" "$i" fi done done
2010-07-20s/with-motif/with-MOTIF/ - make sure motif is selected.markd1-2/+2
2010-06-14Update to 2.21:wiz4-47/+54
Changes since 2.17 not found. 2.17: Changes: This release finishes the numbered lists. All tools have a 'Close' button now. The configurable resources mechanism now works without X11 for command line calls. There is preliminary support for 'shapes', the newer Word figures mechanism. There is support for the Euro sign if the font supports it. With some configuration, Ted can now use most fonts configured in GhostScript. It uses more CSS and fewer tables in HTML. Many annoying bugs were fixed.
2010-06-13Bump PKGREVISION for libpng shlib name change.wiz1-5/+6
Also add some patches to remove use of deprecated symbols and fix other problems when looking for or compiling against libpng-1.4.x.
2010-01-18Second try at jpeg-8 recursive PKGREVISION bump.wiz1-2/+2
2009-09-11Pass down X11BASE/lib explicitly to avoid empty rpath optionsjoerg1-1/+3
2009-08-26bump revision because of graphics/jpeg updatesno1-2/+2
2009-06-14Remove @dirrm entries from PLISTsjoerg1-5/+1
2008-03-03Mechanical changes to add DESTDIR support to packages that installjlam1-9/+11
their files via a custom do-install target.
2007-06-08Remove dead MASTER_SITES. From Zafer Aydogan.wiz1-3/+2
2006-12-27- fine grained X11 dependencies for packages which have either USE_IMAKEjoerg1-3/+3
or USE_X11BASE set, but don't include mk/x11.buildlink3.mk directly or via buildlink3.mks - introduce BUILDLINK_PREFIX.libXpm as alias for BUILDLINK_PREFIX.xpm in the !modular case - fix some cases where the check for libX11 couldn't work at all by using C++ for compilation without including the proper headers Verified using a full X11_TYPE=xorg bulk build without additional breakage. Discussed with salo@, wiz@ and send to packages@ for feedback.
2006-12-15Mechanically replace all includes of buildlink3.mk of the followingjoerg1-2/+2
packages with the modular Xorg equivalent. Those are falling back to the old location by default, so this commmit doesn't change dependencies. graphics/xpm ==> x11/libXpm fonts/Xft2 ==> x11/libXft x11/Xfixes ==> x11/libXfixes x11/xcursor ==> x11/libXcursor x11/Xrender ==> x11/libXrender x11/Xrandr ==> libXrandr
2006-04-17Bump BUILDLINK_ABI_DEPENDS.png and PKGREVISION for png-1.2.9nb2 update.wiz1-2/+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
2005-12-12Bump all motif packages for recent openmotif update. The major versionjoerg1-2/+2
of the shared libXm has changed.
2005-07-18Do not include <malloc.h>.kristerw2-1/+14
2005-07-15Drop distinction between PKGSRC_USE_TOOLS and USE_TOOLS by makingjlam1-2/+2
PKGSRC_USE_TOOLS go away. There is now only a single USE_TOOLS variable that specifies all of the tools we need to build/run the package.
2005-05-23Removed trailing white-space.rillig1-1/+1
2005-05-16Note that gtar is required by the package.jlam1-1/+3
2005-04-11Remove USE_BUILDLINK3 and NO_BUILDLINK; these are no longer used.tv1-2/+1
2005-02-23Add RMD160 digests in addition to the SHA1 ones.agc1-1/+2
2005-02-23Enable pkgviews installation. Patches provided by Joachim Kuebart onminskim1-1/+5
tech-pkg@.
2004-12-28Bump PKGREVISIONs due to libtiff update.reed1-2/+2
Some BUILDLINK_RECOMMENDED bumps done also. (If I missed any, please let me know -- and let me know a good way to automate this.)
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-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv1-1/+2
in the process. (More information on tech-pkg.) Bump PKGREVISION and BUILDLINK_DEPENDS of all packages using libtool and installing .la files. Bump PKGREVISION (only) of all packages depending directly on the above via a buildlink3 include.
2004-05-11Update Ted to version 2.16markd2-8/+7
Changes since version 2.14 (Ted 2.16 Apr 18, 2004) * Fixed some bugs, in particular a crash after you deleted a table near the end of a document. Additionally many bugs relating to (foot)notes were fixed. * More navigation keys work like in MS-Word. * Refresh of some of the translations and spelling dictionaries. * Support for a second custom print command to support both ghostview for print preview and xpp for double sided printing. (Ted 2.15 Apr 5, 2004) * Norwegian window texts * Printing (and so pdf conversion) of embedded macpict images * Bug fixes. * Mapping between rtf, PostScript and X11 fonts revisited. Preparations for the integration with the GhostScript font installation. Fonts can be embedded in the printout to print on any printer. * Separated Spanish Spanish texts and Argentinial Spanish texts. * Many fixes to support Central European and Greek files. * Very thoroughly tested by Jonathan Drews and Axel Schwarzer.
2004-04-12Convert to buildlink3.snj1-8/+8
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2004-01-03Bump package revisions for tiff update.reed1-1/+2
Tiff is backward compatible, but was broken on amd64 platform so this makes sure new tiff is used.
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-06-06Help configure scripts find libraries when they are not located in standardjmmv1-1/+16
places.
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-7/+7
2003-04-09Update ted to version 2.14.markd5-43/+46
(Ted 2.14 April 6, 2003) * Initial support for Macintosh pict images * Table Headers * Bug in image rendering on 256 color screens solved * Fixes in German package * Brazilian window texts * Tabs in page headers/footers finally saved in such a way that they are picked up by MS-Word 2000 (Ted 2.13 March 15, 2003) * Options for making much more compact PostScript when a document is printed. * Support for smallcaps. * Upgraded the pdfmarks to a version that more recent versions of acroread support. * Default codepage for new documents now is 1252. The defaultAnsicpg resource must be used to set a different one. * Make the print dialog usable when there is a huge number of printers. * Partial implementation of rowspan/colspan of table cells. (Ted 2.12 December 1, 2002) * GTK version is now more mature and even usable. Source Adapted to GTK 2.0 * Solid shading of paragraphs and table cells. * Colored table cell borders, Text colors. * GTK version uses X11 resources for configuration, like the Motif version. * To change the hyperlinks as saved by older versions of Ted to blue and underlined once run the command TED_HYPERLINKS_BLUE=1 Ted old.rtf and save the document.
2002-10-08buildlink1 -> buildlink2jlam1-6/+8
2002-09-24Complete standardization of messages according to latest pkglint.wiz1-3/+3
2002-05-20Add NetBSD tags.cjep5-0/+5
2002-04-21Stop complaints about PKGDIR being redefined.markd4-3/+35
Fixes pkg/16408 from Robert Elz.
2002-04-09Stop "-I/usr/include" from explicitly appearing in CFLAGS as this breaksmarkd4-23/+34
gcc's overriding of some system header files on non-NetBSD platforms.
2002-04-09Update Ted to version 2.11markd4-23/+21
Changes since version 2.10 * Footnotes and endnotes. * Detailed manipulation of the tabulator settings with a 'Tabs' tool. * Bugs and annoyances have been removed. In particular the crash with printing on lp based systems like RedHat Linux 7. * Added the posiibility to convert to PostScript without even touching the X11 environment. * Windows Metafile picture rendering extended to more types of metafiles. As most images in rtf files are metafiles this solves problems with the more complicated ones. * Better portability to older systems. * Jouk Jansen contributed fixes for a port to OpenVMS. * Preparations for multi column layout. * Preparations for 'Undo'
2002-03-13Give all packages which depend on "png" a version bump, and updatefredb1-1/+2
all dependencies on packages depending on "png" which contain shared libraries, all for the (imminent) update to the "png" package. [List courtesy of John Darrow, courtesy of "bulk-build".]
2001-10-31Move pkg/ files into package's toplevel directoryzuntum3-2/+2
2001-09-08Use mk/motif.buildlink.mk instead of lesstif/buildlink.mk.jlam1-2/+2
2001-08-24Make this build again after an API change for png_info_init()hubertf2-1/+24
in latest png (1.0.12 or so)
2001-07-23Ted installs an app-defaults file, so he should install into X11BASE bywiz1-2/+2
default. Problem noted in recent bulk build.
2001-07-04Use lesstif/buildlink.mk instead of USE_MOTIF. Also remove settingjlam1-3/+2
of USE_BUILDLINK_ONLY as it's not really true.
2001-06-29Converted to use buildlink.mk fileszuntum1-6/+6
2001-05-22Update dependency on png to >=1.0.11 because of the shlib major bump.wiz1-4/+4
Noted by Frederick Bruckman.
2001-05-19Update ted and its spell checking libraries to 2.10.wiz4-27/+17
Changes are unknown, except that it doesn't depend on libungif anymore. XXX: Merge the spellchecking packages? XXX: There are three more for sk, hu, and pl, if anybody cares.