diff options
author | Satoshi Asami <asami@FreeBSD.org> | 1999-05-12 23:27:28 +0000 |
---|---|---|
committer | Satoshi Asami <asami@FreeBSD.org> | 1999-05-12 23:27:28 +0000 |
commit | fefb49f219f730d0ef3f68b75946ebff493a767b (patch) | |
tree | d547d684f670522b4670878f8fc55aeb6219bb7a /math/octave/Makefile | |
parent | f50469edbba2d5188440d716eec9eb8b82d4362b (diff) | |
download | ports-fefb49f219f730d0ef3f68b75946ebff493a767b.tar.gz ports-fefb49f219f730d0ef3f68b75946ebff493a767b.zip |
Misc. build fix.
I changed "--defentry" to "--entry" but everything else is
Submitted by: Jeremy Lea <reg@shale.csir.co.za>
Notes
Notes:
svn path=/head/; revision=18820
Diffstat (limited to 'math/octave/Makefile')
-rw-r--r-- | math/octave/Makefile | 38 |
1 files changed, 21 insertions, 17 deletions
diff --git a/math/octave/Makefile b/math/octave/Makefile index d078ec1bacb6..c9969bc4dec6 100644 --- a/math/octave/Makefile +++ b/math/octave/Makefile @@ -3,7 +3,7 @@ # Date created: 8 September 1998 # Whom: chuckr@freebsd.org # -# $Id: Makefile,v 1.17 1998/09/09 05:46:15 asami Exp $ +# $Id: Makefile,v 1.18 1998/09/27 20:10:45 steve Exp $ # DISTNAME= octave-2.0.13 @@ -12,41 +12,45 @@ MASTER_SITES= ftp://ftp.che.wisc.edu/pub/octave/ MAINTAINER= chuckr@FreeBSD.ORG -BROKEN_ELF= build - +BUILD_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot +.include <bsd.port.pre.mk> + +.if ${PORTOBJFORMAT} == "elf" +GNU_HOST= ${ARCH}-portbld-freebsd${OSREL} +.else +GNU_HOST= ${ARCH}-portbld-freebsdaout${OSREL} +.endif OCTAVE_VERSION= 2.0.13 -PLIST_SUB= OCTAVE_VERSION=${OCTAVE_VERSION} -HAS_CONFIGURE= yes -CONFIGURE_ENV= ${SETENV} "INSTALL_DATA=$(INSTALL_DATA)" "INSTALL_PROGRAM=$(INSTALL_SCRIPT)" -CONFIGURE_ARGS= --prefix=${PREFIX} --exec-prefix=${PREFIX} --with-f2c --disable-shared --host=i386-unknown-freebsd +PLIST_SUB= OCTAVE_VERSION=${OCTAVE_VERSION} GNU_HOST=${GNU_HOST} + USE_GMAKE= yes +GNU_CONFIGURE= yes +CONFIGURE_ARGS= --disable-shared --host=${GNU_HOST} + +.if ${OSVERSION} < 400004 +CONFIGURE_ARGS+= --with-f2c +.endif + MAN1= octave.1 LIBOCTAVE-INFO= liboctave.info liboctave.info-1 liboctave.info-2 liboctave.info-3 -post-build: - /usr/bin/strip $(WRKSRC)/src/octave - post-install: .ifndef NOPORTDOCS - install-info --defentry='* Octave: (octave). Interactive language for numerical computations.' $(WRKSRC)/doc/interpreter/octave.info $(PREFIX)/info/dir - install-info --defentry='* LibOctave: (liboctave). C++ class library for Octave.' $(WRKSRC)/doc/liboctave/liboctave.info $(PREFIX)/info/dir $(MKDIR) $(PREFIX)/share/octave/doc .for file in $(LIBOCTAVE-INFO) $(INSTALL_DATA) $(WRKSRC)/doc/liboctave/$(file) $(PREFIX)/info .endfor + install-info --entry='* Octave: (octave). Interactive language for numerical computations.' $(PREFIX)/info/octave.info $(PREFIX)/info/dir + install-info --entry='* LibOctave: (liboctave). C++ class library for Octave.' $(PREFIX)/info/liboctave.info $(PREFIX)/info/dir $(INSTALL_DATA) $(WRKSRC)/doc/interpreter/octave.ps $(PREFIX)/share/octave/doc $(INSTALL_DATA) $(WRKSRC)/doc/liboctave/liboctave.ps $(PREFIX)/share/octave/doc $(INSTALL_DATA) $(WRKSRC)/doc/refcard/refcard-letter.ps $(PREFIX)/share/octave/doc $(INSTALL_DATA) $(WRKSRC)/doc/refcard/refcard-legal.ps $(PREFIX)/share/octave/doc $(INSTALL_DATA) $(WRKSRC)/doc/refcard/refcard-a4.ps $(PREFIX)/share/octave/doc $(INSTALL_DATA) $(WRKSRC)/doc/faq/Octave-FAQ.ps $(PREFIX)/share/octave/doc - $(RM) -rf $(PREFIX)/libexec/octave/2.0.13/oct/i386-unknown-freebsd? - $(RM) -rf $(PREFIX)/libexec/octave/2.0.13/exec/i386-unknown-freebsd? - $(RM) -rf $(PREFIX)/libexec/octave/site/oct/i386-unknown-freebsd? - $(RM) -rf $(PREFIX)/libexec/octave/site/exec/i386-unknown-freebsd? .endif -.include <bsd.port.mk> +.include <bsd.port.post.mk> |