diff options
author | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-10-28 06:10:10 +0800 |
---|---|---|
committer | kwm <kwm@df743ca5-7f9a-e211-a948-0013205c9059> | 2013-10-28 06:10:10 +0800 |
commit | 752a66b40a757b50196fb97fda1143a42e96c295 (patch) | |
tree | 49bd85e2fc333a96c40e09b46a8027f64b1a470f /accessibility/orca/Makefile | |
parent | 2d81cfc3ccdf086d3ac5c107818ffe2f73f04d9a (diff) | |
download | marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.gz marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.bz2 marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.lz marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.xz marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.tar.zst marcuscom-ports-752a66b40a757b50196fb97fda1143a42e96c295.zip |
Move gnome3 ports into the place of the gnome2 locations.
Update to new port rules, remove conflicts, latest_link, enable stage support.
gnome-games was skipped because I got a update for that.
gnome-keyring 2 vs 3, needs to be looked at.
zenity 2 vs 3, and libgnomekbd 2 vs 3
Use new lib_depend syntax in bsd.gnome.mk.
Possible lots of broken links.
git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@18813 df743ca5-7f9a-e211-a948-0013205c9059
Diffstat (limited to 'accessibility/orca/Makefile')
-rw-r--r-- | accessibility/orca/Makefile | 32 |
1 files changed, 15 insertions, 17 deletions
diff --git a/accessibility/orca/Makefile b/accessibility/orca/Makefile index 67fb5a777..faf282e41 100644 --- a/accessibility/orca/Makefile +++ b/accessibility/orca/Makefile @@ -1,43 +1,41 @@ # Created by: Joe Marcus Clarke <marcus@FreeBSD.org> # $FreeBSD$ -# $MCom: ports/trunk/accessibility/orca/Makefile 18610 2013-06-30 16:33:05Z marcus $ +# $MCom: ports/trunk/accessibility/orca3/Makefile 18610 2013-06-30 16:33:05Z marcus $ PORTNAME= orca -PORTVERSION= 2.32.1 -PORTREVISION= 3 +PORTVERSION= 3.6.2 +PORTREVISION= 1 CATEGORIES= accessibility gnome MASTER_SITES= GNOME -DIST_SUBDIR= gnome2 +DIST_SUBDIR= gnome3 MAINTAINER= gnome@FreeBSD.org COMMENT= Scriptable screen reader BUILD_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:${PORTSDIR}/devel/py-dbus \ - ${PYTHON_SITELIBDIR}/pyatspi/__init__.py:${PORTSDIR}/accessibility/at-spi \ - ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg -LIB_DEPENDS= libgnome-mag.so:${PORTSDIR}/accessibility/gnome-mag + ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg \ + ${PYTHON_SITELIBDIR}/cairo/__init__.py:${PORTSDIR}/graphics/py-cairo \ + itstool:${PORTSDIR}/textproc/itstool +LIB_DEPENDS= libatspi.so:${PORTSDIR}/accessibility/at-spi2-core RUN_DEPENDS= ${PYTHON_SITELIBDIR}/_dbus_bindings.so:${PORTSDIR}/devel/py-dbus \ - ${PYTHON_SITELIBDIR}/pyatspi/__init__.py:${PORTSDIR}/accessibility/at-spi \ - ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg + ${PYTHON_SITELIBDIR}/xdg/__init__.py:${PORTSDIR}/devel/py-xdg \ + ${PYTHON_SITELIBDIR}/cairo/__init__.py:${PORTSDIR}/graphics/py-cairo -CONFLICTS= orca-3.[0-9]* py*-json-py-[0-9]* +# conflict with py*-json-py because orca uses the json from python itself +# and py*-json-py shadows this. +CONFLICTS= py*-json-py-[0-9]* -NO_STAGE= yes -USE_BZIP2= yes +USE_XZ= yes USES= gettext gmake pathfix pkgconfig USE_PYTHON= yes -USE_GNOME= gnomeprefix libgnomeui gnomespeech pygnome2 pygnomedesktop +USE_GNOME= gnomeprefix gtk30 pygobject3 INSTALLS_ICONS= yes GNU_CONFIGURE= yes CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib -MAN1= orca.1 - post-patch: @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ - ${WRKSRC}/src/orca/orca.in - @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g' \ ${WRKSRC}/src/orca/orca_i18n.py .include <bsd.port.mk> |