diff options
author | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-04-08 09:50:23 +0000 |
---|---|---|
committer | Baptiste Daroussin <bapt@FreeBSD.org> | 2014-04-08 09:50:23 +0000 |
commit | 7c84ecc96868f6af9c887e0f9cb4d277132cd6b8 (patch) | |
tree | 73a773a8e319b1bfd98cdb636b6be42ff1fdf6ff /comms | |
parent | 49f6ad42485a74b0b8f020e986e68919b9fb3b00 (diff) | |
download | freebsd-ports-7c84ecc96868f6af9c887e0f9cb4d277132cd6b8.zip |
Mark as broken: fails to build with modern compilers
With hat: portmgr
Diffstat (limited to 'comms')
-rw-r--r-- | comms/aldo/Makefile | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/comms/aldo/Makefile b/comms/aldo/Makefile index f0c0ed8665a0..787989d602fd 100644 --- a/comms/aldo/Makefile +++ b/comms/aldo/Makefile @@ -11,27 +11,29 @@ MASTER_SITE_SUBDIR= ${PORTNAME} MAINTAINER= lambert@lambertfam.org COMMENT= Morse code training program +BROKEN= Does not build with modern compilers + LIB_DEPENDS= libao.so:${PORTSDIR}/audio/libao GNU_CONFIGURE= yes USE_AUTOTOOLS= autoconf automake libtool CONFIGURE_ARGS= --includedir="${LOCALBASE}/include" \ --libdir="${LOCALBASE}/lib" -USES= gmake tar:bzip2 +USES= gmake tar:bzip2 libtool +USE_GCC= any -PLIST_FILES= bin/aldo -MAN1= aldo.1 +PLIST_FILES= bin/aldo \ + man/man1/aldo.1.gz AUTOTOOLSFILES= aclocal.m4 -NO_STAGE= yes post-patch: @${REINPLACE_CMD} -e 's|1.10|%%AUTOMAKE_APIVER%%|g' \ -e 's|2.61|%%AUTOCONF_VERSION%%|g' \ ${WRKSRC}/aclocal.m4 do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/aldo ${PREFIX}/bin - ${INSTALL_MAN} ${WRKSRC}/aldo.1 ${MANPREFIX}/man/man1 + ${INSTALL_PROGRAM} ${WRKSRC}/src/aldo ${STAGEDIR}${PREFIX}/bin + ${INSTALL_MAN} ${WRKSRC}/aldo.1 ${STAGEDIR}${MANPREFIX}/man/man1 .include <bsd.port.mk> |