mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-19 03:52:17 +00:00
fb4deed873
With minor cleanups to make things simpler. With hat: portmgr Sponsored by: Absolight
35 lines
850 B
Makefile
35 lines
850 B
Makefile
# Created by: Thomas Zander <riggs@FreeBSD.org>
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= xfce4-bsdcpufreq-plugin
|
|
PORTVERSION= 0.2
|
|
PORTREVISION= 1
|
|
CATEGORIES= sysutils xfce
|
|
|
|
MAINTAINER= riggs@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_TAGNAME= be17b3a
|
|
|
|
USE_GNOME= gtk20
|
|
|
|
USES= pkgconfig xfce
|
|
USE_XFCE= panel
|
|
|
|
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>
|