summaryrefslogtreecommitdiffstats
path: root/devel/glib20/Makefile
blob: 72c5a3643fcb6c5ae183a7f719044375a419cb9e (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
# Created by: Vanilla I. Shu <vanilla@FreeBSD.org>
# $FreeBSD: head/devel/glib20/Makefile 326307 2013-09-04 18:06:07Z madpilot $
#   $MCom$

PORTNAME=   glib
PORTVERSION=    2.38.0
PORTREVISION=   0
CATEGORIES= devel
MASTER_SITES=   GNOME
DIST_SUBDIR=    gnome2

MAINTAINER= gnome@FreeBSD.org
COMMENT=    Some useful routines of C programming (current stable version)

LICENSE=    LGPL20

USE_XZ=     yes
PORTSCOUT=  limitw:1,even

.if !defined(REFERENCE_PORT)

LIB_DEPENDS+=   libpcre.so:${PORTSDIR}/devel/pcre \
        libffi.so:${PORTSDIR}/devel/libffi

USE_AUTOTOOLS=  libtool
USE_LDCONFIG=   yes
USES=       gettext gmake iconv pathfix perl5 pkgconfig shebangfix
USE_GNOME=  ltverhack
USE_PYTHON= yes
CONFIGURE_ARGS= --enable-static \
        --disable-gtk-doc --with-html-dir=${PREFIX}/share/doc \
        --disable-man --without-xml-catalog \
        --with-pcre=system \
        --disable-fam
CONFIGURE_ENV=  ac_cv_header_sys_inotify_h=
CPPFLAGS+=  -I${LOCALBASE}/include
LDFLAGS+=   -L${LOCALBASE}/lib

SHEBANG_FILES=  */*.pl glib/gen-iswide-table.py

OPTIONS_DEFINE= COLLATION_FIX DEBUG GDB
COLLATION_FIX_DESC= fix string collation
GDB_DESC=   Install python gdb scripts

.include <bsd.port.pre.mk>

# doesn't build yet
#.if (${OSVERSION} < 800000) \
#   || (${OSVERSION} >= 800000 && ${OSVERSION} < 802000)
#   || (${OSVERSION} >= 900000 && ${OSVERSION} < 900021)
CONFIGURE_ARGS+=--disable-dtrace
#.else
#CONFIGURE_ARGS+=--enable-dtrace
#.endif

.if empty(ICONV_LIB)
CONFIGURE_ARGS+=    --with-libiconv=native
.else
CONFIGURE_ARGS+=    --with-libiconv=gnu
.endif

.if ${ARCH} == powerpc64
EXTRA_PATCHES=  ${FILESDIR}/extra-arch-powerpc64
.endif

# Let glib use asm code for implementing atomic ops on i386 and amd64.
.if ${ARCH} == "i386"
GLIB_ARCH=  i486
.elif ${ARCH} == "amd64"
GLIB_ARCH=  x86_64
.else
GLIB_ARCH=  ${ARCH}
.endif
CONFIGURE_TARGET=${GLIB_ARCH}-portbld-freebsd${OSREL}

.if ${PORT_OPTIONS:MCOLLATION_FIX}
LIB_DEPENDS+=   libicui18n.so:${PORTSDIR}/devel/icu
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-glib_Makefile.in \
        ${FILESDIR}/extra-patch-glib_gunicollate.c
# Disable it until someone can figure why it causes net-im/pidgin crashed.
# http://www.freebsd.org/cgi/query-pr.cgi?pr=175930 see comment by ed@
#CONFIGURE_ENV+=    CFLAGS="-D__STDC_ISO_10646__"
.endif

.if ${PORT_OPTIONS:MGDB}
PLIST_SUB+= GDB=""
.else
EXTRA_PATCHES+= ${FILESDIR}/extra-glib_gdbscripts \
        ${FILESDIR}/extra-gobject_gdbscripts
PLIST_SUB+= GDB="@comment "
.endif

.if ${PORT_OPTIONS:MDEBUG}
CONFIGURE_ARGS+=    --enable-debug=yes \
            --disable-silent-rules
.endif

post-patch:
    @${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g ; \
        s|/usr/share/locale/locale|${LOCALBASE}/share/locale/locale|g' \
            ${WRKSRC}/glib/gutils.c
    @${REINPLACE_CMD} -e 's|/lib/dbus/machine-id|/db/dbus/machine-id|g' \
        ${WRKSRC}/gio/gdbusaddress.c ${WRKSRC}/gio/gdbusprivate.c \
        ${WRKSRC}/po/*.po
    @${REINPLACE_CMD} -e 's|inotify_support=yes|inotify_support=no| ; \
        s|-Werror|| ; \
        s|#define HAVE_SYS_INOTIFY_H 1||' ${WRKSRC}/configure
    @${REINPLACE_CMD} -e 's|-2.0.so.0.$$(LT_CURRENT).$$(LT_REVISION)-gdb.py|-2.0.so.0-gdb.py|g' \
        ${WRKSRC}/glib/Makefile.in \
        ${WRKSRC}/gobject/Makefile.in

post-install:
    @${MKDIR} ${STAGEDIR}/${PREFIX}/share/GConf/gsettings

.include <bsd.port.post.mk>

.endif