blob: a4fd5bfde38071e4fa8032262b13c886097d7f78 (
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
|
# New ports collection makefile for: nte
# Version required: 1.5a23
# Date created: 5 September 1996
# Whom: Bill Fenner <fenner@FreeBSD.ORG>
#
# $Id: Makefile,v 1.10 1998/08/27 18:42:42 fenner Exp $
#
DISTNAME= nte-1.5a29
CATEGORIES= mbone tk80
MASTER_SITES= http://www-mice.cs.ucl.ac.uk/multimedia/software/nte/1.5a29/
MAINTAINER= fenner@FreeBSD.org
LIB_DEPENDS= tk80\\.1:${PORTSDIR}/x11-toolkits/tk80
WRKSRC= ${WRKDIR}/nte
RESTRICTED= "Contains DES encryption"
USE_GMAKE= yes
USE_X_PREFIX= yes
.include <bsd.port.mk>
#DISGUSTING HACK ALERT
#Although nte includes an hsearch.c for those who don't have it in
# libc, there's no way to get the default Makefile to build it.
# So we build it here.
#This is below the .include <bsd.port.mk> since variable names in
# targets or dependencies are evaluated when they are read so
# bsd.port.mk must have defined ${WRKSRC} already.
pre-build: ${WRKSRC}/freebsd/hsearch.o
${WRKSRC}/freebsd/hsearch.o: ${WRKSRC}/src/hsearch.c
${CC} -I${WRKSRC}/src ${CFLAGS} -c -o $@ ${WRKSRC}/src/hsearch.c
|