mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-27 10:03:20 +00:00
f9b18d0317
Trim headers
48 lines
1.4 KiB
Makefile
48 lines
1.4 KiB
Makefile
# Created by: Koop Mast <kwm@rainbow-runner.nl>
|
|
# $FreeBSD$
|
|
# $MCom: ports/multimedia/py-gstreamer/Makefile,v 1.20 2008/07/26 17:21:38 marcus Exp $
|
|
|
|
PORTNAME= gstreamer
|
|
PORTVERSION= 0.10.22
|
|
PORTREVISION= 1
|
|
CATEGORIES= multimedia python gnome
|
|
MASTER_SITES= http://gstreamer.freedesktop.org/src/gst-python/
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= gst-python-${PORTVERSION}
|
|
|
|
MAINTAINER= multimedia@FreeBSD.org
|
|
COMMENT= A set of Python bindings for gstreamer
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2
|
|
RUN_DEPENDS= ${PYTHON_SITELIBDIR}/libxml2mod.so:${PORTSDIR}/textproc/py-libxml2
|
|
|
|
USE_PYTHON= yes
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= pygobject gnomehack
|
|
USE_PKGCONFIG= build
|
|
USE_GSTREAMER= yes
|
|
GNU_CONFIGURE= yes
|
|
PLIST_SUB= VERSION="${GST_VERSION}"
|
|
CPPFLAGS+= -I${LOCALBASE}/include ${PTHREAD_CFLAGS}
|
|
LDFLAGS+= -L${LOCALBASE} ${PTHREAD_LIBS}
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|DLFCN|dl|g' ${WRKSRC}/gst/__init__.py
|
|
@${REINPLACE_CMD} -e 's|alsasink|osssink|g' -e 's|alsasrc|osssrc|g' \
|
|
${WRKSRC}/gst/extend/jukebox.py \
|
|
${WRKSRC}/common/m4/gst-default.m4
|
|
.for d in audio-controller.py decodebin.py mixer.py vumeter.py
|
|
@${REINPLACE_CMD} -e 's|alsasink|osssink|g' -e 's|alsasrc|osssrc|g' \
|
|
${WRKSRC}/examples/${d}
|
|
.endfor
|
|
|
|
post-install:
|
|
@cd ${PYTHONPREFIX_SITELIBDIR} && ${PYTHON_CMD} -OOOO -c 'import pygst' && \
|
|
${PYTHON_CMD} -c 'import pygst'
|
|
|
|
.include <bsd.port.mk>
|