1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

- UNbreak [1]

- Test for ARCH no MACHINE_ARCH [2]
- don't use fmt(1) to display PKGMESSAGE when there's no need to [2]

PR:		ports/99157 [1]
Submitted by:	Arseny Nasokin <tarc@tarc.po.cs.msu.su> [1], itetcu (me) [2]
This commit is contained in:
Ion-Mihai Tetcu 2006-06-20 20:10:27 +00:00
parent 996001e265
commit af05f55a29
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=165874

View File

@ -17,8 +17,6 @@ DISTNAME= ${PORTNAME}-src-${PORTVERSION}
MAINTAINER= ports@FreeBSD.org
COMMENT= Willows Toolkit for migrating and developing Windows applications
BROKEN= Coredump during build
ONLY_FOR_ARCHS= i386 alpha powerpc
WRKSRC= ${WRKDIR}/${PORTNAME}
@ -26,9 +24,6 @@ WRKSRC= ${WRKDIR}/${PORTNAME}
USE_XLIB= yes
USE_AUTOTOOLS= autoconf:213
GNU_CONFIGURE= yes
.if ${MACHINE_ARCH} == "alpha"
CONFIGURE_ARGS+=--disable-intp
.endif
USE_GMAKE= yes
ALL_TARGET= depend world
@ -38,7 +33,9 @@ INSTALLS_SHLIB= yes
.include <bsd.port.pre.mk>
FMT?= /usr/bin/fmt
.if ${ARCH} == "alpha"
CONFIGURE_ARGS+= --disable-intp
.endif
LIBRARIES= libadvapi32.so libcomctl32.so libcomm.so \
libcommdlg.so libddeml.so libkeyboard.so \
@ -62,6 +59,6 @@ post-install:
.for lib in ${LIBRARIES}
@${LN} -sf ${lib} ${PREFIX}/lib/${lib}.${LIBVER}
.endfor
@${FMT} ${PKGMESSAGE}
@${CAT} ${PKGMESSAGE}
.include <bsd.port.post.mk>