summaryrefslogtreecommitdiff
path: root/editors/vigor
AgeCommit message (Collapse)AuthorFilesLines
2014-01-20Fix build with TCL 8.6joerg1-1/+3
2014-01-11Revbump after updating tcl/tk.adam1-2/+2
2013-06-06Bump PKGREVISION for libXft changes for NetBSD native X support onwiz1-2/+2
NetBSD 6, requested by tron.
2013-06-04Try to fix the fallout caused by the fix for PR pkg/47882. Part 3:tron1-2/+2
Recursively bump package revisions again after the "freetype2" and "fontconfig" handling was fixed.
2013-06-03Bump freetype2 and fontconfig dependencies to current pkgsrc versions,wiz1-2/+2
to address issues with NetBSD-6(and earlier)'s fontconfig not being new enough for pango. While doing that, also bump freetype2 dependency to current pkgsrc version. Suggested by tron in PR 47882
2013-05-31Bump all packages for perl-5.18, thatwiz1-2/+2
a) refer 'perl' in their Makefile, or b) have a directory name of p5-*, or c) have any dependency on any p5-* package Like last time, where this caused no complaints.
2013-04-06Fixes:rodent1-2/+2
COMMENT should not be longer than 70 characters. COMMENT should not begin with 'A'. COMMENT should not begin with 'An'. COMMENT should not begin with 'a'. COMMENT should not end with a period. COMMENT should start with a capital letter. pkglint warnings. Some files also got minor formatting, spelling, and style corrections.
2012-10-03Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-3/+1
2012-08-21Recursive PKGREVISION bump for tcl and tk upgrade to 8.5.12marino1-2/+2
2012-08-07editor/vigor: post-patch operation broke DragonFlymarino1-1/+5
DragonFly replaced CIRCLEQ_* with TAILQ_* a few years back. The system sys/queue.h will not build editors/vigor. The Makefile's post-patch phase removed it's version of queue.h because it masked the system sys/queue.h, which is exactly what is required for DragonFly. Make this post-patch operation system specific: Do it only for non-DragonFly platforms.
2012-06-17Needs curses, not just termcap. Not bumping revision since it won't havedholland1-2/+2
built since the previous bump, except where curses and termcap pull in the same depends, in which case it doesn't matter.
2012-06-15vigor only works with db1, so if db1 is builtin use it, otherwise usesbd1-4/+13
the included db implementation. Bump PKGREVISION.
2012-06-14Add missing termcap buildlink.sbd1-2/+3
Bump PKGREVISION.
2012-03-08* No need to USE_DB185=yes, it's default behaviour for the case db1 is ↵obache1-4/+1
acceptable. * No need to conditional db.h => db_185.h, it will be handled by db1.builtin.mk.
2012-03-07Fix build on SunOS.hans1-4/+13
- uses db1, so include bdb.buildlink3.mk etc. - don't build catpage
2010-01-29DESTDIR supportjoerg1-1/+5
2009-06-14Remove @dirrm entries from PLISTsjoerg1-5/+1
2007-01-08Needs libXt for configure.joerg1-1/+4
2006-03-21Remove BROKEN_IN because this package is not broken in recent bulk buildsminskim1-3/+1
on i386.
2006-03-21Make patches general so that the package builds on more platforms.minskim4-9/+41
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-03-02Fix build on NetBSD>=3.0.wiz2-1/+24
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg1-2/+2
2006-01-04Express these packages' brokenness with BROKEN_IN=pkgsrc-2005Q4schmonz1-3/+2
rather than PKG_FAIL_REASON, so that they provide useful error messages in build logs, and so that they continue to work on platforms where they aren't broken.
2005-12-26Mark packages for pkgsrc-2005Q4 that don't build on NetBSD/i386schmonz1-1/+4
3.0. If one of these is important to you, please fix it in time for pkgsrc-2006Q1, or it may be removed.
2005-11-03Fixed invalid use of WRKSRC.rillig5-20/+20
2005-06-19Prevent paths to the build directories from being included in the package.kristerw1-2/+4
Bump PKGREVISION.
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+1
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-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-21Sign over maintainership to tech-pkg@hubertf1-2/+2
2005-01-22Switch to Tcl/Tk-8.4.minskim4-26/+38
Bump PKGREVISION due to dependency changes.
2004-04-11Convert to buildlink3.snj1-3/+3
2004-03-08Enable tk84 and replace x11/tk with x11/tk83. Packages compatibleminskim1-2/+2
with 8.4 will be updated to depend on x11/tk after Tk update.
2004-01-20Move WRKSRC definition away from the first paragraph in a Makefile.agc1-2/+2
2003-09-09fix mastersite/homepagehubertf1-3/+3
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-03-29Place WRKSRC where it belongs, to make pkglint happy; ok'ed by wiz.jmmv1-2/+2
2003-01-29Use buildlink2.agc1-3/+9
Also fix build problems - there is a <sys/queue.h> header file bundled with vigor which will take precedence over the system header, but lacks some necessary definitions for NetBSD (at least). Remove the header accordingly.
2001-11-15Update vigor to 0.016. Changes:hubertf5-46/+48
Version 0.016 (May 2 19:36) * Enable Version 0.015 (Mar 25 15:17) * Disable by default built-in curses, db, and re libraries. Most OS's these days have proper libraries for these, and I was seeing conflicts (particularly on SuSE under Vigor 0.014). This may break things on some other OS's, probably older ones. If so, try using --enable-curses --enable-db --enable-re on the command line. Version 0.014 (Feb 8 14:50) * Remove the hack to the EULA that produced the Jumping Vigor Bug. Version 0.013 (Feb 5 11:53) * Fix to configure.in: it looked for Tcl on Debian systems when it was supposed to look for Tk. Version 0.012 (Feb 4 00:28) * Updated EULA, made dialog box move along with assistant Version 0.011 (Feb 2 00:10) * Look for libtcl8.2 etc (as opposed to libtcl82 etc); handle select() calls prior to assistant initialization
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-09-27Mechanical changes to 375 files to change dependency patterns of the formjlam1-2/+2
foo-* to foo-[0-9]*. This is to cause the dependencies to match only the packages whose base package name is "foo", and not those named "foo-bar". A concrete example is p5-Net-* matching p5-Net-DNS as well as p5-Net. Also change dependency examples in Packages.txt to reflect this.
2001-05-05Mechanical changes of tk DEPENDS:jlam1-2/+2
tk-8.3.2 -> tk>=8.3.2 tk-[0-9]* -> tk>=8.0 tk-8.* -> tk>=8.0
2001-04-19Move to sha1 digests, and add distfile sizes.agc1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc3-7/+5
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-09-03add RCS Idwiz1-0/+1
2000-08-30Adapt this package to tcl-8.3.2 and tk-8.3.2.jwise3-5/+26
(Good to see the really important packages get done :-) )
2000-02-05RCS tag addedwiz1-0/+1
2000-01-21put back RCS Idjdolecek1-0/+2