mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-25 00:51:21 +00:00
82f108df30
Add USES=xorg and USES=gl to ports in categories starting with 'm' While here, try to sprinkle other USES (mostly gnome and sdl) as needed.
38 lines
989 B
Makefile
38 lines
989 B
Makefile
# Created by: Alexey Dokuchaev <danfe@regency.nsu.ru>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= wmcalendar
|
|
PORTVERSION= 0.5.2
|
|
PORTREVISION= 18
|
|
CATEGORIES= misc windowmaker
|
|
MASTER_SITES= SF
|
|
|
|
MAINTAINER= xride@FreeBSD.org
|
|
COMMENT= Dockable calendar with interface to iCalendar based calendars
|
|
|
|
LIB_DEPENDS= libical.so:devel/libical
|
|
|
|
WRKSRC= ${WRKDIR}/${DISTNAME}/Src
|
|
|
|
USES= gnome pkgconfig xorg
|
|
USE_XORG= xpm
|
|
USE_GNOME= gtk20
|
|
MAKE_ARGS= CC="${CC}" \
|
|
LFLAGS="`pkg-config --libs gtk+-2.0` -L${LOCALBASE}/lib" \
|
|
CFLAGS="${CFLAGS}" \
|
|
INCDIR="`pkg-config --cflags gtk+-2.0` -I${LOCALBASE}/include" \
|
|
LIBDIR="" \
|
|
LIBS="-lical -lX11 -lXext -lXpm -lm"
|
|
|
|
PLIST_FILES= bin/wmCalendar man/man1/wmCalendar.1.gz
|
|
|
|
post-patch:
|
|
${REINPLACE_CMD} -e 's#/usr/local#${LOCALBASE}#g' \
|
|
-e 's#/usr/X11R6#${LOCALBASE}#g' \
|
|
${WRKSRC}/Makefile
|
|
do-install:
|
|
${INSTALL_PROGRAM} ${WRKSRC}/wmCalendar ${STAGEDIR}${PREFIX}/bin
|
|
${INSTALL_MAN} ${WRKSRC}/wmCalendar.1 ${STAGEDIR}${MANPREFIX}/man/man1
|
|
|
|
.include <bsd.port.mk>
|