mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-15 23:50:44 +00:00
e0bfbdc723
be relevant, and think I've covered everything... This now build and a 'make package' now works...with my track record on this particular port, its bound to be still broken for *someone*, no?
52 lines
1.2 KiB
Makefile
52 lines
1.2 KiB
Makefile
# 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.24 1998/11/15 07:50:11 scrappy Exp $
|
|
#
|
|
|
|
DISTNAME= mico-2.2.3
|
|
CATEGORIES= devel
|
|
MASTER_SITES= http://diamant-atm.vsb.cs.uni-frankfurt.de/~mico/
|
|
|
|
MAINTAINER= scrappy@freebsd.org
|
|
|
|
.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= gtk.1:${PORTSDIR}/x11-toolkits/gtk \
|
|
tcl80.1:${PORTSDIR}/lang/tcl80
|
|
BUILD_DEPENDS= g++28:${PORTSDIR}/lang/gcc28 \
|
|
${LIBSTDC}:${PORTSDIR}/lang/glibstdc++28 \
|
|
autoconf:${PORTSDIR}/devel/autoconf
|
|
|
|
CC= gcc28
|
|
CXX= g++28
|
|
|
|
USE_QT= yes
|
|
GNU_CONFIGURE= yes
|
|
USE_GMAKE= yes
|
|
|
|
WRKSRC= ${WRKDIR}/mico
|
|
|
|
CONFIGURE_ARGS= --with-qt --with-gtk --with-tcl \
|
|
--disable-optimize --disable-mini-stl
|
|
|
|
MAN1= idl.1 imr.1 nsadmin.1
|
|
MAN5= micorc.5
|
|
MAN8= ird.8 micod.8 nsd.8
|
|
|
|
pre-configure:
|
|
cd ${WRKSRC}; autoconf
|
|
|
|
post-install:
|
|
${SETENV} OBJFORMAT=${PORTOBJFORMAT} ${LDCONFIG} -m
|
|
|
|
.include <bsd.port.post.mk>
|