mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-20 00:21:35 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
42 lines
1.3 KiB
Makefile
42 lines
1.3 KiB
Makefile
# Created by: Koop Mast <kwm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= pitivi
|
|
PORTVERSION= 0.999
|
|
PORTREVISION= 2
|
|
CATEGORIES= multimedia
|
|
MASTER_SITES= GNOME
|
|
|
|
MAINTAINER= kwm@FreeBSD.org
|
|
COMMENT= Gstreamer based non-linear audio/video editor
|
|
|
|
LICENSE= LGPL21+
|
|
|
|
BUILD_DEPENDS= gst-validate-launcher:multimedia/gstreamer1-validate \
|
|
itstool:textproc/itstool
|
|
LIB_DEPENDS= libgsttranscoder-1.0.so:multimedia/gstreamer1-transcoder
|
|
RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}gstreamer1>=1.14.0:multimedia/py-gstreamer1@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}cairo>=0:graphics/py-cairo@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}matplotlib>=1.4:math/py-matplotlib@${PY_FLAVOR} \
|
|
${PYTHON_PKGNAMEPREFIX}sqlite3>0:databases/py-sqlite3@${PY_FLAVOR} \
|
|
${PYNUMPY}
|
|
|
|
USES= desktop-file-utils gettext gnome meson pkgconfig python:3.3+ shebangfix tar:xz
|
|
SHEBANG_FILES= bin/pitivi.in \
|
|
getenvvar.py \
|
|
tests/__init__.py \
|
|
tests/validate-tests/manager.py \
|
|
tests/validate-tests/runtests
|
|
USE_GNOME= cairo intltool gdkpixbuf2 gsound gtk30 pygobject3
|
|
USE_GSTREAMER1= editing-services gdkpixbuf good gtk
|
|
INSTALLS_ICONS= yes
|
|
USE_LDCONFIG= yes
|
|
MESON_ARGS= -Db_lundef=false
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "/find_program/s|'python3'|'${PYTHON_VERSION}'|" \
|
|
-e "/dependency/s|'python3'|'python-${PYTHON_VER}'|" \
|
|
${WRKSRC}/meson.build
|
|
|
|
.include <bsd.port.mk>
|