Date: Wed, 11 Dec 2013 09:51:37 +0000 (UTC) From: Baptiste Daroussin <bapt@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r336152 - in head/accessibility: at-spi2-atk at-spi2-core dasher eflite gnopernicus gok orca Message-ID: <201312110951.rBB9pbQq001096@svn.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: bapt Date: Wed Dec 11 09:51:36 2013 New Revision: 336152 URL: http://svnweb.freebsd.org/changeset/ports/336152 Log: In preparation for making libtool generate libraries with a sane name, fix all LIB_DEPENDS in accessibility With hat: portmgr Modified: head/accessibility/at-spi2-atk/Makefile head/accessibility/at-spi2-core/Makefile head/accessibility/dasher/Makefile head/accessibility/dasher/pkg-plist head/accessibility/eflite/Makefile head/accessibility/gnopernicus/Makefile head/accessibility/gok/Makefile head/accessibility/orca/Makefile Modified: head/accessibility/at-spi2-atk/Makefile ============================================================================== --- head/accessibility/at-spi2-atk/Makefile Wed Dec 11 08:29:01 2013 (r336151) +++ head/accessibility/at-spi2-atk/Makefile Wed Dec 11 09:51:36 2013 (r336152) @@ -14,7 +14,7 @@ COMMENT= Assisted Technology Provider mo LICENSE= LGPL21 BUILD_DEPENDS= at-spi2-core>=2.8.0:${PORTSDIR}/accessibility/at-spi2-core -LIB_DEPENDS= dbus-1:${PORTSDIR}/devel/dbus +LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus RUN_DEPENDS= at-spi2-core>=2.8.0:${PORTSDIR}/accessibility/at-spi2-core PORTSCOUT= limitw:1,even Modified: head/accessibility/at-spi2-core/Makefile ============================================================================== --- head/accessibility/at-spi2-core/Makefile Wed Dec 11 08:29:01 2013 (r336151) +++ head/accessibility/at-spi2-core/Makefile Wed Dec 11 09:51:36 2013 (r336152) @@ -13,7 +13,7 @@ COMMENT= Assistive Technology Service Pr LICENSE= LGPL21 -LIB_DEPENDS= dbus-1:${PORTSDIR}/devel/dbus +LIB_DEPENDS= libdbus-1.so:${PORTSDIR}/devel/dbus PORTSCOUT= limitw:1,even Modified: head/accessibility/dasher/Makefile ============================================================================== --- head/accessibility/dasher/Makefile Wed Dec 11 08:29:01 2013 (r336151) +++ head/accessibility/dasher/Makefile Wed Dec 11 09:51:36 2013 (r336152) @@ -14,15 +14,13 @@ MAINTAINER= lewiz@compsoc.man.ac.uk COMMENT= Information efficient text-entry interface BUILD_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -LIB_DEPENDS= ogg:${PORTSDIR}/audio/libogg +LIB_DEPENDS= libogg.so:${PORTSDIR}/audio/libogg RUN_DEPENDS= rarian-sk-config:${PORTSDIR}/textproc/rarian -NO_STAGE= yes USE_BZIP2= yes -USES= gettext gmake pkgconfig -USE_GNOME= gnomeprefix gnomehack intlhack gnomehier libgnomeui atspi \ +USES= gettext gmake pathfix pkgconfig +USE_GNOME= gnomeprefix intlhack gnomehier libgnomeui atspi \ libwnck gnomedocutils -WANT_GNOME= yes GNU_CONFIGURE= yes INSTALLS_ICONS= yes INSTALLS_OMF= yes @@ -30,14 +28,7 @@ CPPFLAGS+= -I${LOCALBASE}/include LDFLAGS+= -L${LOCALBASE}/lib GCONF_SCHEMAS= dasher.schemas -MAN1= dasher.1 -.include <bsd.port.pre.mk> - -#.if ${HAVE_GNOME:Mgnomespeech}!="" -#USE_GNOME+= gnomespeech -#CONFIGURE_ARGS+=--enable-speech -#.endif CONFIGURE_ARGS+= --disable-speech post-patch: @@ -47,4 +38,4 @@ post-patch: @${REINPLACE_CMD} -e 's|__gnu_cxx::lldiv|lldiv|' \ ${WRKSRC}/Src/DasherCore/DasherViewSquare.cpp -.include <bsd.port.post.mk> +.include <bsd.port.mk> Modified: head/accessibility/dasher/pkg-plist ============================================================================== --- head/accessibility/dasher/pkg-plist Wed Dec 11 08:29:01 2013 (r336151) +++ head/accessibility/dasher/pkg-plist Wed Dec 11 09:51:36 2013 (r336152) @@ -1,4 +1,5 @@ bin/dasher +man/man1/dasher.1.gz share/applications/dasher.desktop %%DATADIR%%/alphabet.AfaanOromo.xml %%DATADIR%%/alphabet.Armenian.xml Modified: head/accessibility/eflite/Makefile ============================================================================== --- head/accessibility/eflite/Makefile Wed Dec 11 08:29:01 2013 (r336151) +++ head/accessibility/eflite/Makefile Wed Dec 11 09:51:36 2013 (r336152) @@ -12,7 +12,6 @@ COMMENT= Speech server for Festival Lite BUILD_DEPENDS= flite:${PORTSDIR}/audio/flite RUN_DEPENDS= flite:${PORTSDIR}/audio/flite -NO_STAGE= yes USES= gmake GNU_CONFIGURE= yes ALL_TARGET= eflite @@ -47,15 +46,8 @@ post-patch: @${REINPLACE_CMD} -e 's|/etc/es\.conf|${PREFIX}/etc/es.conf|;s|sockname|socketfile|g' ${WRKSRC}/INSTALL post-install: -.if !defined(NOPORTDOCS) - @${MKDIR} ${DOCSDIR} -.for doc in ${PORTDOCS} - ${INSTALL_DATA} ${WRKSRC}/${doc} ${DOCSDIR} -.endfor -.endif - ${INSTALL_DATA} ${FILESDIR}/es.conf.sample ${PREFIX}/etc - @if [ ! -f ${PREFIX}/etc/es.conf ]; then \ - ${CP} -p ${PREFIX}/etc/es.conf.sample ${PREFIX}/etc/es.conf ; \ - fi + @${MKDIR} ${STAGEDIR}${DOCSDIR} + cd ${WRKSRC}; ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR} + ${INSTALL_DATA} ${FILESDIR}/es.conf.sample ${STAGEDIR}${PREFIX}/etc .include <bsd.port.mk> Modified: head/accessibility/gnopernicus/Makefile ============================================================================== --- head/accessibility/gnopernicus/Makefile Wed Dec 11 08:29:01 2013 (r336151) +++ head/accessibility/gnopernicus/Makefile Wed Dec 11 09:51:36 2013 (r336152) @@ -12,7 +12,7 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= Collection of accessibility apps for GNOME 2 -LIB_DEPENDS= gnome-mag.2:${PORTSDIR}/accessibility/gnome-mag +LIB_DEPENDS= libgnome-mag.so:${PORTSDIR}/accessibility/gnome-mag NO_STAGE= yes USE_BZIP2= yes Modified: head/accessibility/gok/Makefile ============================================================================== --- head/accessibility/gok/Makefile Wed Dec 11 08:29:01 2013 (r336151) +++ head/accessibility/gok/Makefile Wed Dec 11 09:51:36 2013 (r336152) @@ -13,8 +13,8 @@ DIST_SUBDIR= gnome2 MAINTAINER= gnome@FreeBSD.org COMMENT= GNOME On-Screen Keyboard (GOK) -LIB_DEPENDS= canberra-gtk.0:${PORTSDIR}/audio/libcanberra \ - dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib +LIB_DEPENDS= libcanberra-gtk.so:${PORTSDIR}/audio/libcanberra \ + libdbus-glib-1.so:${PORTSDIR}/devel/dbus-glib NO_STAGE= yes USE_BZIP2= yes Modified: head/accessibility/orca/Makefile ============================================================================== --- head/accessibility/orca/Makefile Wed Dec 11 08:29:01 2013 (r336151) +++ head/accessibility/orca/Makefile Wed Dec 11 09:51:36 2013 (r336152) @@ -15,7 +15,7 @@ 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= gnome-mag.2:${PORTSDIR}/accessibility/gnome-mag +LIB_DEPENDS= libgnome-mag.so:${PORTSDIR}/accessibility/gnome-mag 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201312110951.rBB9pbQq001096>