pkgsrc/misc/siag/Makefile

42 lines
1.1 KiB
Makefile
Raw Normal View History

Massive cleanup of buildlink3.mk and builtin.mk files in pkgsrc. 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-06-01 20:02:37 +02:00
# $NetBSD: Makefile,v 1.45 2005/06/01 18:03:05 jlam Exp $
2001-11-30 01:55:17 +01:00
#
DISTNAME= siag-3.5.7
PKGREVISION= 4
CATEGORIES= misc textproc math
Update from 3.1.22 to 3.5.4. In four years change! Summary of changes from NEWS file. Note that this is the changes from the last major version. One of most notable things is that PDF output support is added to some sub programs. PW == + Left-, right- and center aligned adjustable tabs. + Left-, right- and center aligned plugins. + "Full" adjustment with straight left and right edges. + Print raised, lowered and underlined text properly. + Strikethrough. + Faster HTML (and hence Word) loader. + Display LaTeX and DVI files in the Clipart plugin. + Fetch stock quotes from Yahoo over the Internet. - Load and save as PDF - Colour printing. - Zoom. - Redisplay more efficiently. Siag ==== + $A$1 style references, which are not updated when cells are moved. + Examples for all functions. + Hundreds of functions, many Excel compatible, all documented in the function reference. + Arbitrary precision integer functions. + Arbitrary precision floating-point functions. + Rudimentary loading of ABS files. + New operators ** (power) and \ (quotient). + Complex numbers; example in complex.siag. + Matrix functions; example in matrix.siag. + New or updated documentation, automatically generated from the source. + "C" interpreter translates expressions to Scheme rather than evaluating the expression itself. + Convert currencies, using information from Yahoo over the Internet. - Save as PDF. - Colour printing. - Zoom. - Redisplay more efficiently. Egon ==== - Save as PDF. - Load and save plaintext. - Load and save HTML. - Load Powerpoint. - Load MagicPoint (rudimentary). - Keyboard control. - Updated documentation. - Postscript output and printing. - Background gradients. - Multiple buffers and sheets (pages). - Full-screen mode. All === + Support for the XDND drag and drop protocol. - New or updated translations: Brazilian, Czech, Danish, German, Russian, Spanish, Swedish - Image plugin redisplays more efficiently. And lots of small changes that are either invisible or too insignificant to mention here.
2003-01-17 03:09:36 +01:00
MASTER_SITES= ftp://siag.nu/pub/siag/
2003-07-17 23:41:05 +02:00
MAINTAINER= tech-pkg@NetBSD.org
2001-08-23 06:01:57 +02:00
HOMEPAGE= http://siag.nu/
COMMENT= Poor man's office suite with spreadsheet, word processor, etc
2002-03-14 01:49:00 +01:00
DEPENDS+= gv>=3.5.8nb1:../../print/gv
2001-03-22 14:30:58 +01:00
DEPENDS+= gnuplot>=3.7:../../graphics/gnuplot
CONFLICTS+= antiword-[0-9]*
Update from 3.1.22 to 3.5.4. In four years change! Summary of changes from NEWS file. Note that this is the changes from the last major version. One of most notable things is that PDF output support is added to some sub programs. PW == + Left-, right- and center aligned adjustable tabs. + Left-, right- and center aligned plugins. + "Full" adjustment with straight left and right edges. + Print raised, lowered and underlined text properly. + Strikethrough. + Faster HTML (and hence Word) loader. + Display LaTeX and DVI files in the Clipart plugin. + Fetch stock quotes from Yahoo over the Internet. - Load and save as PDF - Colour printing. - Zoom. - Redisplay more efficiently. Siag ==== + $A$1 style references, which are not updated when cells are moved. + Examples for all functions. + Hundreds of functions, many Excel compatible, all documented in the function reference. + Arbitrary precision integer functions. + Arbitrary precision floating-point functions. + Rudimentary loading of ABS files. + New operators ** (power) and \ (quotient). + Complex numbers; example in complex.siag. + Matrix functions; example in matrix.siag. + New or updated documentation, automatically generated from the source. + "C" interpreter translates expressions to Scheme rather than evaluating the expression itself. + Convert currencies, using information from Yahoo over the Internet. - Save as PDF. - Colour printing. - Zoom. - Redisplay more efficiently. Egon ==== - Save as PDF. - Load and save plaintext. - Load and save HTML. - Load Powerpoint. - Load MagicPoint (rudimentary). - Keyboard control. - Updated documentation. - Postscript output and printing. - Background gradients. - Multiple buffers and sheets (pages). - Full-screen mode. All === + Support for the XDND drag and drop protocol. - New or updated translations: Brazilian, Czech, Danish, German, Russian, Spanish, Swedish - Image plugin redisplays more efficiently. And lots of small changes that are either invisible or too insignificant to mention here.
2003-01-17 03:09:36 +01:00
CONFIGURE_ARGS+=--with-x
CONFIGURE_ARGS+=--with-guile
CONFIGURE_ARGS+=--with-docdir=${PREFIX}/share/doc/siag
2003-01-17 03:58:59 +01:00
GNU_CONFIGURE= YES
USE_TOOLS+= gmake
2003-01-16 04:05:01 +01:00
.include "../../mk/bsd.prefs.mk"
Update from 3.1.22 to 3.5.4. In four years change! Summary of changes from NEWS file. Note that this is the changes from the last major version. One of most notable things is that PDF output support is added to some sub programs. PW == + Left-, right- and center aligned adjustable tabs. + Left-, right- and center aligned plugins. + "Full" adjustment with straight left and right edges. + Print raised, lowered and underlined text properly. + Strikethrough. + Faster HTML (and hence Word) loader. + Display LaTeX and DVI files in the Clipart plugin. + Fetch stock quotes from Yahoo over the Internet. - Load and save as PDF - Colour printing. - Zoom. - Redisplay more efficiently. Siag ==== + $A$1 style references, which are not updated when cells are moved. + Examples for all functions. + Hundreds of functions, many Excel compatible, all documented in the function reference. + Arbitrary precision integer functions. + Arbitrary precision floating-point functions. + Rudimentary loading of ABS files. + New operators ** (power) and \ (quotient). + Complex numbers; example in complex.siag. + Matrix functions; example in matrix.siag. + New or updated documentation, automatically generated from the source. + "C" interpreter translates expressions to Scheme rather than evaluating the expression itself. + Convert currencies, using information from Yahoo over the Internet. - Save as PDF. - Colour printing. - Zoom. - Redisplay more efficiently. Egon ==== - Save as PDF. - Load and save plaintext. - Load and save HTML. - Load Powerpoint. - Load MagicPoint (rudimentary). - Keyboard control. - Updated documentation. - Postscript output and printing. - Background gradients. - Multiple buffers and sheets (pages). - Full-screen mode. All === + Support for the XDND drag and drop protocol. - New or updated translations: Brazilian, Czech, Danish, German, Russian, Spanish, Swedish - Image plugin redisplays more efficiently. And lots of small changes that are either invisible or too insignificant to mention here.
2003-01-17 03:09:36 +01:00
.if ${XAW_TYPE} == "xpm"
CONFIGURE_ARGS+=--with-xawm=XawXpm
.elif ${XAW_TYPE} == "3d"
CONFIGURE_ARGS+=--with-xawm=Xaw3d
.elif ${XAW_TYPE} == "neXtaw"
CONFIGURE_ARGS+=--with-xawm=neXtaw
.else
CONFIGURE_ARGS+=--with-xawm=Xaw
.endif
2004-05-03 17:58:55 +02:00
.include "../../devel/ncurses/buildlink3.mk"
.include "../../lang/guile14/buildlink3.mk"
.include "../../graphics/xpm/buildlink3.mk"
.include "../../x11/mowitz/buildlink3.mk"
.include "../../mk/xaw.buildlink3.mk"
.include "../../mk/bsd.pkg.mk"