mirror of
https://git.FreeBSD.org/ports.git
synced 2024-11-27 00:57:50 +00:00
a0cfb58c39
Reported by: QAT
47 lines
1.2 KiB
Makefile
47 lines
1.2 KiB
Makefile
# New ports collection makefile for: vala
|
|
# Date created: 2007-07-09
|
|
# Whom: Michael Johnson <ahze@FreeBSD.org>
|
|
#
|
|
# $FreeBSD$
|
|
# $MCom: ports/lang/vala/Makefile,v 1.29 2009/11/26 21:21:05 marcus Exp $
|
|
#
|
|
|
|
PORTNAME= vala
|
|
PORTVERSION= 0.7.10
|
|
PORTREVISION= 1
|
|
CATEGORIES= lang gnome
|
|
MASTER_SITES= GNOME
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Programming language and compiler that converts Vala code into C code
|
|
|
|
OPTIONS= VAPIGEN "Enable VAPI generator" Off
|
|
USE_BZIP2= yes
|
|
USE_GNOME= glib20 gnomeprefix libxslt
|
|
GNU_CONFIGURE= yes
|
|
USE_GETTEXT= yes
|
|
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}" LDFLAGS="-L${LOCALBASE}/lib"
|
|
USE_BISON= build
|
|
USE_LDCONFIG= yes
|
|
|
|
MAN1= valac.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if defined(WITH_VAPIGEN)
|
|
CONFIGURE_ARGS+=--enable-vapigen
|
|
BUILD_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/LibXML.pm:${PORTSDIR}/textproc/p5-XML-LibXML
|
|
RUN_DEPENDS+= ${SITE_PERL}/${PERL_ARCH}/XML/LibXML.pm:${PORTSDIR}/textproc/p5-XML-LibXML
|
|
MAN1+= vala-gen-introspect.1 vapigen.1
|
|
PLIST_SUB+= VAPIGEN=""
|
|
.else
|
|
CONFIGURE_ARGS+=--disable-vapigen
|
|
PLIST_SUB+= VAPIGEN="@comment "
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|$$(libdir)/pkgconfig|$$(prefix)/libdata/pkgconfig|' \
|
|
${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.post.mk>
|