summaryrefslogtreecommitdiff
path: root/graphics/grap
AgeCommit message (Collapse)AuthorFilesLines
2015-11-03Add SHA512 digests for distfiles for graphics categoryagc1-1/+2
Problems found with existing digests: Package fotoxx distfile fotoxx-14.03.1.tar.gz ac2033f87de2c23941261f7c50160cddf872c110 [recorded] 118e98a8cc0414676b3c4d37b8df407c28a1407c [calculated] Package ploticus-examples distfile ploticus-2.00/plnode200.tar.gz 34274a03d0c41fae5690633663e3d4114b9d7a6d [recorded] da39a3ee5e6b4b0d3255bfef95601890afd80709 [calculated] Problems found locating distfiles: Package AfterShotPro: missing distfile AfterShotPro-1.1.0.30/AfterShotPro_i386.deb Package pgraf: missing distfile pgraf-20010131.tar.gz Package qvplay: missing distfile qvplay-0.95.tar.gz Otherwise, existing SHA1 digests verified and found to be the same on the machine holding the existing distfiles (morden). All existing SHA1 digests retained for now as an audit trail.
2014-10-09Remove pkgviews: don't set PKG_INSTALLATION_TYPES in Makefiles.wiz1-3/+1
2014-08-31Update to 1.45:wiz2-6/+6
1.45 Eric Raymond caught a typo in the grap man page. Various small code changes to remove clang and recent g++ warnings.
2014-07-22Update to 1.44. Set LICENSE.wiz4-52/+11
1.44 Modern g++ seems to dislike *printf without a constant format string if there are no other aguuments and was causing compiles to fail. Fixed warning and patch from Tobias Quathamer. Manpage spelling fix from Tobias Quathamer. John Heidemann pointed out that plot doesn't accept modifiers to strings (though he didn't phrase it that way). The short form is that plot bullet at x,y wasn't working. I've adjusted plot to make the string modifiers into active keywords, which fixes the problem. Someone named Y T pointed out that there was no mod operator (%). There is now. This marks the transition from my home brewed Makefiles to automake-generated makefiles. A couple largely unused options went away, but with any luck we still build everywhere. Robert Daasch submitted a patch to include floor and ceil fuctions. That's been incorporated. (His patch also included adding a mod operator, but I'd already done that.) Added minimal support for dates, by adding versions of strftime and strptime that return and accept seconds since the unix epoch. 1.43 Bruce Lilly pointed out that g++ 4.3.1 was emitting all sorts of dire warnings about the hash_map data structure and associated support being pulled from g++ in the future. SuSe seems to ship with this and there's no point scaring people (or letting a time bomb tick). Grap now detects and uses unordered_map if it's present on your system, which stops the wailing and gnashing of teeth from g++ 4.3.1 . That g++ version also requires a compiler option to support that include file, which we also autodetect and use. (This is essentially autodetecting the flags described in the changes to grap 1.41 below, along with some code changes to make that actually function correctly.) A fellow named Fergus had a Cygwin compilation problem as well. His system apparently had rand but not random (a very rare configuration these days). This led me to find a corner of the autoconf code that I apparently hadn't checked sufficiently. If rand was found and a declaration made in the system files, the grap config stuff failed to note the declaration and made its own incompatible one. This should be gone now. Fergus's system also seemed to be lacking snprintf - which again is very odd. I hadn't reflected the change to grap sprintf in version 1.23 into the code that emulates snprintf on systems without it. That code has been added. Changed the examples to include a brief tutorial on string matching in grap. Suggested by John Heidemann. 1.42 There's been a long standing bug with how different versions of pic interpret the "line from (x,y) then down 5" construct. There was once a bug report at http://lists.gnu.org/archive/html/groff/2008-03/msg00003.html about this. As of version 1.42 grap no longer outputs this pic construct. Dan Lasley pointed out that the key was incomplete for the bar graph example. His fix to restore the key is included. John Heidemann points out that bars in coordinate systems other than the default just didn't work. This was a bug in my yacc grammer - for heaven's sake. It's corrected to match the manual page. For loops were strange in that .G1 for xx from 15 to 13 do { print "YYY" } print "ZZZZ" .G2 would loop infinitely. xx never passes 13. Added a test to make that a null loop as well as making .G1 for xx from 13 to 13 do { print "YYY" } print "ZZZZ" .G2 print one "YYY". You can still confuse loops, using strange by clauses - for example "by 0" or "by * -1" but common cases should be covered. Spotted by a fellow named Yuval. Found a lurking initializer bug while fixing the for loop thing. I added references to standard plot strings in a couple places to make them somewhat easier to find.
2012-10-06Drop superfluous PKG_DESTDIR_SUPPORT, "user-destdir" is default these days.asau1-2/+1
2009-06-30Mark packages as MAKE_JOBS_SAFE=no that failed in a bulk build withjoerg1-1/+3
MAKE_JOBS=2 and worked without.
2009-06-14Remove @dirrm entries from PLISTsjoerg1-4/+1
2007-12-22Fall back to c++ STL map instead of __gnu_cxx::hash_map even if we havetnn1-1/+3
the __gnu_cxx extensions. (The latter seems to trigger a crash.) Bump PKGREVISION.
2007-12-22Update to grap-1.41. Summary of changes:tnn4-32/+18
1.41: fix gcc-4.1/4.2 builds problems (this should include PR pkg/34378) 1.40: fixes regressions from 1.38 1.39: gcc-4.1 fixes 1.38: DESTDIR support (also enbled in pkgsrc) 1.37: fixes an EOF bug 1.36: grammar fixes 1.35: lex fixes 1.32: fixes parsing of color modifiers
2006-12-10Delete extraneous coord:: prefix to permit compilation with gcc4smb3-3/+17
2006-07-22Added "c" to USE_LANGUAGES for packages that use GNU configure scripts,rillig1-2/+2
since they always need a C compiler, even when the source code is completely in C++. For some other packages, stated in the comment that a C compiler is really not needed.
2006-06-08USE_TOOLS+=lex yaccminskim1-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-01-09Fix errno. Fix GCC 3.4+ constructor issues. Move an extern up into ajoerg4-8/+55
central header.
2005-02-24Add RMD160 digestsagc1-1/+2
2005-01-01Enable pkgviews installation.minskim1-1/+3
2005-01-01USE_LANGUAGES=c++minskim1-1/+2
2005-01-01This package doesn't need perl at all. Remove USE_PERL5.minskim1-2/+2
Bump PKGREVISION due to dependency change.
2004-01-14Fix build with gcc3agc2-1/+17
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-14Use CPPFLAGS for preprocessor defs. Allows setting of CXXFLAGSjtb2-1/+42
on the commandline. grap has problems being compiled with optimization on some machines.
2003-07-03patch-aa is gone. Remove it from distinfo. Pointed out byjtb1-2/+1
Thomas Klausner.
2003-06-29Update to version 1.30.jtb3-66/+5
The main change is the addition of color to grap. Other changes are bug fixes.
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.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-07-15Update to version 1.20.jtb4-30/+92
This version adds some new features. Embedded troff and pic commands are now interleaved more rationally with the generated pic commands. Grap is considerably more tolerant of using variable names that are the same as keywords or coordinate names. Details are in the CHANGES file.
2001-04-21Move to sha1 digests, and/or add distfile sizes.wiz1-2/+3
2001-04-17+ move the distfile digest/checksum value from files/md5 to distinfoagc1-1/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-04-14Change MAINTAINER section to packages@netbsd.orgjtb1-2/+2
2001-02-16Update to new COMMENT style: COMMENT var in Makefile instead of pkg/COMMENT.wiz2-2/+2
2000-11-25Fixed checksum mismatch.jtb1-2/+3
2000-11-25Initial import of new "grap" package:jtb5-0/+57
Language for typesetting graphs