Commit b2ab09e9 authored by Rene Ladan's avatar Rene Ladan
Browse files

audio/audiere: Remove expired port

2024-10-31 audio/audiere: last release in 2006, no consumers in the Ports tree
parent 1d788415
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -3568,3 +3568,4 @@ audio/libshairport||2024-10-31|Has expired: Abandonware, project removed upstrea
databases/libpqtypes||2024-10-31|Has expired: Abandonware, upstream is no longer around
databases/libmongo-client||2024-10-31|Has expired: Abandonware, upstream removed repo
archivers/rubygem-archive-tar-minitar|archivers/rubygem-minitar|2024-10-31|Has expired: archive-tar-minitar has been deprecated. Use archivers/rubygem-minitar instead
audio/audiere||2024-10-31|Has expired: last release in 2006, no consumers in the Ports tree
+0 −1
Original line number Diff line number Diff line
@@ -39,7 +39,6 @@
    SUBDIR += atunes
    SUBDIR += aubio
    SUBDIR += audacity
    SUBDIR += audiere
    SUBDIR += audiocd-kio
    SUBDIR += audiowmark
    SUBDIR += aumix

audio/audiere/Makefile

deleted100644 → 0
+0 −77
Original line number Diff line number Diff line
PORTNAME=	audiere
PORTVERSION=	1.9.4
PORTREVISION=	7
CATEGORIES=	audio
MASTER_SITES=	SF

MAINTAINER=	amdmi3@FreeBSD.org
COMMENT=	High-level audio API
WWW=		https://audiere.sourceforge.net/

LICENSE=	LGPL21
LICENSE_FILE=	${WRKSRC}/doc/license.txt

DEPRECATED=	last release in 2006, no consumers in the Ports tree
EXPIRATION_DATE=2024-10-31

USES=		autoreconf gmake libtool
GNU_CONFIGURE=	yes
USE_CXXSTD=	c++98
USE_LDCONFIG=	yes

CONFIGURE_ENV=	PTHREAD_LIBS="-lpthread"
CPPFLAGS+=	-I${LOCALBASE}/include/speex -I${LOCALBASE}/include
LDFLAGS+=	-L${LOCALBASE}/lib

PORTDOCS=	changelog.txt cvs.txt dependencies.txt faq.txt glossary.txt \
		license.txt overview.txt readme.txt release-howto.txt \
		tutorial.txt

OPTIONS_DEFINE=		DUMB CDAUDIO VORBIS SPEEX DOCS
OPTIONS_DEFAULT=	DUMB CDAUDIO VORBIS SPEEX

DUMB_DESC=	DUMB support
CDAUDIO_DESC=	libcdaudio support

# since dumb is a static lib and it depends on ogg, we should
# link audiere with ogg as well
DUMB_IMPLIES=	VORBIS

DUMB_BUILD_DEPENDS=	${LOCALBASE}/lib/libdumb.a:audio/dumb
CDAUDIO_LIB_DEPENDS=	libcdaudio.so:audio/libcdaudio
VORBIS_LIB_DEPENDS=	libvorbis.so:audio/libvorbis \
			libogg.so:audio/libogg
SPEEX_LIB_DEPENDS=	libspeex.so:audio/speex

post-patch:
# could be an option, but build is broken with recent FLAC
	@${REINPLACE_CMD} -e '/AC_CHECK_LIB/ s|FLAC|no_&|; \
		s|wx_config|no_&|' \
		${WRKSRC}/configure.in

post-patch-DUMB-off:
	@${REINPLACE_CMD} -e '/AC_CHECK_LIB/ s|dumb|no_&|' \
		${WRKSRC}/configure.in

post-patch-CDAUDIO-off:
	@${REINPLACE_CMD} -e '/AC_CHECK_LIB/ s|cdaudio|no_&|' \
		${WRKSRC}/configure.in

post-patch-VORBIS-off:
	@${REINPLACE_CMD} -e '/AC_CHECK_HEADER/ s|vorbis|no_&|' \
		${WRKSRC}/configure.in

post-patch-SPEEX-off:
	@${REINPLACE_CMD} -e '/AC_CHECK_HEADER/ s|speex|no_&|' \
		${WRKSRC}/configure.in

post-install:
	@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libaudiere.so

post-install-DOCS-on:
	@${MKDIR} ${STAGEDIR}${DOCSDIR}
.for f in ${PORTDOCS}
	${INSTALL_DATA} ${WRKSRC}/doc/${f} ${STAGEDIR}${DOCSDIR}
.endfor

.include <bsd.port.mk>

audio/audiere/distinfo

deleted100644 → 0
+0 −2
Original line number Diff line number Diff line
SHA256 (audiere-1.9.4.tar.gz) = 74538fbc2f1ef467b3e1376c6ff4e0f40b664fca1dbfb1fcaa2fb823d5f5a219
SIZE (audiere-1.9.4.tar.gz) = 453279
+0 −14
Original line number Diff line number Diff line
--- src/debug.cpp.orig	2006-02-14 04:57:01 UTC
+++ src/debug.cpp
@@ -1,8 +1,11 @@
 #ifdef WIN32
   #include <windows.h>
+#else
+  #include "unistd.h"
 #endif
 
 #include "debug.h"
+#include <cstdlib>
 
 
 namespace audiere {
Loading