diff options
author | ade <ade@FreeBSD.org> | 2000-09-19 00:11:09 +0800 |
---|---|---|
committer | ade <ade@FreeBSD.org> | 2000-09-19 00:11:09 +0800 |
commit | 7e764f4902beea31b3330f015cffb73cf7689238 (patch) | |
tree | 79ddf7196311a0c718f30da96a51634584f89c46 /audio/xsidplay/Makefile | |
parent | b07fb6ea5cbae2d71bc0c0fdcd54a16ec99d3f9f (diff) | |
download | freebsd-ports-gnome-7e764f4902beea31b3330f015cffb73cf7689238.tar.gz freebsd-ports-gnome-7e764f4902beea31b3330f015cffb73cf7689238.tar.zst freebsd-ports-gnome-7e764f4902beea31b3330f015cffb73cf7689238.zip |
Update to latest version (1.3.9)
Fixes building with gcc >= 2.8.1
PR: 21337
Submitted by: maintainer (with the help of Ports Fury)
Diffstat (limited to 'audio/xsidplay/Makefile')
-rw-r--r-- | audio/xsidplay/Makefile | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/audio/xsidplay/Makefile b/audio/xsidplay/Makefile index ae80e585bcf0..fa1a4c2ec5a7 100644 --- a/audio/xsidplay/Makefile +++ b/audio/xsidplay/Makefile @@ -6,32 +6,26 @@ # PORTNAME= xsidplay -PORTVERSION= 1.3.8 +PORTVERSION= 1.3.9 CATEGORIES= audio emulators MASTER_SITES= http://www.geocities.com/SiliconValley/Lakes/5147/sidplay/packages/ \ http://www.freenix.no/~anders/ -DISTNAME= ${PORTNAME}-1_3_8 -EXTRACT_SUFX= _tar.gz +DISTNAME= ${PORTNAME}-${PORTVERSION:S/./_/g} +EXTRACT_SUFX= .tgz MAINTAINER= anders@fix.no -BUILD_DEPENDS= sidplay:${PORTSDIR}/audio/sidplay +LIB_DEPENDS= sidplay.1:${PORTSDIR}/audio/libsidplay GNU_CONFIGURE= YES -USE_GMAKE= YES USE_QT= YES CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include \ - -I${LOCALBASE}/include/sidplay" \ - LDFLAGS=-L${LOCALBASE}/lib + -I${X11BASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib -L${X11BASE}/lib" WRKSRC= ${WRKDIR}/${PKGNAME} -.include <bsd.port.pre.mk> -.if ${OSVERSION} >= 400000 -BROKEN= "Doesn't build with gcc >= 2.8.1" -.endif - do-install: - ${INSTALL_PROGRAM} ${WRKSRC}/src/xsidplay ${PREFIX}/bin + ${INSTALL_PROGRAM} ${WRKSRC}/src/xsidplay ${PREFIX}/bin -.include <bsd.port.post.mk> +.include <bsd.port.mk> |