openbsd-ports/audio/swh-plugins/Makefile

50 lines
1.2 KiB
Makefile

# $OpenBSD: Makefile,v 1.13 2016/03/16 21:19:37 naddy Exp $
COMMENT = LADSPA plugins from Steve Harris
DISTNAME = swh-plugins-0.4.15
REVISION = 3
CATEGORIES = audio
HOMEPAGE = http://plugin.org.uk/
# GPLv2
PERMIT_PACKAGE_CDROM = Yes
WANTLIB = fftw3f m pthread
MASTER_SITES = ${HOMEPAGE}/releases/0.4.15/ \
https://distfiles.nl/
BUILD_DEPENDS = audio/ladspa \
devel/libtool
LIB_DEPENDS = math/fftw3,float
AUTOMAKE_VERSION = 1.9
AUTOCONF_VERSION = 2.59
CONFIGURE_STYLE = autoconf automake
CONFIGURE_ENV += CPPFLAGS="-I${LOCALBASE}/include"
CFLAGS += -fPIC
# only "translation" is en_GB
CONFIGURE_ARGS += --disable-nls
AUTO_ENV = AUTOCONF_VERSION=${AUTOCONF_VERSION} \
AUTOMAKE_VERSION=${AUTOMAKE_VERSION}
post-extract:
find ${WRKSRC} -type f -name '*.c' -print -execdir perl -pi \
-e 's/^void\s+_init\(\)\s+{/void __init() __attribute__((constructor));\nvoid __init() {/;' \
-e 's/^void\s+_fini\(\)\s+{/void __fini() __attribute__((destructor));\nvoid __fini() {/;' \
{} \;
post-patch:
rm ${WRKSRC}/acconfig.h ${WRKSRC}/ladspa.h
cd ${WRKSRC}; ${AUTO_ENV} aclocal -I . -I m4
pre-configure:
cd ${WRKSRC}; ${AUTO_ENV} automake --foreign --add-missing
.include <bsd.port.mk>