openbsd-ports/lang/ucblogo/Makefile
sthen 22edabdcb4 Remove patches casting NULL when used as a sentinel to a pointer.
These are no longer needed since unistd.h r1.63 et al.  ok ajacoutot@
2012-02-21 22:19:31 +00:00

40 lines
1.1 KiB
Makefile

# $OpenBSD: Makefile,v 1.11 2012/02/21 22:19:31 sthen Exp $
COMMENT= berkeley's implementation of the logo programming language
DISTNAME= ucblogo-5.5
REVISION= 2
CATEGORIES= lang
MASTER_SITES= ${MASTER_SITE_BACKUP}
HOMEPAGE= http://www.cs.berkeley.edu/~bh/logo.html
# BSD
PERMIT_PACKAGE_CDROM= Yes
PERMIT_PACKAGE_FTP= Yes
PERMIT_DISTFILES_CDROM= Yes
PERMIT_DISTFILES_FTP= Yes
WANTLIB= ICE SM X11 c m pthread-stubs termcap xcb
NO_REGRESS= Yes
MAKE_FILE= makefile
ALL_TARGET= logo makehelp helpfiles helpfiles/HELPCONTENTS
CONFIGURE_STYLE=gnu
CONFIGURE_ARGS+=--x-includes=${X11BASE}/include \
--x-libraries=${X11BASE}/lib
pre-configure:
@perl -pi -e 's:\@logopath@:${LOCALBASE}/share/ucblogo:g;' \
${WRKSRC}/init.c
@perl -pi -e 's:\@logohelp@:${LOCALBASE}/share/ucblogo/helpfiles:g;' \
${WRKSRC}/init.c
do-install:
${INSTALL_DATA_DIR} ${PREFIX}/share/ucblogo/helpfiles
${INSTALL_DATA} ${WRKSRC}/helpfiles/* ${PREFIX}/share/ucblogo/helpfiles
${INSTALL_DATA} ${WRKSRC}/Messages ${PREFIX}/share/ucblogo/messages
${INSTALL_PROGRAM} ${WRKSRC}/logo ${PREFIX}/bin
.include <bsd.port.mk>