View | Details | Raw Unified | Return to bug 237138 | Differences between
and this patch

Collapse All | Expand All

(-)devel/meson/Makefile (-1 / +1 lines)
Lines 2-8 Link Here
2
# $FreeBSD$
2
# $FreeBSD$
3
3
4
PORTNAME=	meson
4
PORTNAME=	meson
5
PORTVERSION=	0.49.2
5
PORTVERSION=	0.50.0
6
CATEGORIES=	devel python
6
CATEGORIES=	devel python
7
MASTER_SITES=	https://github.com/mesonbuild/${PORTNAME}/releases/download/${PORTVERSION}/
7
MASTER_SITES=	https://github.com/mesonbuild/${PORTNAME}/releases/download/${PORTVERSION}/
8
8
(-)devel/meson/distinfo (-3 / +3 lines)
Lines 1-3 Link Here
1
TIMESTAMP = 1549792845
1
TIMESTAMP = 1554794341
2
SHA256 (meson-0.49.2.tar.gz) = ef9f14326ec1e30d3ba1a26df0f92826ede5a79255ad723af78a2691c37109fd
2
SHA256 (meson-0.50.0.tar.gz) = 2a1bc42dda58206fb922cda5e1ca95cc03ad126321d26acc47d3493ec4e7021f
3
SIZE (meson-0.49.2.tar.gz) = 1340804
3
SIZE (meson-0.50.0.tar.gz) = 1399202
(-)accessibility/at-spi2-core/files/patch-atspi_meson.build (+27 lines)
Line 0 Link Here
1
From 44a812ea51223d82f21a098a2d45fcc5c329ce7a Mon Sep 17 00:00:00 2001
2
From: Tobias Stoeckmann <tobias@stoeckmann.org>
3
Date: Tue, 12 Mar 2019 11:46:24 +0100
4
Subject: [PATCH] Fix meson.build for meson 0.50.0.
5
6
Since meson 0.50.0 it is not possible anymore to specify an
7
absolute directory for subdir. To keep current functionality,
8
use install_dir instead.
9
10
atspi/meson.build:60:0: ERROR: Subdir keyword must not be an absolute path.
11
12
Signed-off-by: Tobias Stoeckmann <tobias@stoeckmann.org>
13
---
14
 atspi/meson.build | 2 +-
15
 1 file changed, 1 insertion(+), 1 deletion(-)
16
17
--- atspi/meson.build.orig	2019-04-11 17:26:18 UTC
18
+++ atspi/meson.build
19
@@ -57,7 +57,7 @@ atspi_headers = [
20
 
21
 atspi_includedir = join_paths(get_option('prefix'), get_option('includedir'), 'at-spi-2.0', 'atspi')
22
 
23
-install_headers(atspi_headers, subdir: atspi_includedir)
24
+install_headers(atspi_headers, install_dir: atspi_includedir)
25
 
26
 atspi_enums = gnome.mkenums('atspi-enum-types',
27
                             sources: [ 'atspi-constants.h', 'atspi-types.h' ],

Return to bug 237138