diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-30 20:47:55 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2004-07-30 20:47:55 +0000 |
commit | db95a8d61a9e914c3193359e3914b46aab1a6ebb (patch) | |
tree | 482548b95e39a3de4bb181c2a3793b8357446fb1 /sysutils/torsmo/Makefile | |
parent | a07e6951758927784d3331ce298ba13886a81cbc (diff) | |
download | ports-db95a8d61a9e914c3193359e3914b46aab1a6ebb.tar.gz ports-db95a8d61a9e914c3193359e3914b46aab1a6ebb.zip |
Notes
Diffstat (limited to 'sysutils/torsmo/Makefile')
-rw-r--r-- | sysutils/torsmo/Makefile | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/sysutils/torsmo/Makefile b/sysutils/torsmo/Makefile new file mode 100644 index 000000000000..060988df4a71 --- /dev/null +++ b/sysutils/torsmo/Makefile @@ -0,0 +1,44 @@ +# New ports collection makefile for: torsmo +# Date created: 2004-07-29 +# Whom: Roman Bogorodskiy <bogorodskiy@inbox.ru> +# +# $FreeBSD$ +# + +PORTNAME= torsmo +PORTVERSION= 0.17 +CATEGORIES= sysutils +MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} +MASTER_SITE_SUBDIR= ${PORTNAME} + +MAINTAINER= bogorodskiy@inbox.ru +COMMENT= System monitor that renders text on desktop + +USE_AUTOCONF_VER=259 +USE_AUTOMAKE_VER=14 +USE_X_PREFIX= yes +MAN1= torsmo.1 + +PLIST_FILES= bin/torsmo \ + %%EXAMPLESDIR%%/torsmorc.sample +PLIST_DIRS= %%EXAMPLESDIR%% +PORTDOCS= AUTHORS ChangeLog NEWS README + +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= does not build, use statvfs interface which is only present on FreeBSD 5.0 or newer +.endif + +post-extract: + @${CP} ${FILESDIR}/freebsd.c ${WRKSRC} + +post-install: +.if !defined(NOPORTDOCS) + @${MKDIR} ${DOCSDIR} + @cd ${WRKSRC} && ${INSTALL_DATA} ${PORTDOCS} ${DOCSDIR} +.endif + @${MKDIR} ${EXAMPLESDIR} + @${INSTALL_DATA} ${WRKSRC}/torsmorc.sample ${EXAMPLESDIR} + +.include <bsd.port.post.mk> |