diff options
author | itetcu <itetcu@FreeBSD.org> | 2006-06-21 04:10:27 +0800 |
---|---|---|
committer | itetcu <itetcu@FreeBSD.org> | 2006-06-21 04:10:27 +0800 |
commit | f4b210e8e2a32978cafafee3bdd09d345164cdef (patch) | |
tree | 4919782e0fb2e6ee1e1004a134bd72fcca47ac02 /emulators/twin | |
parent | 0e1c454d7640f06cb0729af6b7a8e27eb48920c5 (diff) | |
download | freebsd-ports-gnome-f4b210e8e2a32978cafafee3bdd09d345164cdef.tar.gz freebsd-ports-gnome-f4b210e8e2a32978cafafee3bdd09d345164cdef.tar.zst freebsd-ports-gnome-f4b210e8e2a32978cafafee3bdd09d345164cdef.zip |
- 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]
Diffstat (limited to 'emulators/twin')
-rw-r--r-- | emulators/twin/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/emulators/twin/Makefile b/emulators/twin/Makefile index 7f62eef60f5d..94f3135afe79 100644 --- a/emulators/twin/Makefile +++ b/emulators/twin/Makefile @@ -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> |