e62990bc20
Main updates ------------ devel/mono-tools 2.6.2 -> 2.10 lang/mono 2.6.7 -> 2.10.2 lang/mono-basic 2.6.2 -> 2.10.2 www/mod_mono 2.6.3 -> 2.10 www/xsp 2.6.5 -> 2.10.2 x11-toolkits/libgdiplus 2.6.7 -> 2.10 Other updates ------------- deskutils/tomboy 1.4.2 -> 1.6.1 devel/mono-addins 0.5 -> 0.6.1 devel/monodevelop 2.4 -> 2.4.2 graphics/f-spot 0.8.0 -> 0.8.2 print/pdfmod 0.9.0 -> 0.9.1 x11-toolkits/gnome-sharp20 2.24.1 -> 2.24.2 Ports marked BROKEN ------------------- multimedia/banshee multimedia/moonlight PR: ports/155948 Submitted by: me
45 lines
1,022 B
Makefile
45 lines
1,022 B
Makefile
# New ports collection makefile for: mono-addins
|
|
# Date created: Aug 25 2008
|
|
# Whom: Florent Thoumie <flz@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= mono-addins
|
|
PORTVERSION= 0.6.1
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://ftp.novell.com/pub/mono/sources/${PORTNAME}/
|
|
|
|
MAINTAINER= mono@FreeBSD.org
|
|
COMMENT= Mono framework to create extensible applications
|
|
|
|
LIB_PC_DEPENDS= ${LOCALBASE}/libdata/pkgconfig/mono.pc:${PORTSDIR}/lang/mono
|
|
|
|
BUILD_DEPENDS+= ${LIB_PC_DEPENDS}
|
|
RUN_DEPENDS+= ${LIB_PC_DEPENDS}
|
|
|
|
USE_BZIP2= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
USE_GNOME= gnomehack pkgconfig
|
|
MAKE_JOBS_UNSAFE= yes
|
|
|
|
OPTIONS= GTK2 "Enable GTK support" on
|
|
|
|
MAN1= mautil.1
|
|
|
|
PLIST_SUB+= VER=0.6.0
|
|
|
|
.include <bsd.port.pre.mk>
|
|
.include "${.CURDIR}/../../lang/mono/bsd.mono.mk"
|
|
|
|
.if !defined(WITHOUT_GTK2) && !defined(WITHOUT_GUI) && !defined(WITHOUT_X11)
|
|
USE_GNOME+= gtksharp20
|
|
CONFIGURE_ARGS+= --enable-gui
|
|
PLIST_SUB+= OPT_GTK2=""
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-gui
|
|
PLIST_SUB+= OPT_GTK2="@comment "
|
|
.endif
|
|
|
|
.include <bsd.port.post.mk>
|