blob: 8d78f9fd79bd4f4f9dc50fa6460530809c722069 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
# New ports collection makefile for: mico
# Version required: 2.2.3
# Date created: 11 July 1998
# Whom: Marc G. Fournier <scrappy@freebsd.org>
#
# $Id: Makefile,v 1.28 1999/01/22 21:58:56 nectar Exp $
#
DISTNAME= mico-2.2.3
CATEGORIES= devel
MASTER_SITES= http://diamant-atm.vsb.cs.uni-frankfurt.de/~mico/
MAINTAINER= scrappy@freebsd.org
WWW_SITE= http://diamant.vsb.cs.uni-frankfurt.de/~mico/
.include <bsd.port.pre.mk>
.if ${PORTOBJFORMAT} == "elf"
LIBSTDC= ${PREFIX}/lib/gcc-lib/i386-unknown-freebsdelf${OSREL}/2.8.1/libstdc++.a
.else
LIBSTDC= ${PREFIX}/lib/gcc-lib/i386-unknown-freebsd${OSREL}/2.8.1/libstdc++.a
.endif
LIB_DEPENDS= gtk10.1:${PORTSDIR}/x11-toolkits/gtk10 \
tcl80.1:${PORTSDIR}/lang/tcl80
BUILD_DEPENDS= g++28:${PORTSDIR}/lang/gcc28 \
${LIBSTDC}:${PORTSDIR}/lang/glibstdc++28
CC= gcc28
CXX= g++28
USE_QT= yes
USE_AUTOCONF= yes
USE_GMAKE= yes
WRKSRC= ${WRKDIR}/mico
CONFIGURE_ARGS= --with-qt --with-gtk --with-tcl \
--disable-optimize --disable-mini-stl
CONFIGURE_ENV= GTK_CONFIG="${X11BASE}/bin/gtk10-config"
MAN1= idl.1 imr.1 nsadmin.1
MAN5= micorc.5
MAN8= ird.8 micod.8 nsd.8
post-install:
${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m
.include <bsd.port.post.mk>
|