blob: 1449ee5d3cfb920c01da17386c052afe2575bd25 (
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
|
# New ports collection makefile for: Xaw3d
# Date created: 18 November 1994
# Whom: asami
#
# $FreeBSD$
#
PORTNAME= Xaw3d
PORTVERSION= 1.5E
PORTREVISION= 2
CATEGORIES= x11-toolkits
MASTER_SITES= ftp://ftp.visi.com/users/hawkeyd/X/
MAINTAINER= dinoex@FreeBSD.org
COMMENT= A 3-D Athena Widget set that looks like Motif
WRKSRC= ${WRKDIR}/xc/lib/Xaw3d
USE_IMAKE= yes
USE_LDCONFIG= yes
SUB_FILES= pkg-message
SUB_LIST= XAWVER="${XAWVER}"
.include <bsd.port.pre.mk>
post-extract:
${MKDIR} ${WRKSRC}/X11/Xaw3d
cd ${WRKSRC}/X11/Xaw3d; ${LN} -sf ../../*.h .
# Workaround a bug in egcs on FreeBSD/Alpha.
.if ${MACHINE_ARCH} == "alpha"
post-configure:
@(cd ${WRKSRC}; ${MV} Makefile Makefile.orig; ${SED} -e \
's/CDEBUGFLAGS = -O/CDEBUGFLAGS =/g' Makefile.orig > Makefile)
.endif
post-install:
${MKDIR} ${DOCSDIR}
${INSTALL_DATA} ${WRKSRC}/README.XAW3D ${DOCSDIR}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>
|