mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
b93a80c992
The offical GNOME 3.18 release notes can be found at https://help.gnome.org/misc/release-notes/3.18/ This update doesn't contain the glib/gtk c++ bindings which will be done in a another update due to the requirement on c++11 and the amount of fallout this probably will give. GDM is still at version 3.16 due to some issues. Bump mate-themes to use the gtk 3.18 version of the themes. Thanks to Antoine Brodin for running the exp-runs. This release was made possible by the following people: Gustau Perez Ting-Wei_Lan PR: 207006
38 lines
931 B
Makefile
38 lines
931 B
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= atspi
|
|
PORTVERSION= 2.18.0
|
|
CATEGORIES= accessibility x11-toolkits python
|
|
MASTER_SITES= GNOME/sources/pyatspi/${PORTVERSION:C/^([0-9]+\.[0-9]+).*/\1/}
|
|
PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX}
|
|
DISTNAME= pyatspi-${PORTVERSION}
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Python3 API for the D-BUS based SPI framework
|
|
|
|
RUN_DEPENDS= ${LOCALBASE}/libexec/at-spi2-registryd:${PORTSDIR}/accessibility/at-spi2-core
|
|
|
|
CONFLICTS= at-spi-1.[0-9]*
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USES= gettext gmake gnome pathfix pkgconfig python:3 tar:xz
|
|
USE_GNOME= intlhack py3gobject3
|
|
GNU_CONFIGURE= yes
|
|
CPPFLAGS+= -I${LOCALBASE}/include
|
|
LDFLAGS+= -L${LOCALBASE}/lib
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${PYTHON_REL} < 3500
|
|
PYOEXTENSION= pyo
|
|
.else
|
|
PYOEXTENSION= opt-1.pyc
|
|
.endif
|
|
|
|
PLIST_SUB+= PYOEXTENSION=${PYOEXTENSION} \
|
|
PYVER=${PYTHON_VER:S/.//}
|
|
|
|
.include <bsd.port.post.mk>
|