f28722f554
- remove py2.7 flavor (end of year is coming) PR: 243743 Submitted by: Greg V <greg@unrelenting.technology>
66 lines
1.5 KiB
Makefile
66 lines
1.5 KiB
Makefile
# Created by: Koop Mast <kwm@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= libpeas
|
|
PORTVERSION= 1.26.0
|
|
PORTREVISION?= 0
|
|
CATEGORIES= devel gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT?= Next evolution of the Gedit plugins engine
|
|
|
|
LICENSE= LGPL21
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= valac:lang/vala
|
|
|
|
LIBPEAS_SLAVE?= no
|
|
|
|
.if ${LIBPEAS_SLAVE} == no
|
|
PORTSCOUT= limitw:1,even
|
|
.else
|
|
LIB_DEPENDS+= libpeas-1.0.so:devel/libpeas
|
|
PORTSCOUT= ignore:1
|
|
.endif
|
|
|
|
USES= gettext gnome meson pkgconfig tar:xz
|
|
USE_GNOME= cairo gtk30 intlhack introspection
|
|
USE_LDCONFIG= yes
|
|
INSTALLS_ICONS= yes
|
|
MESON_ARGS+= -Dglade_catalog=false
|
|
PLIST= ${.CURDIR}/pkg-plist
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_SUB= yes
|
|
|
|
DOCS_BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc
|
|
DOCS_MESON_TRUE= gtk_doc
|
|
|
|
.if ${LIBPEAS_SLAVE} == python
|
|
USES+= python:3.6+
|
|
USE_PYTHON= flavors
|
|
USE_GNOME+= pygobject3
|
|
MESON_ARGS+= -Dpython3=true
|
|
ALL_TARGET= loaders/python3/libpython3loader.so
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e "s|dependency('python3'|dependency('python-${PYTHON_VER}'|" \
|
|
-e "s|dependency('python3-embed'|dependency('python-${PYTHON_VER}-embed'|" \
|
|
${WRKSRC}/meson.build
|
|
|
|
do-install:
|
|
${MKDIR} ${STAGEDIR}${PREFIX}/lib/libpeas-1.0/loaders/
|
|
${INSTALL_PROGRAM} ${INSTALL_WRKSRC}/loaders/python3/libpython3loader.so \
|
|
${STAGEDIR}${PREFIX}/lib/libpeas-1.0/loaders/
|
|
|
|
.else
|
|
MESON_ARGS+= -Dpython3=false
|
|
.endif
|
|
|
|
# lua needs lua 5.1 and devel/lua-lgi. The latter is build for lua 5.2 however..
|
|
MESON_ARGS+= -Dpython2=false -Dlua51=false
|
|
|
|
.include <bsd.port.mk>
|