diff options
author | trevor <trevor@FreeBSD.org> | 2003-10-18 15:22:32 +0800 |
---|---|---|
committer | trevor <trevor@FreeBSD.org> | 2003-10-18 15:22:32 +0800 |
commit | be4c93112c1f53c6162435d68c0c23c42549019a (patch) | |
tree | 85e606af11e988aacae84a258bf8b13d4775c616 /audio/denemo | |
parent | 389aa33c69826f9aff0655a317363c1132f9469e (diff) | |
download | freebsd-ports-gnome-be4c93112c1f53c6162435d68c0c23c42549019a.tar.gz freebsd-ports-gnome-be4c93112c1f53c6162435d68c0c23c42549019a.tar.zst freebsd-ports-gnome-be4c93112c1f53c6162435d68c0c23c42549019a.zip |
Unbreak for FreeBSD 5.X by renaming denemo's setkey() which conflicts
with the one in the FreeSec cipher library.
PR: 58161
Submitted by: Samy Al Bahra of kerneled.com
Diffstat (limited to 'audio/denemo')
-rw-r--r-- | audio/denemo/Makefile | 15 |
1 files changed, 5 insertions, 10 deletions
diff --git a/audio/denemo/Makefile b/audio/denemo/Makefile index 7bb30f3e14fc..2afcfa77d7f7 100644 --- a/audio/denemo/Makefile +++ b/audio/denemo/Makefile @@ -27,17 +27,12 @@ DOCDIR= share/doc/${PORTNAME} USE_GNOME= gtk12 USE_X_PREFIX= yes -.include <bsd.port.pre.mk> - -.if ${OSVERSION} >= 500113 -BROKEN= "Does not compile" -.endif - pre-patch: -.for ii in analysis_highlighting.c main.c playback.c print.c +.for ii in analysis_highlighting.c easylyparser.c easylyparser.y \ + lyparserfuncs.c lyparserfuncs.h main.c playback.c print.c ${MV} ${WRKSRC}/${ii} ${WRKSRC}/${ii}.orig - ${SED} -e "s:<wait.h:<sys/wait.h:g" < ${WRKSRC}/${ii}.orig \ - > ${WRKSRC}/${ii} + ${SED} -e "s:<wait.h:<sys/wait.h:g ; s:setkey:dsetkey:g" \ + < ${WRKSRC}/${ii}.orig > ${WRKSRC}/${ii} .endfor pre-install: @@ -64,4 +59,4 @@ do-install: .endfor .endif -.include <bsd.port.post.mk> +.include <bsd.port.mk> |