e38f8ebe1a
Port Maintainer : Andre S. Barbosa <andre@ravel.ufrj.br> --- Mico is a freely available and complete CORBA-compliant implementation. It allows applications to interoperate in a distributed and heterogeneous environment, regardless of the locations of the applications, operating systems and programming language. WWW: http://www.mico.org
48 lines
888 B
Makefile
48 lines
888 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2001/06/28 19:59:03 shell Exp $
|
|
|
|
COMMENT= "free and complete CORBA-compliant implementation"
|
|
|
|
DISTNAME= mico-2.3.5
|
|
CATEGORIES= devel
|
|
NEED_VERSION= 1.417
|
|
|
|
HOMEPAGE= http://www.mico.org/
|
|
MASTER_SITES= ${HOMEPAGE}
|
|
|
|
MAINTAINER= Andre S. Barbosa <andre@ravel.ufrj.br>
|
|
|
|
PERMIT_PACKAGE_CDROM= Yes
|
|
PERMIT_PACKAGE_FTP= Yes
|
|
PERMIT_DISTFILES_CDROM= Yes
|
|
PERMIT_DISTFILES_FTP= Yes
|
|
|
|
USE_GMAKE= Yes
|
|
CONFIGURE_STYLE= gnu
|
|
|
|
FAKE_FLAGS= prefix="${WRKINST}${PREFIX}"
|
|
WRKDIST= ${WRKDIR}/mico
|
|
|
|
FLAVORS=ssl qt gtk tcl
|
|
FLAVOR?=
|
|
|
|
.if ${FLAVOR:L:Mssl}
|
|
CONFIGURE_ARGS+= --with-ssl
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mqt}
|
|
LIB_DEPENDS+= qt.2::x11/qt2
|
|
CONFIGURE_ARGS+= --with-qt
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mgtk}
|
|
LIB_DEPENDS+= gtk.1.2::x11/gtk+
|
|
CONFIGURE_ARGS+= --with-gtk
|
|
.endif
|
|
|
|
.if ${FLAVOR:L:Mtcl}
|
|
LIB_DEPENDS+= tcl.8::lang/tcl
|
|
CONFIGURE_ARGS+= --with-tcl
|
|
.endif
|
|
|
|
.include <bsd.port.mk>
|