diff options
author | Emanuel Haupt <ehaupt@FreeBSD.org> | 2023-03-06 19:24:45 +0000 |
---|---|---|
committer | Emanuel Haupt <ehaupt@FreeBSD.org> | 2023-03-06 19:24:50 +0000 |
commit | 014a5f6c9dcc088ae8a0b1783d857c43e96eb0fa (patch) | |
tree | de21375f85d2a2da43d4249077be22191941cb51 | |
parent | dc478684f66360967b04385401989f7f7a42b8fb (diff) | |
download | ports-014a5f6c9dcc088ae8a0b1783d857c43e96eb0fa.tar.gz ports-014a5f6c9dcc088ae8a0b1783d857c43e96eb0fa.zip |
audio/ocp: Remove temporary workaround for libdiscid regression
The previously implemented workaround in audio/ocp is no longer
necessary as the regression to audio/libdiscid has been fixed.
-rw-r--r-- | audio/ocp/Makefile | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/audio/ocp/Makefile b/audio/ocp/Makefile index 291f2a1207aa..f553229712c3 100644 --- a/audio/ocp/Makefile +++ b/audio/ocp/Makefile @@ -1,6 +1,6 @@ PORTNAME= ocp PORTVERSION= 0.2.103 -PORTREVISION= 1 +PORTREVISION= 2 PORTEPOCH= 1 CATEGORIES= audio MASTER_SITES= https://stian.cubic.org/ocp/ @@ -89,15 +89,6 @@ X11_PLIST_SUB_OFF= DESKTOP='@comment ' \ TIMIDITY_CFG= ${LOCALBASE}/share/timidity/timidity.cfg -# Workaround regression in audio/libdiscid -# See also: https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=269990 -# (remove once it's fixed) -post-patch: - @${REINPLACE_CMD} \ - -e "s|^\(LIBDISCID_CFLAGS=\).*|\1-I${LOCALBASE}/include|" \ - -e "s|^\(LIBDISCID_LIBS=\).*|\1-L${LOCALBASE}/lib -ldiscid|" \ - ${WRKSRC}/Rules.make.in - post-install: @${STRIP_CMD} ${STAGEDIR}${PREFIX}/bin/ocp @${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/ocp/*.so |