1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
# New ports collection makefile for: SmartEiffel
# Date created: Wed Dec 22 18:20:05 CET 1999
# Whom: berend@pobox.com
#
# $FreeBSD$
#
PORTNAME= smarteiffel
PORTVERSION= 1.1
PORTREVISION= 1
CATEGORIES= lang
MASTER_SITES= ftp://ftp.loria.fr/pub/loria/SmartEiffel/Oldies/
DISTNAME= SmartEiffel-${PORTVERSION}
MAINTAINER= berend@pobox.com
COMMENT= SmartEiffel, the GNU compiler for the object-oriented language Eiffel
WRKSRC= ${WRKDIR}/SmartEiffel
# We install in this directory
SEDIR= ${PREFIX}/${PORTNAME}-${PORTVERSION}
# We alias a directory to the installation directory
# so it is possible to easily switch between different builds
ALIASDIR= ${PREFIX}/SmartEiffel
# SmartEiffel needs this to find system.se
MAKE_ENV+= SmartEiffel=${WRKSRC}/sys/system.se
ALL_TARGET=
USE_BZIP2= yes
PLIST_SUB+= PORTVERSION=${PORTVERSION}
PKGMESSAGE= ${WRKDIR}/MESSAGE
PKGINSTALL= ${WRKDIR}/INSTALL
# Make sure we can set the symbolic link SmartEiffel
# to the actual release directory.
do-install:
@(if ${TEST} -e ${ALIASDIR} ; then \
if ! ${TEST} -L ${ALIASDIR} ; then \
${ECHO} "Make sure ${ALIASDIR} is a symbolic link"; \
${ECHO} "or does not exist. This directory will point to "; \
${ECHO} "the actual SmartEiffel installation directory."; \
exit 1; \
fi; \
${RM} ${ALIASDIR}; \
fi; \
${LN} -fs ${SEDIR} ${ALIASDIR})
@(if ${TEST} -e ${SEDIR} ; then ${RM} -rf ${SEDIR}; fi; \
${MKDIR} ${SEDIR}; \
${CP} -pR ${WRKSRC}/* ${SEDIR})
@${SED} -i .orig -e "s,${WRKSRC},${SEDIR},g" ${SEDIR}/sys/system.se
@${RM} ${SEDIR}/sys/system.se.orig
@${SED} -i .orig -e "s,${WRKSRC},${SEDIR},g" ${SEDIR}/lib/loadpath.se
@${RM} ${SEDIR}/lib/loadpath.se.orig
@${SED} -i .orig -e "s,${WRKSRC},${SEDIR},g" ${SEDIR}/tools/loadpath.se
@${RM} ${SEDIR}/tools/loadpath.se.orig
@${SED} -i .orig -e "s,${WRKSRC},${SEDIR},g" ${SEDIR}/tutorial/loadpath.se
@${RM} ${SEDIR}/tutorial/loadpath.se.orig
@${SED} -e "s,%%PREFIX%%,${PREFIX},g" ${PKGDIR}/pkg-message \
> ${PKGMESSAGE}
@${SED} -e "s,%%PREFIX%%,${PREFIX},g" ${PKGDIR}/pkg-install \
> ${PKGINSTALL}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.mk>
|