diff options
author | miwi <miwi@FreeBSD.org> | 2009-04-03 16:52:54 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2009-04-03 16:52:54 +0800 |
commit | e8267e9f49508315698cfa4f679f4534de915a48 (patch) | |
tree | a15ab33a12169b09f17c22c927226b65a4d50b56 /audio/tse3/Makefile | |
parent | 8a62da0d2225a4308d4248961e4b5e83ba4e866b (diff) | |
download | freebsd-ports-gnome-e8267e9f49508315698cfa4f679f4534de915a48.tar.gz freebsd-ports-gnome-e8267e9f49508315698cfa4f679f4534de915a48.tar.zst freebsd-ports-gnome-e8267e9f49508315698cfa4f679f4534de915a48.zip |
- Fix build with GCC 4.x
PR: 133310
Submitted by: Ports Fury
Diffstat (limited to 'audio/tse3/Makefile')
-rw-r--r-- | audio/tse3/Makefile | 29 |
1 files changed, 1 insertions, 28 deletions
diff --git a/audio/tse3/Makefile b/audio/tse3/Makefile index bebc8e347c47..ff75a5eb8d25 100644 --- a/audio/tse3/Makefile +++ b/audio/tse3/Makefile @@ -8,8 +8,7 @@ PORTNAME= tse3 PORTVERSION= 0.3.1 PORTREVISION= 1 CATEGORIES= audio -MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} -MASTER_SITE_SUBDIR= ${PORTNAME} +MASTER_SITES= SF MAINTAINER= ports@FreeBSD.org COMMENT= A MIDI library @@ -25,38 +24,12 @@ MAN3= tse3.3 .include <bsd.port.pre.mk> -.if ${OSVERSION} >= 700042 -BROKEN= Does not compile with GCC 4.2 -.endif - .if defined(WITH_ARTS) LIB_DEPENDS+= artsmidi:${PORTSDIR}/multimedia/kdemultimedia3 .else CONFIGURE_ARGS+= --without-aRts .endif -pre-everything:: - @${ECHO_MSG} - @${ECHO_MSG} -n "checking for SNDCTL_SEQ_GETTIME in sys/soundcard.h... " - @if ${GREP} -q SNDCTL_SEQ_GETTIME /usr/include/sys/soundcard.h; then\ - ${ECHO_MSG} "yes";\ - ${ECHO_MSG};\ - else\ - ${ECHO_MSG} "no";\ - ${ECHO_MSG};\ - ${ECHO_MSG} "********************************************************************************";\ - ${ECHO_MSG} "* This port requires: *";\ - ${ECHO_MSG} "* *";\ - ${ECHO_MSG} "* FreeBSD-CURRENT newer than Nov 22 03:27:09 2003 UTC (or FreeBSD 5.3-Release) *";\ - ${ECHO_MSG} "* *";\ - ${ECHO_MSG} "* OR *";\ - ${ECHO_MSG} "* *";\ - ${ECHO_MSG} "* FreeBSD-STABLE newer than Jul 20 13:49:30 2004 UTC (or FreeBSD 4.11-Release) *";\ - ${ECHO_MSG} "********************************************************************************";\ - ${ECHO_MSG};\ - ${ECHO_MSG} "Aborting."; exit 1;\ - fi - post-install: .if !defined(NOPORTDOCS) @${MKDIR} ${DOCSDIR} |