1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-26 00:55:14 +00:00

Pragmatic Smalltalk Compiler

This is an implementation of Smalltalk designed to run
on top of an Objective-C runtime.

WWW: http://www.etoile-project.org/
This commit is contained in:
Dirk Meyer 2008-11-29 12:27:35 +00:00
parent 8b03de786c
commit da1acef930
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=223530
4 changed files with 48 additions and 0 deletions

View File

@ -53,6 +53,7 @@
SUBDIR += erlang
SUBDIR += erlang-doc
SUBDIR += erlang-lite
SUBDIR += etoile-compiler
SUBDIR += etoile-io
SUBDIR += etoile-languagekit
SUBDIR += etoile-scriptkit

View File

@ -0,0 +1,38 @@
# New ports collection makefile for: etoile-compiler
# Date created: 26 Nov 2008
# Whom: dirk.meyer@dinoex.sub.org
#
# $FreeBSD$
#
PORTNAME= compiler
PORTVERSION= 0.4.0
CATEGORIES= lang gnustep
MASTER_SITES= http://download.gna.org/etoile/
PKGNAMEPREFIX= etoile-
DISTNAME= etoile-${PORTVERSION}
MAINTAINER= dinoex@FreeBSD.org
COMMENT= Etoile Project Smalltalk Compiler
USE_BZIP2= yes
USE_GNUSTEP= yes
USE_GNUSTEP_PREFIX= yes
USE_GNUSTEP_BACK= yes
USE_GNUSTEP_BUILD= yes
USE_GNUSTEP_INSTALL= yes
USE_GNUSTEP_LDCONFIG= ${GNUSTEP_LOCAL_LIBRARIES}
USE_GNUSTEP_LOCAL_LIBS+= EtoileFoundation:${FOUNDATION_PORT}
USE_GNUSTEP_LOCAL_LIBS+= LanguageKit:${LANGUAGEKIT_PORT}
USE_GNUSTEP_LOCAL_LIBS+= SmalltalkKit:${SMALLTALKKIT_PORT}
DEFAULT_LIBVERSION= 0.1
WRKSRC= ${WRKDIR}/Etoile-${PORTVERSION}
USE_GNUSTEP_MAKE_DIRS+= Languages/Compiler
PLIST_FILES= Local/Tools/edlc
FOUNDATION_PORT?= devel/etoile-foundation
LANGUAGEKIT_PORT?= lang/etoile-languagekit
SMALLTALKKIT_PORT?= lang/etoile-smalltalkkit
.include <bsd.port.mk>

View File

@ -0,0 +1,3 @@
MD5 (etoile-0.4.0.tar.bz2) = 7c33baf8ec3a708d0d419b1e137452de
SHA256 (etoile-0.4.0.tar.bz2) = 05b5f01932aaad2ae6251ae01a1ad5376d29c984ee83d9fb62688c8d4a20237a
SIZE (etoile-0.4.0.tar.bz2) = 8225128

View File

@ -0,0 +1,6 @@
Pragmatic Smalltalk Compiler
This is an implementation of Smalltalk designed to run
on top of an Objective-C runtime.
WWW: http://www.etoile-project.org/