summaryrefslogtreecommitdiff
path: root/graphics/plotutils
AgeCommit message (Collapse)AuthorFilesLines
2006-02-05Recursive revision bump / recommended bump for gettext ABI change.joerg2-4/+4
2005-06-01Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc.jlam1-2/+2
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-24Add RMD160 digestsagc1-1/+2
2004-11-13Replace USE_GCC_SHLIB with "USE_LANGUAGE=c c++" (the latter implies thejlam1-2/+1
former) for applications that are known to require C++.
2004-10-03Libtool fix for PR pkg/26633, and other issues. Update libtool to 1.5.10tv2-3/+4
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-09-22Mechanical changes to package PLISTs to make use of LIBTOOLIZE_PLIST.jlam1-9/+1
All library names listed by *.la files no longer need to be listed in the PLIST, e.g., instead of: lib/libfoo.a lib/libfoo.la lib/libfoo.so lib/libfoo.so.0 lib/libfoo.so.0.1 one simply needs: lib/libfoo.la and bsd.pkg.mk will automatically ensure that the additional library names are listed in the installed package +CONTENTS file. Also make LIBTOOLIZE_PLIST default to "yes".
2004-06-15plotutils uses a c and c++ compiler.grant1-1/+2
XXX these packages need to be made to use a common Makefile fragment.
2004-05-31Enable pkgviews installation. Patches provided by Joachim Kuebart onminskim1-1/+3
tech-pkg@.
2004-05-03Unused.wiz1-24/+0
2004-03-18Fix serious bug where BUILDLINK_PACKAGES wasn't being ordered properlyjlam1-3/+2
by moving the inclusion of buildlink3.mk files outside of the protected region. This bug would be seen by users that have set PREFER_PKGSRC or PREFER_NATIVE to non-default values. BUILDLINK_PACKAGES should be ordered so that for any package in the list, that package doesn't depend on any packages to the left of it in the list. This ordering property is used to check for builtin packages in the correct order. The problem was that including a buildlink3.mk file for <pkg> correctly ensured that <pkg> was removed from BUILDLINK_PACKAGES and appended to the end. However, since the inclusion of any other buildlink3.mk files within that buildlink3.mk was in a region that was protected against multiple inclusion, those dependencies weren't also moved to the end of BUILDLINK_PACKAGES.
2004-03-05Reorder location and setting of BUILDLINK_PACKAGES to match templatejlam1-9/+8
buildlink3.mk file in revision 1.101 of bsd.buildlink3.mk.
2004-02-21bl3ifyminskim2-3/+25
2004-02-18Remove info files entries from PLIST.seb1-2/+1
2003-09-09Fix build with gcc3 using patches provided by Kouichirou Hiratsuka.jmmv6-1/+116
Closes PR pkg/22443.
2003-08-09USE_NEW_TEXINFO is unnecessary now.seb1-2/+1
2003-07-17s/netbsd.org/NetBSD.org/grant1-2/+2
2003-07-03Convert to USE_NEW_TEXINFO.seb2-6/+6
While here fix CONFLICTS.
2003-06-07Split plotutils and gnuplot into '<pkgname>' and '<pkgname>-nox11' eachjschauma2-20/+11
(alternatively, we could have renamed one to '<pkgname>-x11', but for the element of least surprise, the default remains x11 enabled). This will work much better than the previous attempt to build two packages from one Makefile, which wasn't all thought out wrt to dependencies, buildlinks etc. Bump PKGREVISION on plotutils and gnuplot for this.
2003-06-06If X11 is present, set the pkgname to plotutils-x11 and conflict withjschauma1-1/+5
plain plotutils (and the other way around). ok'd by agc.
2003-06-04We need bsd.prefs.mk -- sheesh, I should go home.jschauma1-1/+3
2003-06-04thiss package works with and without X11, but if X11 is present, we need thejschauma1-1/+7
necessary compile and ld flags
2003-06-04These don't really need X after all -- they can be useful on headlessjschauma1-2/+1
machines without X, too, so remove USE_X11.
2003-05-29s/USE_CXX/USE_GCC_SHLIB/ - there are more shared libraries than justgrant1-2/+2
libstdc++ in gcc3. when defined, USE_GCC_SHLIB ensures that the correct rpath is passed to the linker, and a full dependency on the compiler package is registered. packages which define USE_GCC_SHLIB should not include mk/gcc.buildlink2.mk (or gcc{,3}/buildlink2.mk) as it is handled automatically.
2003-05-06Drop trailing whitespace. Ok'ed by wiz.jmmv1-5/+5
2003-01-25Add a buildlink2.mk file for use by other package Makefiles.jlam1-0/+24
2003-01-25Use buildlink2.jlam1-5/+5
2002-03-13Give all packages which depend on "png" a version bump, and updatefredb1-2/+3
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".]
2002-02-18Introduce new framework for handling info files generation and installation.seb2-6/+5
Summary of changes: - removal of USE_GTEXINFO - addition of mk/texinfo.mk - inclusion of this file in package Makefiles requiring it - `install-info' substituted by `${INSTALL_INFO}' in PLISTs - tuning of mk/bsd.pkg.mk: removal of USE_GTEXINFO INSTALL_INFO added to PLIST_SUBST `${INSTALL_INFO}' replace `install-info' in target rules print-PLIST target now generate `${INSTALL_INFO}' instead of `install-info' - a couple of new patch files added for a handful of packages - setting of the TEXINFO_OVERRIDE "switch" in packages Makefiles requiring it - devel/cssc marked requiring texinfo 4.0 - a couple of packages Makefiles were tuned with respect of INFO_FILES and makeinfo command usage See -newly added by this commit- section 10.24 of Packages.txt for further information.
2001-10-31Move pkg/ files into package's toplevel directoryzuntum2-1/+1
2001-06-11CPPFLAGS is now passed to MAKE_ENV and CONFIGURE_ENV by bsd.pkg.mk, sojlam1-2/+1
adapt by moving CPPFLAGS settings to top-level, and removing explicit inclusion of CPPFLAGS into MAKE_ENV and CONFIGURE_ENV.
2001-05-22Update dependency on png to >=1.0.11 because of the shlib major bump.wiz1-2/+2
Noted by Frederick Bruckman.
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 distinfoagc2-7/+1
+ move the patch digest/checksum values from files/patch-sum to distinfo
2001-03-04Because the minor number of the PNG library was increased packages compiledtron1-2/+2
using the newest PNG library won't work on system with an older one. To prevent such problems with precompiled binary packages require at least "png-1.0.9nb1" in all dependences.
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/+5
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-08-25make sure configure actually finds pngdmcmahill1-4/+4
2000-08-24add depends on png so we always get that functionalitydmcmahill1-1/+3
2000-08-24Update to plotutils-2.4.1.dmcmahill3-8/+10
Many bug fixes since the last release. For a complete list of changes refer to the NEWS file. Notable additions include: libplot: SVG driver added, which outputs the new XML-based SVG (scalable vector graphics) format. documentation: man page for plotfont added. libplot: completely new metafile export driver, written from scratch. libplot: ReGIS driver added, which outputs ReGIS (DEC's remote graphics instruction set, understood by DEC's VT340 and earlier terminals, and also emulators like DEC's decterm). No support yet for filling paths that extend beyond the boundaries of a ReGIS display, due to a need for clipping code. graph,plot,tek2plot,plotfont,pic2plot: `-T png' now allowed if libplot contains a PNG driver. libplot: PNG driver added, which outputs PNG (portable network graphics) format. Included only if libpng (version number >= 0.95) and libz are found at package installation time. `configure' now supports a `--without-libpng' option to disable PNG support.
2000-08-17remove file overlooked in last commitwiz1-24/+0
2000-08-14USE_PKGLIBTOOL -> USE_LIBTOOL. LTCONFIG_OVERRIDE saves a patch.wiz3-15/+21
2000-07-18Rename PKGNAME of plotutils to "plotutils-2.3nb1" as suggested.itohy1-3/+3
2000-07-18Enable C++ support, required by pstoedit.itohy2-21/+35
This includes "libplotter" library and "pic2plot" utility. Change PKGNAME to plotutils-2.3.0 to distinguish this from non C++ version. ^^
2000-06-01s/USE_LIBTOOL/USE_PKGLIBTOOL/rh1-2/+2
Add a new USE_LIBTOOL definition that uses the libtool package instead of pkglibtool which is now considered outdated. USE_PKGLIBTOOL is available for backwards compatibility with old packages but is deprecated for new packages.
2000-01-05Strip trailing '.', and/or leading '(a|an) 'abs1-1/+1
1999-10-10fix broken patch-sumdmcmahill1-2/+2
1999-10-10Update to plotutils-2.3. Changes include:dmcmahill5-21/+29
- PNM driver added, which outputs PBM/PGM/PPM format. - CGM support added, By default, a CGM Plotter produces binary-encoded version-3 CGM format, which conforms to the WebCGM profile. - pseudo-GIF driver added, using miGIF run-length encoding routines - text string format now supports "\fP" macro for switching to previous font (cf. troff; "\fR", "\fI", "\fB" supported too). - libplotter: new C++ library. Provides base Plotter class, subclasses for the different sorts of Plotter. - new "dotdotdashed" line style added - new thread save C/C++ API added (old API still supported) - pic2plot: new utility, which can translate the pic language to any supported graphics format, including X11. - new function pentype() added to the API. - many bug fixes. See the file 'NEWS' in the source distribution for a complete list (a couple of pages).
1999-07-09Add package patch-sum filesagc1-0/+3
1999-04-14Remove unnecessary slash from master site list.tron1-2/+2