summaryrefslogtreecommitdiff
path: root/devel/libctl/Makefile
diff options
context:
space:
mode:
authorjtb <jtb>2001-02-24 13:42:06 +0000
committerjtb <jtb>2001-02-24 13:42:06 +0000
commitf23900a6cf7b2179bf252abf7d4d77c6f7f8639c (patch)
tree1d30e59c8af1c18bf7a5cf93d6d6fe6774e83662 /devel/libctl/Makefile
parenta3e7e848ec0468b4985edd2606aca67d08b93ccb (diff)
downloadpkgsrc-f23900a6cf7b2179bf252abf7d4d77c6f7f8639c.tar.gz
Updated to libctl-1.4.
2001-02-22 Steven G. Johnson <stevenj@alum.mit.edu> * configure.in: fixed cppflags order 2001-02-20 Steven G. Johnson <stevenj@alum.mit.edu> * base/ctl.h.in, base/main.c, base/math-utils.scm, base/subplex.c, ChangeLog, configure.in, NEWS: added minimize-multiple-expert fmin parameter, after a suggestion from Dale Fried 2001-02-04 Steven G. Johnson <stevenj@alum.mit.edu> * base/ctl.h.in, base/main.c: added hook functions to help us use MPI (where we need to call MPI_Init and MPI_Finalize) * base/interaction.scm: cleanups, and made sure output is flushed * base/extern-funcs.scm, base/help.scm, base/interaction.scm, base/math-utils.scm, base/simplex.scm, base/utils.scm, doc/user-ref.html, NEWS, utils/ctl-io.scm: display-many -> print, added print-ok? 2001-01-21 Steven G. Johnson <stevenj@alum.mit.edu> * base/ctl.h.in: whoops, fixed prototype * base/ctl.c, base/ctl.h.in: put ctl_get_list etc. back in because MPB configure script looks for it * base/ctl.c, base/ctl.h.in: whoops, fixed 'function support * base/class.scm, base/ctl.c, base/ctl.h.in, doc/developer.html, NEWS: add support for 'function type * utils/ctl-io.scm: put class input & destruction headers in ctl-io.h so that they can be used elsewhere if desired * examples/example.c, examples/example.scm: added function-passing example * base/class.scm: slight clarification in comment 2001-01-20 Steven G. Johnson <stevenj@alum.mit.edu> * doc/guile-links.html: another minor change * doc/guile-links.html: minor change * doc/license.html: spelling correction * doc/advanced-user.html: Fixed command-line parameter order (whoops). 2001-01-07 Steven G. Johnson <stevenj@alum.mit.edu> * doc/guile-links.html: updated links * base/main.c, base/math-utils.scm, base/matrix3x3.scm, base/simplex.scm, base/utils.scm, base/vector3.scm, doc/license.html, examples/example.c, examples/example.scm, examples/Makefile.in, examples/run.ctl, utils/ctlgeom.h, utils/ctl-io.scm, utils/gen-ctl-io.1, utils/gen-ctl-io.in, utils/geom.c, utils/geom.scm, base/class.scm, base/ctl.c, base/ctl-f77-glue.c, base/ctl.h.in, base/ctl.scm, base/extern-funcs.scm, base/help.scm, base/include.scm, base/interaction.scm, base/io-vars.scm, COPYRIGHT: 2001 copyright year update * ChangeLog, configure.in, NEWS: bumped version for new release
Diffstat (limited to 'devel/libctl/Makefile')
-rw-r--r--devel/libctl/Makefile25
1 files changed, 12 insertions, 13 deletions
diff --git a/devel/libctl/Makefile b/devel/libctl/Makefile
index be17a51457c..ef17bb54d08 100644
--- a/devel/libctl/Makefile
+++ b/devel/libctl/Makefile
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.6 2001/02/16 14:38:34 wiz Exp $
+# $NetBSD: Makefile,v 1.7 2001/02/24 13:42:06 jtb Exp $
-DISTNAME= libctl-1.3
+DISTNAME= libctl-1.4
CATEGORIES= devel
MASTER_SITES= http://superjdj.mit.edu/libctl/
@@ -8,20 +8,19 @@ MAINTAINER= jtb@netbsd.org
HOMEPAGE= http://ab-initio.mit.edu/libctl/
COMMENT= Guile-based flexible control file library for scientific simulations
-DEPENDS+= guile-[0-9]*:../../lang/guile
-BUILD_DEPENDS+= ${LOCALBASE}/bin/autoreconf:../../devel/autoconf
+DEPENDS+= guile>=1.4:../../lang/guile
-WRKSRC= ${WRKDIR}/${DISTNAME}
-GNU_CONFIGURE= YES
-USE_LIBTOOL= YES
-
-pre-configure:
- (cd ${WRKSRC} && ${LOCALBASE}/bin/autoreconf)
+GNU_CONFIGURE= #defined
post-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/doc/libctl
- ${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/libctl
- @for f in COPYING COPYRIGHT ChangeLog NEWS README ; do \
- ${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/doc/libctl ; done
+ @for f in ${WRKSRC}/doc/*; do \
+ i="${INSTALL_DATA} $$f ${PREFIX}/share/doc/libctl/"; \
+ ${ECHO} $$i; $$i; \
+ done
+ @for f in COPYING COPYRIGHT ChangeLog NEWS README ; do \
+ i="${INSTALL_DATA} ${WRKSRC}/$$f ${PREFIX}/share/doc/libctl/"; \
+ ${ECHO} $$i; $$i; \
+ done
.include "../../mk/bsd.pkg.mk"