# New ports collection makefile for:   dzen2
# Date created:        May 26 2008
# Whom:                Morten Slot Kristensen
#
# $FreeBSD: ports/x11/dzen2/Makefile,v 1.2 2008/10/23 11:20:08 amdmi3 Exp $
#

PORTNAME=	dzen2
PORTVERSION=	0.8.5
PORTREVISION=	1
CATEGORIES=	x11
MASTER_SITES=	http://gotmor.googlepages.com/

MAINTAINER=	msk@nullpointer.dk
COMMENT=	General purpose messaging, notification and menuing program for X11

USE_XORG=	x11

PLIST_FILES=	bin/${PORTNAME}

OPTIONS=	XPM		"Enable XPM support" On \
		XINERAMA	"Enable Xinerama support" On

.include <bsd.port.pre.mk>

.if !defined(WITHOUT_XPM)
USE_XORG+=	xpm
.endif

.if !defined(WITHOUT_XINERAMA)
USE_XORG+=	xinerama
.endif

post-patch:
.if !defined(WITHOUT_XPM)
	${REINPLACE_CMD} -e 's/^LIBS =\(.*\)$$/LIBS =\1 -lXpm/g'	\
	  	-e 's/^CFLAGS =\(.*\)$$/CFLAGS =\1 -DDZEN_XPM/g'	\
		${WRKSRC}/config.mk
.endif
.if !defined(WITHOUT_XINERAMA)
	${REINPLACE_CMD} -e 's/^LIBS =\(.*\)$$/LIBS =\1 -lXinerama/g'	\
	  	-e 's/^CFLAGS =\(.*\)$$/CFLAGS =\1 -DDZEN_XINERAMA/g'	\
		${WRKSRC}/config.mk
.endif
	${REINPLACE_CMD} -e 's,/usr/X11R6,${LOCALBASE},g'       \
		${WRKSRC}/config.mk

.include <bsd.port.post.mk>
