eb69de1228
* better Ogg FLAC support * speedups * several new options to flac and metaflac * several API additions * streaming support in the XMMS plugin * bugfixes
42 lines
892 B
Makefile
42 lines
892 B
Makefile
# $OpenBSD: Makefile,v 1.12 2005/03/09 00:15:14 naddy Exp $
|
|
|
|
SHARED_ONLY= Yes
|
|
|
|
COMMENT= "XMMS input plugin for playing FLAC files"
|
|
|
|
VERSION= 1.1.2
|
|
PKGNAME= xmms-flac-${VERSION}
|
|
DISTNAME= flac-${VERSION}
|
|
CATEGORIES= audio
|
|
HOMEPAGE= http://flac.sourceforge.net/
|
|
|
|
MAINTAINER= Christian Weisgerber <naddy@openbsd.org>
|
|
|
|
# GPL
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
WANTLIB= X11 Xext Xi gdk glib gmodule gtk iconv intl m
|
|
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE:=flac/}
|
|
|
|
LIB_DEPENDS= xmms.4::audio/xmms \
|
|
FLAC.7::audio/flac
|
|
|
|
USE_LIBTOOL= Yes
|
|
CONFIGURE_STYLE=gnu
|
|
CONFIGURE_ARGS= --with-libiconv-prefix="${LOCALBASE}" \
|
|
--with-ogg="${LOCALBASE}" \
|
|
--with-xmms-prefix="${LOCALBASE}"
|
|
|
|
MAKE_FILE= ${FILESDIR}/Makefile
|
|
|
|
# "obj" is magic to our make(1)
|
|
post-configure:
|
|
@rm -rf ${WRKSRC}/obj
|
|
|
|
NO_REGRESS= Yes
|
|
|
|
.include <bsd.port.mk>
|