summaryrefslogtreecommitdiff
path: root/deskutils/abacus/Makefile
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1998-09-09 19:22:37 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1998-09-09 19:22:37 +0000
commit21d2f1485d37e0ccaecc50e8b657e2f92e64a4c0 (patch)
treef52f846e2f00485f5716c4ba6413ea02b7ffebb0 /deskutils/abacus/Makefile
parentBack out part of my previous commit. (diff)
new port abacus
spreadsheet for Tcl/Tk Abacus is a small, light and easy to use spreadsheet being developed as graduation project under the tutorship of Prof. Arlindo Oliveira, and the spreadsheet is being developed using the Tcl/Tk toolkit, as well as plain old C/C++ for all the "number-crunching" tasks. PR: 7674 Submitted by: Andrey V. Zakhvatov <andy@icc.surw.chel.su>
Notes
Notes: svn path=/head/; revision=13074
Diffstat (limited to 'deskutils/abacus/Makefile')
-rw-r--r--deskutils/abacus/Makefile50
1 files changed, 50 insertions, 0 deletions
diff --git a/deskutils/abacus/Makefile b/deskutils/abacus/Makefile
new file mode 100644
index 000000000000..e5d38a40fb55
--- /dev/null
+++ b/deskutils/abacus/Makefile
@@ -0,0 +1,50 @@
+# New ports collection makefile for: abacus
+# Version required: 0.9.3
+# Date created: 18 August 1998
+# Whom: Andrey Zakhvatov
+#
+# $Id$
+#
+
+DISTNAME= abacus
+PKGNAME= abacus-0.9.3
+CATEGORIES= deskutils
+MASTER_SITES= http://www-cad.eecs.berkeley.edu/HomePages/aml/abacus/
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= andy@icc.surw.chel.su
+
+LIB_DEPENDS= tcl80:${PORTSDIR}/lang/tcl80 \
+ tk80:${PORTSDIR}/x11-toolkits/tk80
+
+ALL_TARGET= dep tcl_interf/nxlc
+USE_GMAKE= yes
+USE_X_PREFIX= yes
+WRKSRC= ${WRKDIR}
+
+post-extract:
+ @ ${RM} -fr ${WRKSRC}/RCS
+
+do-install:
+ @ ${INSTALL_SCRIPT} ${WRKSRC}/${DISTNAME} ${PREFIX}/bin
+ @ ${MKDIR} ${PREFIX}/share/abacus
+ @ ${MKDIR} ${PREFIX}/share/abacus/display
+ @ ${INSTALL_DATA} ${WRKSRC}/display/*.tcl ${PREFIX}/share/abacus/display
+ @ ${MKDIR} ${PREFIX}/share/abacus/graphics
+ @ ${INSTALL_DATA} ${WRKSRC}/graphics/*.tcl ${PREFIX}/share/abacus/graphics
+ @ ${MKDIR} ${PREFIX}/share/abacus/runlib
+ @ ${INSTALL_DATA} ${WRKSRC}/runlib/*.tcl ${PREFIX}/share/abacus/runlib
+ @ ${INSTALL_DATA} ${WRKSRC}/runlib/version ${PREFIX}/share/abacus/runlib
+ @ ${MKDIR} ${PREFIX}/share/abacus/runlib/bitmaps
+ @ ${INSTALL_DATA} ${WRKSRC}/runlib/bitmaps/* ${PREFIX}/share/abacus/runlib/bitmaps
+ @ ${MKDIR} ${PREFIX}/share/abacus/tcl_interf
+ @ ${INSTALL_PROGRAM} ${WRKSRC}/tcl_interf/nxlc ${PREFIX}/share/abacus/tcl_interf
+ @ ${MKDIR} ${PREFIX}/share/examples/abacus
+ @ ${INSTALL_DATA} ${WRKSRC}/regressive/* ${PREFIX}/share/examples/abacus
+
+.if !defined(NOPORTDOCS)
+ @ ${MKDIR} ${PREFIX}/share/doc/abacus
+ @ ${INSTALL_DATA} ${WRKSRC}/doc/* ${PREFIX}/share/doc/abacus
+.endif
+
+.include <bsd.port.mk>