blob: a18b2974cd025ff11c370a0def58ab6f3130aad0 (
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
|
# Created by: Sunpoet Po-Chuan Hsieh <sunpoet@FreeBSD.org>
# $FreeBSD$
PORTNAME= Glib-Object-Introspection
PORTVERSION= 0.015
PORTREVISION= 1
CATEGORIES= devel perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= sunpoet@FreeBSD.org
COMMENT= Dynamically create Perl language bindings
LICENSE= LGPL21
# t/vfunc-ref-counting.t requires gobject-introspection 1.35.5+
BUILD_DEPENDS= p5-ExtUtils-Depends>=0.300:${PORTSDIR}/devel/p5-ExtUtils-Depends \
p5-ExtUtils-PkgConfig>=1:${PORTSDIR}/devel/p5-ExtUtils-PkgConfig \
p5-Glib2>=1.270:${PORTSDIR}/devel/p5-Glib2
LIB_DEPENDS= ffi:${PORTSDIR}/devel/libffi
RUN_DEPENDS= p5-Glib2>=1.270:${PORTSDIR}/devel/p5-Glib2
TEST_DEPENDS= p5-Cairo-GObject>=0:${PORTSDIR}/devel/p5-Cairo-GObject
OPTIONS_DEFINE= TEST
PERL_CONFIGURE= yes
USE_GNOME= introspection
MAN3= Glib::Object::Introspection.3
.include <bsd.port.options.mk>
# Glib::Object::Introspection requires cairo and glib20 to build
# test libraries during build phase, therefore we add them to BUILD_DEPENDS.
.if ${PORT_OPTIONS:MTEST}
BUILD_DEPENDS+= ${LOCALBASE}/libdata/pkgconfig/cairo.pc:${PORTSDIR}/graphics/cairo \
${LOCALBASE}/libdata/pkgconfig/glib-2.0.pc:${PORTSDIR}/devel/glib20
.endif
regression-test test: build
cd ${WRKSRC}/ && ${SETENV} ${MAKE_ENV} ${MAKE} test
.include <bsd.port.mk>
|