diff options
Diffstat (limited to 'multimedia/smpeg-xmms/Makefile')
-rw-r--r-- | multimedia/smpeg-xmms/Makefile | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/multimedia/smpeg-xmms/Makefile b/multimedia/smpeg-xmms/Makefile new file mode 100644 index 0000000..e587880 --- /dev/null +++ b/multimedia/smpeg-xmms/Makefile @@ -0,0 +1,35 @@ +# New ports collection makefile for: smpeg-xmms +# Date created: 30 August 2000 +# Whom: Maxim Sobolev <sobomax@FreeBSD.org> +# +# $FreeBSD$ +# + +PORTNAME= smpeg-xmms +PORTVERSION= 0.3.3 +CATEGORIES= graphics gnome +MASTER_SITES= ftp://ftp.xmms.org/xmms/plugins/smpeg-xmms/ + +MAINTAINER= sobomax@FreeBSD.org + +LIB_DEPENDS= smpeg.0:${PORTSDIR}/graphics/smpeg \ + xmms.1:${PORTSDIR}/audio/xmms + +SDL_CONFIG?= ${LOCALBASE}/bin/sdl11-config + +USE_X_PREFIX= yes +USE_GTK= yes +USE_LIBTOOL= yes +CONFIGURE_ENV= SDL_CONFIG="${SDL_CONFIG}" \ + CPPFLAGS="-I${LOCALBASE}/include" \ + LDFLAGS="-L${LOCALBASE}/lib" + +pre-patch: + @${PERL} -pi -e 's|-lpthread|-pthread|g ; \ + s|DATADIRNAME=lib|DATADIRNAME=share|g' ${WRKSRC}/configure + +post-configure: + @${PERL} -pi -e 's|^deplibs_check_method=.*|deplibs_check_method=pass_all|' \ + ${WRKSRC}/libtool + +.include <bsd.port.mk> |