1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/math/octave/Makefile
Chuck Robey 76b7ba5ed3 Upgrade octave to version 2.0.1. Fair warning, this takes a great
long time to compile, and the package is over 6 megabytes in size.
Also depends on the new gnuplot port for output.
Reviewed by:	 Satoshi
1997-01-20 22:13:57 +00:00

50 lines
1.8 KiB
Makefile

# New ports collection makefile for: octave
# Version required: 2.0.1
# Date created: 12 Jan 1997
# Whom: chuckr@freebsd.org
#
# $Id: Makefile,v 1.6 1996/12/12 08:03:38 tg Exp $
#
DISTNAME= octave-2.0.1
CATEGORIES= math
MASTER_SITES= ftp://ftp.che.wisc.edu/pub/octave/
MAINTAINER= chuckr@FreeBSD.ORG
RUN_DEPENDS= gnuplot:${PORTSDIR}/math/gnuplot
HAS_CONFIGURE= yes
CONFIGURE_ENV= /usr/bin/env "INSTALL_DATA=$(INSTALL_DATA)" "INSTALL_PROGRAM=$(INSTALL_SCRIPT)"
CONFIGURE_ARGS= --prefix=${PREFIX} --exec-prefix=${PREFIX} --with-f2c --enable-info --enable-shared --host=i386-unknown-freebsd
USE_GMAKE= yes
MAN1= octave.1
post-configure:
(cd $(WRKDIR)/octave-2.0.1/scripts; ./configure)
OCTAVE-INFO= octave.info octave.info-1 octave.info-10 octave.info-11 octave.info-12 octave.info-2 octave.info-3 octave.info-4 octave.info-5 octave.info-6 octave.info-7 octave.info-8 octave.info-9
LIBOCTAVE-INFO= liboctave.info liboctave.info-1 liboctave.info-2 liboctave.info-3
post-install:
mv ${PREFIX}/lib/libcruft.so ${PREFIX}/lib/libcruft.so.2.0
mv ${PREFIX}/lib/liboctave.so ${PREFIX}/lib/liboctave.so.2.0
mv ${PREFIX}/lib/liboctinterp.so ${PREFIX}/lib/liboctinterp.so.2.0
mv ${PREFIX}/lib/libtinst.so ${PREFIX}/lib/libtinst.so.2.0
/sbin/ldconfig -m $(PREFIX)/lib
.ifndef NOPORTDOCS
.for file in $(OCTAVE-INFO)
$(INSTALL_DATA) $(WRKSRC)/doc/interpreter/$(file) $(PREFIX)/info
.endfor
.for file in $(LIBOCTAVE-INFO)
$(INSTALL_DATA) $(WRKSRC)/doc/liboctave/$(file) $(PREFIX)/info
.endfor
$(MKDIR) $(PREFIX)/share/octave/doc
$(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-a4.ps $(PREFIX)/share/octave/doc
.endif
.include <bsd.port.mk>