d77a6e5446
<chris_pressey@yahoo.ca>: host mx1.mail.yahoo.com[67.28.113.11] said: 554 delivery error: dd Sorry your message to chris_pressey@yahoo.ca cannot be delivered. This account has been disabled or discontinued [#102]. - mta183.mail.re2.yahoo.com
57 lines
1.3 KiB
Makefile
57 lines
1.3 KiB
Makefile
# New ports collection makefile for: erlgtk
|
|
# Date Created: 2 June 2003
|
|
# Whom: cpressey@catseye.mb.ca
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= erlgtk
|
|
PORTVERSION= 0.9.7
|
|
PORTREVISION= 1
|
|
CATEGORIES= x11-toolkits
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= erlgtk
|
|
DIST_SUBDIR= erlang
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= GTK+ binding for Erlang/OTP
|
|
|
|
BUILD_DEPENDS= erlc:${PORTSDIR}/lang/erlang
|
|
RUN_DEPENDS= erl:${PORTSDIR}/lang/erlang
|
|
.if defined(PACKAGE_BUILDING)
|
|
BUILD_DEPENDS+= Xvfb:${X_VFBSERVER_PORT}
|
|
.endif
|
|
|
|
BROKEN= Missing dependency
|
|
|
|
PLIST_SUB= VERSION="${PORTVERSION}"
|
|
|
|
CONFIGURE_WRKSRC=${WRKSRC}/config
|
|
GNU_CONFIGURE= yes
|
|
USE_AUTOCONF_VER= 213
|
|
USE_GMAKE= yes
|
|
|
|
.if defined(WITH_GTK2)
|
|
PKGNAMESUFFIX= -gtk2
|
|
CONFIGURE_ARGS= --without-gnome --with-gtk=2.0
|
|
USE_GNOME= gtk20 gdkpixbuf
|
|
.else
|
|
CONFIGURE_ARGS= --without-gnome --with-gtk=1.2
|
|
USE_GNOME= gtk12 gdkpixbuf
|
|
.endif
|
|
|
|
.if !defined(DISPLAY) && !defined(PACKAGE_BUILDING)
|
|
IGNORE= must be built from within the X11 environment
|
|
.endif
|
|
|
|
pre-everything::
|
|
@${ECHO} ""
|
|
@${ECHO} "The following build options are available:"
|
|
@${ECHO} ""
|
|
@${ECHO} " WITH_GTK2=yes Build erlgtk with GTK+ 2.x binding"
|
|
@${ECHO} ""
|
|
|
|
post-install:
|
|
@${LN} -sf ${DISTNAME} ${PREFIX}/lib/erlang/lib/erlgtk
|
|
|
|
.include <bsd.port.mk>
|