aboutsummaryrefslogtreecommitdiffstats
path: root/www/chromium/Makefile
blob: f8c69e21b7b35b4aced6d16508b418399b77ed0b (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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
# New ports collection makefile for:    chromium
# Date created:             September 30 2009
# Whom:                 Florent Thoumie <flz@FreeBSD.org>
#
# $FreeBSD$
#

PORTNAME=   chromium
DISTVERSIONPREFIX=  courgette-redacted-
DISTVERSION=    15.0.874.120
CATEGORIES= www
MASTER_SITES=   http://download.goodking.org/downloads/ \
        ftp://rene-ladan.nl/pub/distfiles/ \
        http://files.etoilebsd.net/goodking/ \
        http://distfiles.cybertron.gr/

MAINTAINER= chromium@FreeBSD.org
COMMENT=    A mostly BSD-licensed web browser based on WebKit and Gtk+

LICENSE=    BSD LGPL21 MPL
LICENSE_COMB=   multi

BUILD_DEPENDS=  ${LOCALBASE}/bin/flex:${PORTSDIR}/textproc/flex \
        ${LOCALBASE}/bin/gperf:${PORTSDIR}/devel/gperf \
        bash:${PORTSDIR}/shells/bash \
        yasm:${PORTSDIR}/devel/yasm \
        flock:${PORTSDIR}/sysutils/flock \
        v4l_compat>=1.0.20110603:${PORTSDIR}/multimedia/v4l_compat

LIB_DEPENDS=    execinfo.1:${PORTSDIR}/devel/libexecinfo \
        cairo.2:${PORTSDIR}/graphics/cairo \
        dbus-1.3:${PORTSDIR}/devel/dbus \
        dbus-glib-1.2:${PORTSDIR}/devel/dbus-glib \
        asound.2:${PORTSDIR}/audio/alsa-lib \
        freetype.9:${PORTSDIR}/print/freetype2 \
        nss3.1:${PORTSDIR}/security/nss \
        gnome-keyring.0:${PORTSDIR}/security/libgnome-keyring \
        cups.2:${PORTSDIR}/print/cups-client \
        event-1.4:${PORTSDIR}/devel/libevent \
        vpx:${PORTSDIR}/multimedia/libvpx \
        tcmalloc.2:${PORTSDIR}/devel/google-perftools

RUN_DEPENDS=    ${LOCALBASE}/lib/alsa-lib/libasound_module_pcm_oss.so:${PORTSDIR}/audio/alsa-plugins \
        ${LOCALBASE}/lib/X11/fonts/Droid/fonts.dir:${PORTSDIR}/x11-fonts/droid-fonts-ttf \
        ${LOCALBASE}/lib/libgcrypt.so:${PORTSDIR}/security/libgcrypt

ONLY_FOR_ARCHS= i386 amd64
USE_XZ=     yes
USE_BISON=  build
USE_GMAKE=  yes
USE_PERL5_BUILD=    yes
USE_PYTHON_BUILD=   2.6+
USE_XORG=   scrnsaverproto x11 xproto xscrnsaver xtst
USE_GNOME=  glib20 gtk20 dconf libxslt pkgconfig
MAN1=       chrome.1

DESKTOP_ENTRIES="Chromium" "${COMMENT}" "${DATADIR}/product_logo_48.png" \
        "chrome" "Application;Network;WebBrowser;" true

ALL_TARGET= chrome

# See build/common.gypi for all the available variables.
GYP_DEFINES+=   use_cups=1 \
        use_system_vpx=1 \
        use_system_yasm=1 \
        use_system_libxml=1 \
        use_system_ffmpeg=0 \
        use_system_libevent=1 \
        use_system_tcmalloc=1 \
        linux_use_heapchecker=0 \
        disable_nacl=1 \
        enable_webrtc=0 \
        enable_openmax=1 \
        os_ver=${OSVERSION} \
        prefix_dir=${LOCALBASE} \
        python_ver=${PYTHON_VER}

OPTIONS=    CODECS  "Compile and enable patented codecs like H.264" on \
        GCONF   "Use GConf2 for preferences"            on \
        PULSE   "Enable Pulse Audio support"            off \
        CLANG   "Build Chromium with Clang"         off \
        GCC46   "Build Chromium with GCC 4.6+"          off \
        DEBUG   "Compile with debug symbols and verbose output" off

.include <bsd.port.options.mk>

.if ${OSVERSION} < 900033 || defined(WITH_GCC46)
BUILD_DEPENDS+= ${LOCALBASE}/bin/as:${PORTSDIR}/devel/binutils
CONFIGURE_ENV+= COMPILER_PATH=${LOCALBASE}/bin
MAKE_ENV+=  COMPILER_PATH=${LOCALBASE}/bin
.endif

.if ${OSVERSION} < 801000
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-base__base.gypi-stub
.else
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-base__base.gypi-freebsd
.endif

.if defined(WITH_CODECS)
GYP_DEFINES+=   ffmpeg_branding=Chrome
GYP_DEFINES+=   proprietary_codecs=1
.else
GYP_DEFINES+=   ffmpeg_branding=Chromium
GYP_DEFINES+=   proprietary_codecs=0
.endif

.if defined(WITH_GCONF)
USE_GNOME+= gconf2
.else
GYP_DEFINES+=   use_gconf=0
.endif

.if defined(WITH_PULSEAUDIO)
LIB_DEPENDS+=   pulse.0:${PORTSDIR}/audio/pulseaudio
GYP_DEFINES+=   use_pulseaudio=1
.else
GYP_DEFINES+=   use_pulseaudio=0
.endif

.if ! ${MACHINE_CPU:Msse2}
GYP_DEFINES+=   disable_sse2=1
.endif

.if defined(WITH_GCC46) && defined(WITH_CLANG)
IGNORE= conflicting options (CLANG or GCC46)
.endif

.if defined(WITH_GCC46)
USE_GCC?=   4.6+
EXTRA_PATCHES+= ${FILESDIR}/extra-patch-gcc
.endif

.if defined(WITH_CLANG)
.if ${OSVERSION} < 900033
BUILD_DEPENDS+= clang:${PORTSDIR}/lang/clang
.endif
CC=     clang
CXX=        clang++
GYP_DEFINES+=   clang=1
.endif

.if !defined(WITH_DEBUG)
BUILDTYPE=  Release
.else
MAKE_ENV+=  V=1
BUILDTYPE=  Debug
.endif

MAKE_ENV+=  BUILDTYPE=${BUILDTYPE}
MAKE_JOBS_SAFE= yes

.include <bsd.port.pre.mk>

.if ${PERL_LEVEL} >= 501400
BUILD_DEPENDS+= p5-Switch>=0:${PORTSDIR}/lang/p5-Switch
.endif

pre-everything::
    @${ECHO_MSG}
    @${ECHO_MSG} "To build Chromium, you should have around 1 GB of memory"
.if defined(WITH_DEBUG)
    @${ECHO_MSG} "and lots of free diskspace (~ 7GB)."
.else
    @${ECHO_MSG} "and a fair amount of free diskspace (~ 1.5GB)."
.endif
    @${ECHO_MSG}

post-patch:
    @${REINPLACE_CMD} -e "s|/usr/local|${LOCALBASE}|" \
        ${WRKSRC}/base/base.gypi \
        ${WRKSRC}/build/common.gypi \
        ${WRKSRC}/third_party/libvpx/libvpx.gyp \
        ${WRKSRC}/third_party/WebKit/Source/WebCore/gyp/WebCore.gyp \
        ${WRKSRC}/third_party/WebKit/Source/WebCore/plugins/PluginDatabase.cpp \
        ${WRKSRC}/crypto/crypto.gyp \
        ${WRKSRC}/v8/tools/gyp/v8.gyp \
        ${WRKSRC}/v8/build/common.gypi
    @${REINPLACE_CMD} -e "s|linux|freebsd|" \
        ${WRKSRC}/tools/gyp/pylib/gyp/generator/make.py
    @${REINPLACE_CMD} -e 's|/usr/bin/gcc|${CC}|' \
        ${WRKSRC}/third_party/WebKit/Source/WebCore/bindings/scripts/IDLParser.pm \
        ${WRKSRC}/third_party/WebKit/Source/WebCore/dom/make_names.pl
    @${REINPLACE_CMD} -e "s|'flex'|'${LOCALBASE}/bin/flex'|" \
        ${WRKSRC}/third_party/angle/src/build_angle.gyp \
        ${WRKSRC}/third_party/WebKit/Source/WebCore/WebCore.gyp/scripts/action_maketokenizer.py
    @${REINPLACE_CMD} -e 's|gperf --key-positions|${LOCALBASE}/bin/gperf --key-positions|' \
        ${WRKSRC}/third_party/WebKit/Source/WebCore/css/makeprop.pl \
        ${WRKSRC}/third_party/WebKit/Source/WebCore/css/makevalues.pl \
        ${WRKSRC}/third_party/WebKit/Source/WebCore/make-hash-tools.pl

do-configure:
    cd ${WRKSRC} && \
        GYP_DEFINES="${GYP_DEFINES}" ${PYTHON_CMD} \
            ./build/gyp_chromium chrome/chrome.gyp --depth .

do-install:
    @${MKDIR} ${DATADIR}
    ${INSTALL_MAN} ${WRKSRC}/out/${BUILDTYPE}/chrome.1 ${MANPREFIX}/man/man1
    ${INSTALL_DATA} ${WRKSRC}/out/${BUILDTYPE}/chrome.pak \
        ${WRKSRC}/out/${BUILDTYPE}/product_logo_48.png \
        ${WRKSRC}/out/${BUILDTYPE}/resources.pak ${DATADIR}
    ${INSTALL_SCRIPT} ${WRKSRC}/out/${BUILDTYPE}/chrome-wrapper \
        ${WRKSRC}/out/${BUILDTYPE}/xdg-settings ${DATADIR}
.for f in chrome libffmpegsumo.so mksnapshot protoc
    ${INSTALL_PROGRAM} ${WRKSRC}/out/${BUILDTYPE}/${f} ${DATADIR}
.endfor
    cd ${WRKSRC}/out/${BUILDTYPE} && \
        ${COPYTREE_SHARE} "locales resources" ${DATADIR}
    ${LN} -sf ${DATADIR}/chrome ${PREFIX}/bin

.include <bsd.port.post.mk>