summaryrefslogtreecommitdiff
path: root/lang/icon/Makefile
diff options
context:
space:
mode:
authorjtb <jtb@pkgsrc.org>2003-03-24 12:12:08 +0000
committerjtb <jtb@pkgsrc.org>2003-03-24 12:12:08 +0000
commit23d150528dac67d48a5b4ff124091d90940a7d09 (patch)
treeebba86dee82e98ee748e519e0f77ba508a0a4d9a /lang/icon/Makefile
parenta27d6f0a07ec88a76336fc908d575214e0540fa7 (diff)
downloadpkgsrc-23d150528dac67d48a5b4ff124091d90940a7d09.tar.gz
Update of icon to 9.4.1.
Changes: * Support for NetBSD on PowerPC based systems. * An Icon source file can be made executable under Unix by prefixing it with a comment line #!/usr/bin/env icon and setting its execute permission bit. This uses a new icon command, which in another form allows a small Icon program to be embedded within a shell script. See the new man page for details. The traditional icont command remains available for less specialized purposes. * The performance of large sets and tables has been improved. * Some minor bugs have been fixed.
Diffstat (limited to 'lang/icon/Makefile')
-rw-r--r--lang/icon/Makefile30
1 files changed, 6 insertions, 24 deletions
diff --git a/lang/icon/Makefile b/lang/icon/Makefile
index 79cbe3a0b2a..0bfea2babef 100644
--- a/lang/icon/Makefile
+++ b/lang/icon/Makefile
@@ -1,9 +1,7 @@
-# $NetBSD: Makefile,v 1.21 2002/02/28 13:42:59 agc Exp $
-# FreeBSD Id: Makefile,v 1.8 1997/02/12 08:39:15 tg Exp
-#
+# $NetBSD: Makefile,v 1.22 2003/03/24 12:12:08 jtb Exp $
-DISTNAME= icon.v940src
-PKGNAME= icon-9.4.0
+DISTNAME= icon.v941src
+PKGNAME= icon-9.4.1
CATEGORIES= lang
MASTER_SITES= http://www.cs.arizona.edu/icon/ftp/packages/unix/
EXTRACT_SUFX= .tgz
@@ -12,24 +10,9 @@ MAINTAINER= packages@netbsd.org
HOMEPAGE= http://www.cs.arizona.edu/icon/index.htm
COMMENT= The Icon programming language
-ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-i386 NetBSD-*-sparc
+ONLY_FOR_PLATFORM= NetBSD-*-alpha NetBSD-*-i386 NetBSD-*-sparc NetBSD-*-powerpc
-PLIST_SRC= ${PKGDIR}/PLIST
-
-.include "../../mk/bsd.prefs.mk"
-
-BUILD_DEFS= ICON_WITH_GRAPHICS
-
-ICON_WITH_GRAPHICS?= YES
-
-.if (${ICON_WITH_GRAPHICS} == "YES")
CONFIGURE_TARGET?= X-Configure
-PLIST_SRC+= ${PKGDIR}/PLIST.graphics
-USE_X11= yes
-.else
-CONFIGURE_TARGET?= Configure
-.endif
-
ALL_TARGET= All
pre-build:
@@ -37,12 +20,11 @@ pre-build:
do-configure:
cd ${WRKSRC}/config/unix/netbsd; \
- ${SED} -e 's:@X11BASE@:${X11BASE}:g' define.h.graphics.in \
- > define.h.graphics
+ ${SED} -e 's:@X11BASE@:${X11BASE}:g' define.h.in \
+ > define.h
cd ${WRKSRC}; ${MAKE} ${CONFIGURE_TARGET} name=netbsd
do-install:
cd ${WRKSRC}; ${SETENV} ${MAKE_ENV} ${MAKE} dest=${PREFIX} Install
.include "../../mk/bsd.pkg.mk"
-