blob: 0d64975c17075edbeb175bf369dfd54e94892dc1 (
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
|
# New ports collection makefile for: libFIRM
# Date created: 22 Nov 2008
# Whom: Christoph Mallon <christoph.mallon@gmx.de>
#
# $FreeBSD$
#
PORTNAME= libfirm
PORTVERSION= 1.16.0
CATEGORIES= devel lang
MASTER_SITES= SF
MAINTAINER= christoph.mallon@gmx.de
COMMENT= A graph-based SSA intermediate representation library for compilers
GNU_CONFIGURE= yes
USE_BZIP2= yes
USE_GMAKE= yes
USE_GNOME= gnomehack pkgconfig
USE_LDCONFIG= yes
OPTIONS= DEBUG "Build a debug version of libFIRM" OFF
.include <bsd.port.pre.mk>
.ifdef WITH_DEBUG
CONFIGURE_ARGS+= --enable-debug
.else
CONFIGURE_ARGS+= --disable-debug
.endif
.include <bsd.port.post.mk>
|