1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-19 03:52:17 +00:00
freebsd-ports/devel/libfirm/Makefile
Armin Pirkovitsch bfa0c02c1e - Update to 1.21.0
- Switch to OptionsNG
- Update pkg-descr and WWW:
- Trim Makefile headers
- Add USES= pkgconfig

- Update MAINTAINER to my FreeBSD address

PR:           ports/175919
Submitted by: Po-Chien Lin <linpc _AT_ cs.nctu.edu.tw>
Approved by:  beat (mentor)
2013-04-30 17:46:48 +00:00

33 lines
597 B
Makefile

# Created by: Christoph Mallon <christoph.mallon@gmx.de>
# $FreeBSD$
PORTNAME= libfirm
PORTVERSION= 1.21.0
CATEGORIES= devel lang
MASTER_SITES= SF
MAINTAINER= sperber@FreeBSD.org
COMMENT= A graph-based SSA intermediate representation library for compilers
LICENSE= GPLv2 LGPL21
LICENSE_COMB= multi
USE_AUTOTOOLS= autoconf
USE_BZIP2= yes
USE_GMAKE= yes
USE_GNOME= gnomehack
USE_LDCONFIG= yes
USES= pkgconfig
OPTIONS_DEFINE= DEBUG
.include <bsd.port.options.mk>
.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+= --enable-debug
.else
CONFIGURE_ARGS+= --disable-debug
.endif
.include <bsd.port.mk>