acc2f58dc3
PR: 128279 Submitted by: Ashish Shukla <wahjava at gmail dot com> Approved by: Morten Slot Kristensen <msk at nullpointer dot dk> (maintainer)
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# New ports collection makefile for: dzen2
|
|
# Date created: May 26 2008
|
|
# Whom: Morten Slot Kristensen
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
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>
|