svn commit: r363201 - in head/sysutils: . xfce4-bsdcpufreq-plugin

Thomas Zander riggs at FreeBSD.org
Mon Jul 28 17:26:25 UTC 2014


Author: riggs
Date: Mon Jul 28 17:26:23 2014
New Revision: 363201
URL: http://svnweb.freebsd.org/changeset/ports/363201
QAT: https://qat.redports.org/buildarchive/r363201/

Log:
  Import xfce4-bsdcpufreq-plugin,
  a tiny panel plugin for the XFCE desktop to monitor the CPU clock frequency
  
  Approved by:	mentors (implicit)

Added:
  head/sysutils/xfce4-bsdcpufreq-plugin/
  head/sysutils/xfce4-bsdcpufreq-plugin/Makefile   (contents, props changed)
  head/sysutils/xfce4-bsdcpufreq-plugin/distinfo   (contents, props changed)
  head/sysutils/xfce4-bsdcpufreq-plugin/pkg-descr   (contents, props changed)
Modified:
  head/sysutils/Makefile

Modified: head/sysutils/Makefile
==============================================================================
--- head/sysutils/Makefile	Mon Jul 28 16:55:19 2014	(r363200)
+++ head/sysutils/Makefile	Mon Jul 28 17:26:23 2014	(r363201)
@@ -1032,6 +1032,7 @@
     SUBDIR += xen-tools
     SUBDIR += xfburn
     SUBDIR += xfce4-battery-plugin
+    SUBDIR += xfce4-bsdcpufreq-plugin
     SUBDIR += xfce4-cpugraph-plugin
     SUBDIR += xfce4-diskperf-plugin
     SUBDIR += xfce4-fsguard-plugin

Added: head/sysutils/xfce4-bsdcpufreq-plugin/Makefile
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/xfce4-bsdcpufreq-plugin/Makefile	Mon Jul 28 17:26:23 2014	(r363201)
@@ -0,0 +1,37 @@
+# Created by: Thomas Zander <riggs at FreeBSD.org>
+# $FreeBSD$
+#
+
+PORTNAME=	xfce4-bsdcpufreq-plugin
+PORTVERSION=	0.1.1
+CATEGORIES=	sysutils xfce
+
+MAINTAINER=	riggs at FreeBSD.org
+COMMENT=	Displays the current CPU clock frequency in the panel
+
+LICENSE=	BSD2CLAUSE
+LICENSE_FILE=	${WRKSRC}/LICENSE
+
+USE_GITHUB=	yes
+GH_ACCOUNT=	riggs-
+GH_COMMIT=	66ef781
+GH_TAGNAME=	${GH_COMMIT}
+
+USE_GNOME=	gtk20
+
+USES=		pkgconfig
+
+LIB_DEPENDS+=	libxfce4util.so:${PORTSDIR}/x11/libxfce4util \
+		libxfce4panel-1.0.so:${PORTSDIR}/x11-wm/xfce4-panel \
+		libxfce4ui-1.so:${PORTSDIR}/x11/libxfce4menu
+
+PLIST_FILES=	lib/xfce4/panel/plugins/libbsdcpufreq.so \
+		share/xfce4/panel/plugins/bsdcpufreq.desktop
+
+do-install:
+	${MKDIR} ${STAGEDIR}${PREFIX}/lib/xfce4/panel/plugins
+	${MKDIR} ${STAGEDIR}${PREFIX}/share/xfce4/panel/plugins
+	${INSTALL_LIB} ${WRKSRC}/libbsdcpufreq.so ${STAGEDIR}${PREFIX}/lib/xfce4/panel/plugins
+	${INSTALL_DATA} ${WRKSRC}/bsdcpufreq.desktop ${STAGEDIR}${PREFIX}/share/xfce4/panel/plugins
+
+.include <bsd.port.mk>

Added: head/sysutils/xfce4-bsdcpufreq-plugin/distinfo
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/xfce4-bsdcpufreq-plugin/distinfo	Mon Jul 28 17:26:23 2014	(r363201)
@@ -0,0 +1,2 @@
+SHA256 (xfce4-bsdcpufreq-plugin-0.1.1.tar.gz) = 3f992c56167de1173aacc3a3812b6a1dc233bbd403bd9acc351862998d1eff3a
+SIZE (xfce4-bsdcpufreq-plugin-0.1.1.tar.gz) = 5737

Added: head/sysutils/xfce4-bsdcpufreq-plugin/pkg-descr
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sysutils/xfce4-bsdcpufreq-plugin/pkg-descr	Mon Jul 28 17:26:23 2014	(r363201)
@@ -0,0 +1,3 @@
+xfce4-bsdcpufreq-plugin uses the FreeBSD sysctl
+interface to the cpufreq(4) driver to display the
+current CPU frequency in an XFCE panel.


More information about the svn-ports-all mailing list