1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-21 20:38:45 +00:00
freebsd-ports/sysutils/torsmo/Makefile
Roman Bogorodskiy d0a913d0e0 - fix a bug when the mail count wasn't altered if mails had been deleted
from a mailbox
- detect possible error in stat(2)
- bump PORTREVISION

PR:		80709
Submitted by:	Roland Smith <rsmith@xs4all.nl>
2005-05-07 14:27:54 +00:00

51 lines
1.1 KiB
Makefile

# New ports collection makefile for: torsmo
# Date created: 2004-07-29
# Whom: Roman Bogorodskiy <bogorodskiy@inbox.ru>
#
# $FreeBSD$
#
PORTNAME= torsmo
PORTVERSION= 0.18
PORTREVISION= 5
CATEGORIES= sysutils
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= novel@FreeBSD.org
COMMENT= System monitor that renders text on desktop
GNU_CONFIGURE= yes
CONFIGURE_ENV= CPPFLAGS="-I${X11BASE}/include"
USE_X_PREFIX= yes
MAN1= torsmo.1
PLIST_FILES= bin/torsmo \
%%EXAMPLESDIR%%/torsmorc.sample
PLIST_DIRS= %%EXAMPLESDIR%%
PORTDOCS= AUTHORS ChangeLog NEWS README
OPTIONS= XFT "XFT support" on \
DOUBLE_BUFFER "Flicker-free operation support" on
.include <bsd.port.pre.mk>
.if !defined(WITHOUT_XFT)
LIB_DEPENDS+= Xft.2:${PORTSDIR}/x11-fonts/libXft
CONFIGURE_ARGS+= --enable-xft
.endif
.if defined(WITHOUT_DOUBLE_BUFFER)
CONFIGURE_ARGS+= --disable-double-buffer
.endif
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>