mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-29 05:38:00 +00:00
54a0b86543
in bsd.autotools.mk essentially makes this a no-op given that all the old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in exactly the same way as USE_AUTOTOOLS itself. Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME team -- all GNOME 2.12.x ports use it. Preliminary documentation can be found at: http://people.FreeBSD.org/~ade/autotools.txt which is in the process of being SGMLized before introduction into the Porters Handbook. Light blue touch-paper. Run.
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: PiTiVi
|
|
# Date created: 20 Dec 2004
|
|
# Whom: Koop Mast <kwm@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= pitivi
|
|
PORTVERSION= 0.1.10
|
|
PORTREVISION= 1
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= Gstreamer based non-linear audio/video editor
|
|
|
|
BUILD_DEPENDS= gnonlin-config:${PORTSDIR}/multimedia/gnonlin \
|
|
${PYTHON_SITELIBDIR}/gst/_gst.so:${PORTSDIR}/multimedia/py-gstreamer
|
|
RUN_DEPENDS= gnonlin-config:${PORTSDIR}/multimedia/gnonlin \
|
|
${PYTHON_SITELIBDIR}/gst/_gst.so:${PORTSDIR}/multimedia/py-gstreamer
|
|
|
|
USE_BZIP2= yes
|
|
USE_GMAKE= yes
|
|
USE_REINPLACE= yes
|
|
USE_GNOME= gnometarget pygtk2 pkgconfig pygnome2
|
|
USE_GSTREAMER= yes
|
|
USE_AUTOTOOLS= libtool:15
|
|
USE_PYTHON= yes
|
|
GNU_CONFIGURE= yes
|
|
CONFIGURE_ARGS= --disable-docs-build
|
|
INSTALLS_SHLIB= yes
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${ARCH} != "i386"
|
|
BROKEN= "Configure fails on !i386"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|/usr/bin/python|${LOCALBASE}/bin/python|g' \
|
|
${WRKSRC}/bin/pitivi.in
|
|
@${REINPLACE_CMD} -e 's|0.1.9|0.1.10|g' \
|
|
${WRKSRC}/pitivi/ui/mainwindow.py
|
|
|
|
.include <bsd.port.post.mk>
|