summaryrefslogtreecommitdiff
path: root/sysutils/torsmo/Makefile
blob: 44c0dcce570ed4f897c2a9819e71d663cbb02496 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
# New ports collection makefile for:	torsmo
# Date created:		2004-07-29
# Whom:			Roman Bogorodskiy <bogorodskiy@inbox.ru>
#
# $FreeBSD$
#

PORTNAME=	torsmo
PORTVERSION=	0.18
PORTREVISION=	7
CATEGORIES=	sysutils
MASTER_SITES=	SF/${PORTNAME}/${PORTNAME}/${PORTNAME}%20${PORTVERSION}

MAINTAINER=	novel@FreeBSD.org
COMMENT=	System monitor that renders text on desktop

GNU_CONFIGURE=	yes
USE_XORG=	x11
CPPFLAGS+=	-I${LOCALBASE}/include
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>