diff options
author | jlam <jlam@pkgsrc.org> | 2000-07-31 06:58:35 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2000-07-31 06:58:35 +0000 |
commit | 7489dd5ae4f0e667b9aba1c1dd6492748e13c39e (patch) | |
tree | 24e04be30c6ee98e8711e9a1212aecee7c40e033 /math/cassowary/Makefile | |
parent | 2dcf3d8097fb08379bfb5ae0a5333cc4b3968a4f (diff) | |
download | pkgsrc-7489dd5ae4f0e667b9aba1c1dd6492748e13c39e.tar.gz |
Update cassowary to 0.60. Changes from version 0.50:
12-March-2000: Version 0.60 released.
* Changed license to LGPL!!!
* Added SetAutoResetStayConstants(), FIsAutoResetStayConstants(), make ResetStayConstants() public
29-Jan-2000: Version 0.55 released.
* Some bug fixes
* Added ClSimplexSolver::{ChangeStrength,ChangeStrengthAndWeight,ChangeWeight,
DisplayObjective,ExternalResetStayConstants} fns
From A. Beurivé.
16-Dec-1999: Version 0.54a released.
* Include correct version of OTI Smalltalk .dat file
(the source in the *.app files was right, the .dat file was old)
* Fix java build bug
15-Dec-1999: Version 0.54 released.
* Bug fixes
* auto-configuration improvements
* Support Java 2 (jdk-1.2)
* Improved ease of building Java demos
* Build guile wrapper as long as guile-config works, use new --disable-guile-build to force off
* Alpha-version of Java constraint parser contributed by Will Portnoy
24-October-1999: Version 0.53 released.
* Bug fixes
* License exception for linking with Scwm.
25-September-1999: Version 0.52 released.
* Bug fix for nested edits where a later edit includes an already-being-edited variable
14-September-1999: Version 0.51 released.
* Minor bug fixes
* Much better packaging, RPMs, etc. more forced reliance on GTL
Diffstat (limited to 'math/cassowary/Makefile')
-rw-r--r-- | math/cassowary/Makefile | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/math/cassowary/Makefile b/math/cassowary/Makefile index 3cf0b3a5070..9b101a3d33b 100644 --- a/math/cassowary/Makefile +++ b/math/cassowary/Makefile @@ -1,22 +1,27 @@ -# $NetBSD: Makefile,v 1.6 2000/07/15 02:36:45 jlam Exp $ +# $NetBSD: Makefile,v 1.7 2000/07/31 06:58:35 jlam Exp $ # -DISTNAME= cassowary-0.50 +DISTNAME= cassowary-0.60 CATEGORIES= math MASTER_SITES= http://www.cs.washington.edu/research/constraints/cassowary/ MAINTAINER= packages@netbsd.org HOMEPAGE= http://www.cs.washington.edu/research/constraints/cassowary/ +BUILD_DEPENDS+= bison:../../devel/bison DEPENDS+= guile>=1.3.2:../../lang/guile -BUILD_DEPENDS+= ${LOCALBASE}/bin/bison:../../devel/bison +DEPENDS+= gtl>=0.3.2:../../devel/gtl -GNU_CONFIGURE= yes -USE_PKGLIBTOOL= yes -USE_GMAKE= yes +USE_GMAKE= # defined +USE_LIBTOOL= # defined +LTCONFIG_OVERRIDE= ${WRKSRC}/ltconfig -YACC= ${LOCALBASE}/bin/bison -y +GNU_CONFIGURE= # defined +CONFIGURE_ARGS+= --enable-fd-solver CONFIGURE_ARGS+= --with-guile-prefix=${LOCALBASE} +CONFIGURE_ARGS+= --with-gtl=${LOCALBASE} + +YACC= bison -y .include "../../mk/bsd.prefs.mk" @@ -25,4 +30,7 @@ DEPENDS+= egcs-1.1.2:../../lang/egcs MAKE_ENV+= CXX=${LOCALBASE}/egcs/bin/g++ .endif +post-install: + cd ${PREFIX}/lib/cassowary && ${RMDIR} -p bench + .include "../../mk/bsd.pkg.mk" |