svn commit: r529060 - head/misc/xosd

Mateusz Piotrowski 0mp at FreeBSD.org
Tue Mar 24 20:05:34 UTC 2020


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,' \


More information about the svn-ports-all mailing list