From owner-svn-ports-head@freebsd.org Sun Jan 13 16:08:42 2019 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 479C714A01A0; Sun, 13 Jan 2019 16:08:42 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id DE81582B0D; Sun, 13 Jan 2019 16:08:41 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id C247F1DBCE; Sun, 13 Jan 2019 16:08:41 +0000 (UTC) (envelope-from tobik@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x0DG8fD4072347; Sun, 13 Jan 2019 16:08:41 GMT (envelope-from tobik@FreeBSD.org) Received: (from tobik@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x0DG8eGt072343; Sun, 13 Jan 2019 16:08:40 GMT (envelope-from tobik@FreeBSD.org) Message-Id: <201901131608.x0DG8eGt072343@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: tobik set sender to tobik@FreeBSD.org using -f From: Tobias Kortkamp Date: Sun, 13 Jan 2019 16:08:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r490151 - in head: games/vkquake multimedia/audacious-plugins multimedia/audacious-plugins-gtk3 x11/mlterm X-SVN-Group: ports-head X-SVN-Commit-Author: tobik X-SVN-Commit-Paths: in head: games/vkquake multimedia/audacious-plugins multimedia/audacious-plugins-gtk3 x11/mlterm X-SVN-Commit-Revision: 490151 X-SVN-Commit-Repository: ports MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Rspamd-Queue-Id: DE81582B0D X-Spamd-Bar: -- Authentication-Results: mx1.freebsd.org X-Spamd-Result: default: False [-2.97 / 15.00]; local_wl_from(0.00)[FreeBSD.org]; NEURAL_HAM_MEDIUM(-1.00)[-0.999,0]; NEURAL_HAM_LONG(-1.00)[-0.999,0]; NEURAL_HAM_SHORT(-0.97)[-0.973,0]; ASN(0.00)[asn:11403, ipnet:2610:1c1:1::/48, country:US] X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 13 Jan 2019 16:08:42 -0000 Author: tobik Date: Sun Jan 13 16:08:40 2019 New Revision: 490151 URL: https://svnweb.freebsd.org/changeset/ports/490151 Log: Use USE_SDL where appropriate Modified: head/games/vkquake/Makefile head/multimedia/audacious-plugins-gtk3/Makefile head/multimedia/audacious-plugins/Makefile head/x11/mlterm/Makefile Modified: head/games/vkquake/Makefile ============================================================================== --- head/games/vkquake/Makefile Sun Jan 13 15:57:20 2019 (r490150) +++ head/games/vkquake/Makefile Sun Jan 13 16:08:40 2019 (r490151) @@ -11,13 +11,13 @@ LICENSE= GPLv2+ LICENSE_FILE= ${WRKSRC}/../LICENSE.txt BUILD_DEPENDS= ${LOCALBASE}/include/vulkan/vulkan.h:devel/vulkan-headers -LIB_DEPENDS= libSDL2.so:devel/sdl20 \ - libX11-xcb.so:x11/libX11 \ +LIB_DEPENDS= libX11-xcb.so:x11/libX11 \ libvulkan.so:graphics/vulkan-loader WRKSRC_SUBDIR= Quake USES= desktop-file-utils gmake pkgconfig +USE_SDL= sdl2 USE_GITHUB= yes GH_ACCOUNT= Novum Modified: head/multimedia/audacious-plugins-gtk3/Makefile ============================================================================== --- head/multimedia/audacious-plugins-gtk3/Makefile Sun Jan 13 15:57:20 2019 (r490150) +++ head/multimedia/audacious-plugins-gtk3/Makefile Sun Jan 13 16:08:40 2019 (r490151) @@ -112,9 +112,9 @@ SAMPLERATE_LIB_DEPENDS= libsamplerate.so:audio/libsamp SAMPLERATE_CONFIGURE_ENABLE= resample SCROBBLER_LIB_DEPENDS= libcurl.so:ftp/curl SCROBBLER_CONFIGURE_ENABLE= scrobbler2 -SDL_LIB_DEPENDS= libSDL2.so:devel/sdl20 SDL_CONFIGURE_ON= --enable-sdlout --with-libsdl=2 SDL_CONFIGURE_OFF= --disable-sdlout +SDL_USE= SDL=sdl2 SID_LIB_DEPENDS= libsidplayfp.so:audio/libsidplayfp SID_CONFIGURE_ENABLE= sid SNDFILE_LIB_DEPENDS= libsndfile.so:audio/libsndfile Modified: head/multimedia/audacious-plugins/Makefile ============================================================================== --- head/multimedia/audacious-plugins/Makefile Sun Jan 13 15:57:20 2019 (r490150) +++ head/multimedia/audacious-plugins/Makefile Sun Jan 13 16:08:40 2019 (r490151) @@ -101,9 +101,9 @@ SAMPLERATE_LIB_DEPENDS= libsamplerate.so:audio/libsamp SAMPLERATE_CONFIGURE_ENABLE= resample SCROBBLER_LIB_DEPENDS= libcurl.so:ftp/curl SCROBBLER_CONFIGURE_ENABLE= scrobbler2 -SDL_LIB_DEPENDS= libSDL2.so:devel/sdl20 SDL_CONFIGURE_ON= --enable-sdlout --with-libsdl=2 SDL_CONFIGURE_OFF= --disable-sdlout +SDL_USE= SDL=sdl2 SID_LIB_DEPENDS= libsidplayfp.so:audio/libsidplayfp SID_CONFIGURE_ENABLE= sid SNDFILE_LIB_DEPENDS= libsndfile.so:audio/libsndfile Modified: head/x11/mlterm/Makefile ============================================================================== --- head/x11/mlterm/Makefile Sun Jan 13 15:57:20 2019 (r490150) +++ head/x11/mlterm/Makefile Sun Jan 13 16:08:40 2019 (r490151) @@ -15,7 +15,7 @@ LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ libharfbuzz.so:print/harfbuzz -USES= gettext libtool perl5 pkgconfig +USES= gettext gnome libtool perl5 pkgconfig USE_XORG= sm x11 xft USE_GNOME= cairo gdkpixbuf2 gtk20 vte USE_LDCONFIG= yes @@ -65,9 +65,8 @@ CAIRO_CONFIGURE_OFF= --with-type-engines="xcore,xft" SIXEL_CONFIGURE_ENABLE= sixel -REGIS_LIB_DEPENDS= libSDL.so:devel/sdl12 \ - libSDL_ttf.so:graphics/sdl_ttf \ - libfontconfig.so:x11-fonts/fontconfig +REGIS_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig +REGIS_USE= SDL=ttf .include