Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 4 Mar 2019 15:39:16 +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: r494603 - in head/x11: . find-cursor
Message-ID:  <201903041539.x24FdGjM085750@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: 0mp
Date: Mon Mar  4 15:39:16 2019
New Revision: 494603
URL: https://svnweb.freebsd.org/changeset/ports/494603

Log:
  New port: x11/find-cursor: Simple XLib program to highlight the cursor position
  
  Simple XLib program to highlight the cursor position. This is similar to
  the feature found in Windows XP (and possibly later?).
  
  Reviewed by:	krion, mat
  Approved by:	krion (mentor), mat (mentor)
  Differential Revision:	https://reviews.freebsd.org/D19440

Added:
  head/x11/find-cursor/
  head/x11/find-cursor/Makefile   (contents, props changed)
  head/x11/find-cursor/distinfo   (contents, props changed)
  head/x11/find-cursor/pkg-descr   (contents, props changed)
Modified:
  head/x11/Makefile

Modified: head/x11/Makefile
==============================================================================
--- head/x11/Makefile	Mon Mar  4 15:29:07 2019	(r494602)
+++ head/x11/Makefile	Mon Mar  4 15:39:16 2019	(r494603)
@@ -63,6 +63,7 @@
     SUBDIR += evilvte
     SUBDIR += fbdesk
     SUBDIR += fbpanel
+    SUBDIR += find-cursor
     SUBDIR += fireflies
     SUBDIR += florence
     SUBDIR += flruler

Added: head/x11/find-cursor/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/find-cursor/Makefile	Mon Mar  4 15:39:16 2019	(r494603)
@@ -0,0 +1,35 @@
+# $FreeBSD$
+
+PORTNAME=	find-cursor
+DISTVERSIONPREFIX=	v
+DISTVERSION=	1.1
+CATEGORIES=	x11
+
+MAINTAINER=	0mp@FreeBSD.org
+COMMENT=	Simple XLib program to highlight the cursor position
+
+LICENSE=	MIT
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USES=	localbase:ldflags
+USE_GITHUB=	yes
+GH_ACCOUNT=	Carpetsmoker
+USE_XORG=	x11 xdamage xext xfixes xrender
+
+PLIST_FILES=	bin/${PORTNAME}
+
+PORTDOCS=	README.markdown screenshot.gif
+
+OPTIONS_DEFINE=	DOCS
+
+post-configure:
+	${REINPLACE_CMD} -E 's/(.CC.)/\1 $${LDFLAGS}/' ${WRKSRC}/Makefile
+
+do-install:
+	${INSTALL_PROGRAM} ${WRKSRC}/${PORTNAME} ${STAGEDIR}${PREFIX}/bin
+
+post-install-DOCS-on:
+	@${MKDIR} ${STAGEDIR}${DOCSDIR}
+	cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${STAGEDIR}${DOCSDIR}
+
+.include <bsd.port.mk>

Added: head/x11/find-cursor/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/find-cursor/distinfo	Mon Mar  4 15:39:16 2019	(r494603)
@@ -0,0 +1,3 @@
+TIMESTAMP = 1551700730
+SHA256 (Carpetsmoker-find-cursor-v1.1_GH0.tar.gz) = 02bef496b99956440b40ade5a6bf77706b298d6af6e7a1260d4a71729e343f02
+SIZE (Carpetsmoker-find-cursor-v1.1_GH0.tar.gz) = 73554

Added: head/x11/find-cursor/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/x11/find-cursor/pkg-descr	Mon Mar  4 15:39:16 2019	(r494603)
@@ -0,0 +1,4 @@
+Simple XLib program to highlight the cursor position. This is similar to the
+feature found in Windows XP (and possibly later?).
+
+WWW: https://github.com/Carpetsmoker/find-cursor



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