aboutsummaryrefslogtreecommitdiff
path: root/devel/ilu/Makefile
blob: 25a89951b4bee9e5883f855be5f83327f1ec5111 (plain) (blame)
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
# New ports collection makefile for: ilu
# Version required:     2.0alpha13
# Date created:         29.9.1997
# Whom:                 cracauer@cons.org "Martin Cracauer"
#
# $Id: Makefile,v 1.18 1998/12/22 07:58:33 asami Exp $
#

DISTNAME=	ilu-2.0alpha13
PKGNAME=	ilu-2.0a13
CATEGORIES=	devel
MASTER_SITES=	ftp://parcftp.xerox.com/pub/ilu/2.0a13/ \
		http://www2.cons.org:8000/freebsd-distfiles/ \
		http://www.freebsd.org/~cracauer/freebsd-distfiles/

PATCH_SITES=	http://www2.cons.org:8000/freebsd-distfiles/ \
		http://www.freebsd.org/~cracauer/freebsd-distfiles/
PATCHFILES=	${DISTNAME}-patches.html.gz

MAINTAINER=	cracauer@cons.org

BUILD_DEPENDS=	imake:${PORTSDIR}/x11/XFree86

# The FreeBSD port uses its own shared library patches. The native
# ILU support is incomplete and disabled here.
CONFIGURE_ARGS=	--enable-http-protocol --enable-os-threads=posix \
		--disable-kernel-shared-library --disable-c-shared-library \
		--disable-cplusplus-shared-libary

NO_WRKSUBDIR=	yes
HAS_CONFIGURE=	yes
CONFIGURE_ARGS+=	--prefix=${PREFIX}/ilu

INSTALL_TARGET=	Install
PLIST=		${WRKSRC}/PLIST

.include <bsd.port.pre.mk>

.if ${PORTOBJFORMAT} == "elf"
SHLIBPATCH=files/shlib-elf.patch
# The FreeBSD Java Development Kit is still in aout object format.
# You might want to enable it if you have an ELF JDK and/or build
# a seperate aout ILU runtime to use with Java.
CONFIGURE_ARGS+=	--disable-java-support
.else
SHLIBPATCH=files/shlib-aout.patch
# Java support on -stable does not work (ILU runtime dumps core).
# You might want to enable it if you know what you are doing.
# Taking -O out of patches/patch-1-cra-cflags may also help.
CONFIGURE_ARGS+=	--disable-java-support
.endif

# Startup script, run at boot time
startup_dir=	${PREFIX}/etc/rc.d
startup_script=	${startup_dir}/50.ilu.sh

post-extract:
	${CHMOD} -R u+w ${WRKDIR}

post-patch:
	${PATCH} ${PATCH_DIST_ARGS} < ${SHLIBPATCH}

do-install:
	@(cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} ${MAKE_FLAGS} ${MAKEFILE} ${INSTALL_TARGET})
	# Empty dir, but we really need it
	${ECHO} @exec ${MKDIR} %D/ilu/lib/binding > ${PLIST}
	${ECHO} @unexec ${RM} -r %D/ilu/lib/binding >> ${PLIST}
	${ECHO} @exec ${CHMOD} 777 %D/ilu/lib/binding >> ${PLIST}
	${ECHO} @exec ${LDCONFIG} -m %D/ilu/lib >> ${PLIST}
	# Empty dirs we don't need
	${RMDIR} ${PREFIX}/ilu/man/man[358]
	${RMDIR} ${PREFIX}/ilu/lisp
	-${RMDIR} ${PREFIX}/ilu/examples/javatest1/javastubs
	(cd ${PREFIX} ; find ilu -type f) >> ${PLIST}
	(cd ${PREFIX} ; find ilu -type d) | ${AWK} '{print "@dirrm " $$1}' \
		| tail -r | ${GREP} -v lib/binding >> ${PLIST}
	(cd ${PREFIX}/ilu/bin ; for file in * ; do \
		ln -fs ${PREFIX}/ilu/bin/$$file ${PREFIX}/bin/. ; \
		${ECHO} bin/$$file ; \
		done) >> ${PLIST}
	(cd ${PREFIX}/ilu/man/man1 ; for file in * ; do \
		ln -fs ${PREFIX}/ilu/man/man1/$$file ${PREFIX}/man/man1/. ; \
		${ECHO} man/man1/$$file ; \
		done) >> ${PLIST}
	${ECHO} etc/rc.d/50.ilu.sh >> ${PLIST}
	${ECHO} "Installing ${startup_script} file"
	test -d ${startup_dir} || ${MKDIR} ${startup_dir}
	${ECHO} "#!/bin/sh" > ${startup_script}
	${ECHO} "${ECHO} -n ' ILU-shlibs'" >> ${startup_script}
	${ECHO} "${LDCONFIG} -m ${PREFIX}/ilu/lib" >> ${startup_script}
	${CHMOD} 755 ${startup_script};
	${startup_script}

.include <bsd.port.post.mk>