1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-20 20:09:11 +00:00

BROKEN on alpha: Does not compile

Approved by:    portmgr (self)
This commit is contained in:
Kris Kennaway 2005-01-02 01:07:46 +00:00
parent 501bb341c5
commit 502f124782
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=125655
4 changed files with 15 additions and 5 deletions

View File

@ -34,8 +34,8 @@ CFLAGS+= -DRL_NO_COMPAT -DKGDB
.include <bsd.port.pre.mk>
.if ${ARCH} == "ia64" || ${ARCH} == "sparc64"
BROKEN= "Does not build on ia64 or sparc64"
.if ${ARCH} == "ia64" || ${ARCH} == "sparc64" || ${ARCH} == "alpha"
BROKEN= "Does not build on ia64, sparc64 or alpha"
.endif
.if ${OSVERSION} < 500000

View File

@ -34,8 +34,8 @@ CFLAGS+= -DRL_NO_COMPAT -DKGDB
.include <bsd.port.pre.mk>
.if ${ARCH} == "ia64" || ${ARCH} == "sparc64"
BROKEN= "Does not build on ia64 or sparc64"
.if ${ARCH} == "ia64" || ${ARCH} == "sparc64" || ${ARCH} == "alpha"
BROKEN= "Does not build on ia64, sparc64 or alpha"
.endif
.if ${OSVERSION} < 500000

View File

@ -34,6 +34,10 @@ LDFLAGS= -L${LOCALBASE}/lib
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha"
BROKEN= "Does not build on alpha"
.endif
post-extract:
@${RM} -f ${WRKSRC}/doc/tutorial/ginac.info*

View File

@ -24,9 +24,15 @@ MAN8= mDNSResponder.8
PLIST_SUB= VERSION="${PORTVERSION}"
.include <bsd.port.pre.mk>
.if ${ARCH} == "alpha"
BROKEN= "Does not compile on alpha"
.endif
post-patch:
@${REINPLACE_CMD} -e 's|-pthread||g' ${WRKSRC}/configure
@${FIND} ${WRKSRC} -name "Makefile.in" | ${XARGS} ${REINPLACE_CMD} \
-E -e '/^library_includedir[[:space:]]*=/s^\$$[(]includedir[)]/howl^$$(includedir)/howl-${PORTVERSION}^g'
.include <bsd.port.mk>
.include <bsd.port.post.mk>