Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 24 Mar 2020 19:49:23 +0000 (UTC)
From:      Mateusz Piotrowski <0mp@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r529060 - head/misc/xosd
Message-ID:  <202003241949.02OJnNfG058252@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Tue Mar 24 19:49:22 2020
New Revision: 529060
URL: https://svnweb.freebsd.org/changeset/ports/529060

Log:
  Sort variables
  
  No functional changes intended.

Modified:
  head/misc/xosd/Makefile

Modified: head/misc/xosd/Makefile
==============================================================================
--- head/misc/xosd/Makefile	Tue Mar 24 18:29:22 2020	(r529059)
+++ head/misc/xosd/Makefile	Tue Mar 24 19:49:22 2020	(r529060)
@@ -13,31 +13,34 @@ COMMENT=	X11 on-screen-display program and library
 LICENSE=	GPLv2+
 LICENSE_FILE=	${WRKSRC}/COPYING
 
-USES=		gmake pkgconfig libtool xorg
+USES=		gmake libtool pkgconfig xorg
 USE_CSTD=	gnu89
-USE_XORG=	x11 xext xt sm ice xinerama
 USE_LDCONFIG=	yes
+USE_XORG=	ice sm x11 xext xinerama xt
 GNU_CONFIGURE=	yes
-CONFIGURE_ENV=	GTK_CONFIG='${GTK_CONFIG}' GLIB_CONFIG='${GLIB_CONFIG}'
-CONFIGURE_ARGS=	--disable-beep_media_player_plugin --disable-new-plugin
-PATCH_STRIP=	-p1
+CONFIGURE_ARGS=	--disable-beep_media_player_plugin \
+		--disable-new-plugin
+CONFIGURE_ENV=	GLIB_CONFIG='${GLIB_CONFIG}' \
+		GTK_CONFIG='${GTK_CONFIG}'
 INSTALL_TARGET=	install-strip
+PATCH_STRIP=	-p1
 
 PORTDOCS=	AUTHORS ChangeLog TODO
 
-OPTIONS_DEFINE=	MSEC XFT DOCS
+OPTIONS_DEFINE=	DOCS MSEC XFT
+OPTIONS_SUB=	yes
+
 MSEC_DESC=	Use milliseconds timeout (breaks compatibility!)
 XFT_DESC=	Unofficial Xft support
 
-OPTIONS_SUB=	yes
-
 MSEC_EXTRA_PATCHES=	${FILESDIR}/extra-patch-msec-timeout
-MSEC_VARS=	DELAY_UNITS=milliseconds
-MSEC_VARS_OFF=	DELAY_UNITS=seconds
+MSEC_VARS=		DELAY_UNITS=milliseconds
+MSEC_VARS_OFF=		DELAY_UNITS=seconds
 
-XFT_EXTRA_PATCHES=	${FILESDIR}/extra-patch-xft
 XFT_USES=		gnome
-XFT_USE=		GNOME=pango XORG=xft
+XFT_USE=		GNOME=pango \
+			XORG=xft
+XFT_EXTRA_PATCHES=	${FILESDIR}/extra-patch-xft
 
 post-patch:
 	@${REINPLACE_CMD} -e 's,^\(CFLAGS =\)\(.*\)$$,\1 -I..\2,' \



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202003241949.02OJnNfG058252>