summaryrefslogtreecommitdiff
path: root/sysutils/xenvstat/Makefile
diff options
context:
space:
mode:
authorxtraeme <xtraeme>2004-12-28 00:01:07 +0000
committerxtraeme <xtraeme>2004-12-28 00:01:07 +0000
commit1d6aa46d511f59ddbc0b4ce20ffc998c3b8d00dc (patch)
treef6f6c697813f4c6359735bc6575ddfd2ddad36a2 /sysutils/xenvstat/Makefile
parentc877ef5945a2a72755f7b5f2b1746c4e75263b9b (diff)
downloadpkgsrc-1d6aa46d511f59ddbc0b4ce20ffc998c3b8d00dc.tar.gz
Initial import of xenvstart-20041127 from pkgsrc-wip, packaged/coded by
Rui-Xiang Guo <rxg@NetBSD.org>. xenvstat displays sensor readings from any device which supports the envsys(4) API in X11-based GUI.
Diffstat (limited to 'sysutils/xenvstat/Makefile')
-rw-r--r--sysutils/xenvstat/Makefile32
1 files changed, 32 insertions, 0 deletions
diff --git a/sysutils/xenvstat/Makefile b/sysutils/xenvstat/Makefile
new file mode 100644
index 00000000000..8c99b1221e0
--- /dev/null
+++ b/sysutils/xenvstat/Makefile
@@ -0,0 +1,32 @@
+# $NetBSD: Makefile,v 1.1.1.1 2004/12/28 00:01:07 xtraeme Exp $
+
+DISTNAME= xenvstat-20041127
+CATEGORIES= sysutils
+MASTER_SITES= # empty
+DISTFILES= # empty
+
+MAINTAINER= rxg@NetBSD.org
+HOMEPAGE= http://www.NetBSD.org/
+COMMENT= X11-based display environmental sensor readings
+
+ONLY_FOR_PLATFORM= NetBSD-*-*
+
+NO_CONFIGURE= yes
+NO_CHECKSUM= yes
+USE_X11= yes
+USE_BUILDLINK3= yes
+
+LIBS= -lXmu -lXext -lXt -lX11 -lm
+
+do-extract:
+ @${CP} -Rp ${FILESDIR} ${WRKSRC}
+
+do-build:
+ ${CC} ${CFLAGS} ${LDFLAGS} -o ${WRKSRC}/xenvstat \
+ ${WRKSRC}/xenvstat.c ${LIBS}
+
+do-install:
+ ${INSTALL_PROGRAM} ${WRKSRC}/xenvstat ${PREFIX}/bin/xenvstat
+ ${INSTALL_DATA} ${WRKSRC}/Xenvstat ${PREFIX}/lib/X11/app-defaults
+
+.include "../../mk/bsd.pkg.mk"