From owner-svn-ports-all@FreeBSD.ORG Wed Jul 16 08:05:14 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 34B95199; Wed, 16 Jul 2014 08:05:14 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 15F1C2AF4; Wed, 16 Jul 2014 08:05:14 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.8/8.14.8) with ESMTP id s6G85D3U030008; Wed, 16 Jul 2014 08:05:13 GMT (envelope-from bapt@svn.freebsd.org) Received: (from bapt@localhost) by svn.freebsd.org (8.14.8/8.14.8/Submit) id s6G85BaO029985; Wed, 16 Jul 2014 08:05:11 GMT (envelope-from bapt@svn.freebsd.org) Message-Id: <201407160805.s6G85BaO029985@svn.freebsd.org> From: Baptiste Daroussin Date: Wed, 16 Jul 2014 08:05:11 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r362048 - in head: editors/emacs23 editors/gobby editors/lazarus emulators/darcnes games/quakeforge games/ufoai games/wesnoth graphics/bugle graphics/eog graphics/goom graphics/libggi g... X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 16 Jul 2014 08:05:14 -0000 Author: bapt Date: Wed Jul 16 08:05:11 2014 New Revision: 362048 URL: http://svnweb.freebsd.org/changeset/ports/362048 QAT: https://qat.redports.org/buildarchive/r362048/ Log: Fix non default LIB_DEPENDS With hat: portmgr Modified: head/editors/emacs23/Makefile head/editors/gobby/Makefile head/editors/lazarus/Makefile head/emulators/darcnes/Makefile head/games/quakeforge/Makefile head/games/ufoai/Makefile head/games/wesnoth/Makefile head/graphics/bugle/Makefile head/graphics/eog/Makefile head/graphics/goom/Makefile head/graphics/libggi/Makefile head/graphics/opendx/Makefile Modified: head/editors/emacs23/Makefile ============================================================================== --- head/editors/emacs23/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/editors/emacs23/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -86,7 +86,7 @@ SVG_CONFIGURE_WITH= rsvg GTK2_USE= GNOME=gtk20 GTK2_CONFIGURE_ON= --with-x-toolkit=gtk -XAW3D_LIB_DEPENDS= Xaw3d:${PORTSDIR}/x11-toolkits/Xaw3d +XAW3D_LIB_DEPENDS= libXaw3d.so:${PORTSDIR}/x11-toolkits/Xaw3d XAW3D_CONFIGURE_ON= --with-x-toolkit=athena XAW_USE= XORG=xaw @@ -99,29 +99,29 @@ SCROLLBARS_CONFIGURE_WITH= toolkit-scrol SYNC_INPUT_CONFIGURE_WITH= sync-input -JPEG_LIB_DEPENDS= jpeg:${PORTSDIR}/graphics/jpeg +JPEG_LIB_DEPENDS= libjpeg.so:${PORTSDIR}/graphics/jpeg JPEG_CONFIGURE_WITH= jpeg -TIFF_LIB_DEPENDS= tiff:${PORTSDIR}/graphics/tiff +TIFF_LIB_DEPENDS= libtiff.so:${PORTSDIR}/graphics/tiff TIFF_CONFIGURE_WITH= tiff -GIF_LIB_DEPENDS= gif:${PORTSDIR}/graphics/giflib +GIF_LIB_DEPENDS= libgif.so:${PORTSDIR}/graphics/giflib GIF_CONFIGURE_WITH= gif -PNG_LIB_DEPENDS+= png15:${PORTSDIR}/graphics/png +PNG_LIB_DEPENDS+= libpng15.so:${PORTSDIR}/graphics/png PNG_CONFIGURE_WITH= png XPM_USE= XORG=xpm XPM_CONFIGURE_WITH= xpm XFT_USE= XORG=xft -XFT_LIB_DEPENDS= freetype:${PORTSDIR}/print/freetype2 +XFT_LIB_DEPENDS= libfreetype.so:${PORTSDIR}/print/freetype2 XFT_CONFIGURE_WITH= xft -M17N_LIB_DEPENDS= m17n:${PORTSDIR}/devel/m17n-lib +M17N_LIB_DEPENDS= libm17n.so:${PORTSDIR}/devel/m17n-lib M17N_CONFIGURE_WITH= m17n-flt -OTF_LIB_DEPENDS= otf:${PORTSDIR}/print/libotf +OTF_LIB_DEPENDS= libotf.so:${PORTSDIR}/print/libotf OTF_CONFIGURE_WITH= libotf GCONF_USE= gnome=gconf2 @@ -134,7 +134,7 @@ CANNA_CONFIGURE_ON= --with-canna \ --with-canna-libraries=${LOCALBASE}/lib CANNA_PATCHFILES= emacs23.3canna-20110316.diff.gz CANNA_PATCH_SITES= http://distfiles.pirateparty.in/%SUBDIR%/ ${MASTER_SITE_LOCAL} -CANNA_LIB_DEPENDS= canna:${PORTSDIR}/japanese/canna-lib +CANNA_LIB_DEPENDS= libcanna.so:${PORTSDIR}/japanese/canna-lib X11_CONFIGURE_WITH= x X11_USE= XORG=x11 Modified: head/editors/gobby/Makefile ============================================================================== --- head/editors/gobby/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/editors/gobby/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -27,7 +27,7 @@ INSTALLS_ICONS= yes .include .if ${PORT_OPTIONS:MGTKSPELL} -LIB_DEPENDS+= gtkspell:${PORTSDIR}/textproc/gtkspell +LIB_DEPENDS+= libgtkspell.so:${PORTSDIR}/textproc/gtkspell CONFIGURE_ARGS+=--with-gtkspell .else CONFIGURE_ARGS+=--without-gtkspell Modified: head/editors/lazarus/Makefile ============================================================================== --- head/editors/lazarus/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/editors/lazarus/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -88,7 +88,7 @@ RUN_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLA .endif .if ${PORT_OPTIONS:MQT4} -LIB_DEPENDS+= Qt4Pas.5:${PORTSDIR}/x11-toolkits/qt4pas +LIB_DEPENDS+= libQt4Pas.so:${PORTSDIR}/x11-toolkits/qt4pas LCL_PLATFORM= qt BUILD_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-qt RUN_DEPENDS+= ${LCL_UNITS_DIR}/${LCL_PLATFORM}/interfaces.ppu:${PORTSDIR}/editors/lazarus-lcl-qt Modified: head/emulators/darcnes/Makefile ============================================================================== --- head/emulators/darcnes/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/emulators/darcnes/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -39,7 +39,7 @@ MAKE_ARGS+= TARGET=Linux_GTK PKGNAMESUFFIX= -gtk .else .if defined(WITH_SVGALIB) -LIB_DEPENDS+= vga:${PORTSDIR}/graphics/svgalib +LIB_DEPENDS+= libvga.so:${PORTSDIR}/graphics/svgalib MAKE_ARGS+= TARGET=Linux_svgalib PKGNAMESUFFIX= -svgalib .else Modified: head/games/quakeforge/Makefile ============================================================================== --- head/games/quakeforge/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/games/quakeforge/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -62,7 +62,7 @@ PLIST_SUB+= SDL="@comment " .endif .if ${PORT_OPTIONS:MVORBIS} -LIB_DEPENDS+= vorbis.4:${PORTSDIR}/audio/libvorbis +LIB_DEPENDS+= libvorbis.so:${PORTSDIR}/audio/libvorbis CONFIGURE_ARGS+=--with-ogg=${LOCALBASE} --with-vorbis=${LOCALBASE} PLIST_SUB+= VORBIS="" .else @@ -71,7 +71,7 @@ PLIST_SUB+= VORBIS="@comment " .endif .if ${PORT_OPTIONS:MXMMS} -LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms +LIB_DEPENDS+= libxmms.so:${PORTSDIR}/multimedia/xmms CONFIGURE_ARGS+=--with-xmms-prefix=${LOCALBASE} PLIST_SUB+= XMMS="" .else Modified: head/games/ufoai/Makefile ============================================================================== --- head/games/ufoai/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/games/ufoai/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -70,7 +70,7 @@ PLIST_SUB+= UFO2MAP="@comment " .if $(PORT_OPTIONS:MUFORADIANT) CONFIGURE_ARGS+=--enable-uforadiant USE_GNOME+= gtk20 glib20 gtksourceview2 libxml2 -LIB_DEPENDS+= gtkglext-x11-1.0.0:${PORTSDIR}/x11-toolkits/gtkglext +LIB_DEPENDS+= libgtkglext-x11-1.0.so:${PORTSDIR}/x11-toolkits/gtkglext RADIANT_FILE= uforadiant RADIANT_DIRS= bitmaps i18n prefabs sourceviewer PLIST_SUB+= UFORADIANT="" Modified: head/games/wesnoth/Makefile ============================================================================== --- head/games/wesnoth/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/games/wesnoth/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -70,7 +70,7 @@ PLIST_SUB+= CAMPAIGN="@comment " .if ${PORT_OPTIONS:MFRIBIDI} CMAKE_ARGS+= -DENABLE_FRIBIDI=on -LIB_DEPENDS+= fribidi:${PORTSDIR}/converters/fribidi +LIB_DEPENDS+= libfribidi.so:${PORTSDIR}/converters/fribidi .else CMAKE_ARGS+= -DENABLE_FRIBIDI=off .endif @@ -83,7 +83,7 @@ CMAKE_ARGS+= -DENABLE_LOW_MEM=off .if ${PORT_OPTIONS:MNOTIFY} CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=on -LIB_DEPENDS+= dbus-1:${PORTSDIR}/devel/dbus +LIB_DEPENDS+= libdbus-1.so:${PORTSDIR}/devel/dbus .else CMAKE_ARGS+= -DENABLE_NOTIFICATIONS=off .endif Modified: head/graphics/bugle/Makefile ============================================================================== --- head/graphics/bugle/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/graphics/bugle/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -39,13 +39,13 @@ NO_STAGE= yes .if ${PORT_OPTIONS:MAVCODEC} CONFIGURE_ARGS+=--with-lavc -LIB_DEPENDS+= avcodec.1:${PORTSDIR}/multimedia/ffmpeg +LIB_DEPENDS+= libavcodec.so.1:${PORTSDIR}/multimedia/ffmpeg .else CONFIGURE_ARGS+=--without-lavc .endif .if ${PORT_OPTIONS:MGUI} -LIB_DEPENDS+= gtkglext-x11-1.0:${PORTSDIR}/x11-toolkits/gtkglext +LIB_DEPENDS+= libgtkglext-x11-1.0.so:${PORTSDIR}/x11-toolkits/gtkglext CONFIGURE_ARGS+=--with-gtk --with-gtkglext .else CONFIGURE_ARGS+=--without-gtk --without-gtkglext Modified: head/graphics/eog/Makefile ============================================================================== --- head/graphics/eog/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/graphics/eog/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -36,7 +36,7 @@ _WITH_EXEMPI= no .if !defined(WITHOUT_EXIF) || (exists(${LOCALBASE}/lib/libexif.so.12) || \ defined(WITH_EXIF)) -LIB_DEPENDS+= exif.12:${PORTSDIR}/graphics/libexif +LIB_DEPENDS+= libexif.so:${PORTSDIR}/graphics/libexif PLIST_SUB+= EXIF="" _WITH_EXIF= yes .else @@ -45,7 +45,7 @@ PLIST_SUB+= EXIF="@comment " .if !defined(WITHOUT_EXEMPI) || (exists(${LOCALBASE}/lib/libexempi.so)) || \ defined(WITH_EXEMPI) -LIB_DEPENDS+= exempi.3:${PORTSDIR}/textproc/exempi +LIB_DEPENDS+= libexempi.so:${PORTSDIR}/textproc/exempi _WITH_EXEMPI= yes .endif Modified: head/graphics/goom/Makefile ============================================================================== --- head/graphics/goom/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/graphics/goom/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -21,7 +21,7 @@ INSTALL_TARGET= install-strip USE_LDCONFIG= yes .if exists(${X11R6}/bin/xmms) || defined(WITH_XMMS) -LIB_DEPENDS+= xmms.4:${PORTSDIR}/multimedia/xmms +LIB_DEPENDS+= libxmms.so:${PORTSDIR}/multimedia/xmms PLIST_SUB+= XMMS="" .else PLIST_SUB+= XMMS="@comment " Modified: head/graphics/libggi/Makefile ============================================================================== --- head/graphics/libggi/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/graphics/libggi/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -53,7 +53,7 @@ PLIST_SUB+= WITH_VGL="@comment " .if ${PORT_OPTIONS:MAALIB} CONFIGURE_ARGS+=--enable-aa -LIB_DEPENDS+= aa:${PORTSDIR}/graphics/aalib +LIB_DEPENDS+= libaa.so:${PORTSDIR}/graphics/aalib PLIST_SUB+= WITH_AALIB="" .else CONFIGURE_ARGS+=--disable-aa @@ -62,7 +62,7 @@ PLIST_SUB+= WITH_AALIB="@comment " .if ${PORT_OPTIONS:MSVGALIB} CONFIGURE_ARGS+=--enable-vgagl --enable-svga -LIB_DEPENDS+= vga:${PORTSDIR}/graphics/svgalib +LIB_DEPENDS+= libvga.so:${PORTSDIR}/graphics/svgalib PLIST_SUB+= WITH_SVGALIB="" .else CONFIGURE_ARGS+=--disable-vgagl --disable-svga Modified: head/graphics/opendx/Makefile ============================================================================== --- head/graphics/opendx/Makefile Wed Jul 16 07:59:58 2014 (r362047) +++ head/graphics/opendx/Makefile Wed Jul 16 08:05:11 2014 (r362048) @@ -35,7 +35,7 @@ IGNORE= HDF and NETCDF are conflicting .endif .if defined(WITH_HDF) -LIB_DEPENDS+= mfhdf:${PORTSDIR}/science/hdf +LIB_DEPENDS+= libmfhdf.so:${PORTSDIR}/science/hdf .else CONFIGURE_ARGS+= --without-hdf .endif