pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc
Module Name: pkgsrc
Committed By: leot
Date: Sat Jun 8 19:53:26 UTC 2019
Modified Files:
pkgsrc/devel/pango: Makefile
pkgsrc/fonts/harfbuzz: Makefile buildlink3.mk
pkgsrc/misc/libreoffice: Makefile
Log Message:
*: use LIBRSVG_TYPE instead of PLATFORM_SUPPORTS_RUST
To generate a diff of this commit:
cvs rdiff -u -r1.218 -r1.219 pkgsrc/devel/pango/Makefile
cvs rdiff -u -r1.113 -r1.114 pkgsrc/fonts/harfbuzz/Makefile
cvs rdiff -u -r1.10 -r1.11 pkgsrc/fonts/harfbuzz/buildlink3.mk
cvs rdiff -u -r1.195 -r1.196 pkgsrc/misc/libreoffice/Makefile
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/devel/pango/Makefile
diff -u pkgsrc/devel/pango/Makefile:1.218 pkgsrc/devel/pango/Makefile:1.219
--- pkgsrc/devel/pango/Makefile:1.218 Sun Jun 2 03:11:30 2019
+++ pkgsrc/devel/pango/Makefile Sat Jun 8 19:53:26 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.218 2019/06/02 03:11:30 ryoon Exp $
+# $NetBSD: Makefile,v 1.219 2019/06/08 19:53:26 leot Exp $
DISTNAME= pango-1.42.4
PKGREVISION= 4
@@ -33,7 +33,7 @@ CHECK_FILES_SKIP+= ${PREFIX}/libdata/pan
CHECK_PORTABILITY_SKIP+= docs/check.docs
.include "options.mk"
-.include "../../lang/rust/platform.mk"
+.include "../../graphics/librsvg/available.mk"
BUILDLINK_API_DEPENDS.fribidi+= fribidi>=0.19.7
.include "../../converters/fribidi/buildlink3.mk"
@@ -46,7 +46,7 @@ BUILDLINK_API_DEPENDS.fontconfig+= fontc
.include "../../fonts/fontconfig/buildlink3.mk"
BUILDLINK_API_DEPENDS.harfbuzz+= harfbuzz>=0.9.9
.include "../../fonts/harfbuzz/buildlink3.mk"
-.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss])
+.if ${LIBRSVG_TYPE} == "rust"
.include "../../graphics/graphite2/buildlink3.mk"
.endif
BUILDLINK_API_DEPENDS.cairo+= cairo>=1.12.10
Index: pkgsrc/fonts/harfbuzz/Makefile
diff -u pkgsrc/fonts/harfbuzz/Makefile:1.113 pkgsrc/fonts/harfbuzz/Makefile:1.114
--- pkgsrc/fonts/harfbuzz/Makefile:1.113 Mon Jun 3 12:27:48 2019
+++ pkgsrc/fonts/harfbuzz/Makefile Sat Jun 8 19:53:26 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.113 2019/06/03 12:27:48 ryoon Exp $
+# $NetBSD: Makefile,v 1.114 2019/06/08 19:53:26 leot Exp $
DISTNAME= harfbuzz-2.4.0
PKGREVISION= 3
@@ -15,14 +15,14 @@ LICENSE= mit
.include "../../mk/bsd.prefs.mk"
PLIST_VARS+= graphite2
-.include "../../lang/rust/platform.mk"
+.include "../../graphics/librsvg/available.mk"
USE_LANGUAGES= c c++
USE_LIBTOOL= yes
USE_TOOLS+= gmake pkg-config
GNU_CONFIGURE= yes
CONFIGURE_ARGS+= --with-cairo=no
-.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss])
+.if ${LIBRSVG_TYPE} == "rust"
CONFIGURE_ARGS+= --with-graphite2=yes
PLIST.graphite2= yes
.else
@@ -68,7 +68,7 @@ PLIST.coretext= yes
#BUILDLINK_API_DEPENDS.cairo+= cairo>=1.8.0
#.include "../../graphics/cairo/buildlink3.mk"
.include "../../graphics/freetype2/buildlink3.mk"
-.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss])
+.if ${LIBRSVG_TYPE} == "rust"
# graphite2 support breaks graphics/librsvg
.include "../../graphics/graphite2/buildlink3.mk"
.endif
Index: pkgsrc/fonts/harfbuzz/buildlink3.mk
diff -u pkgsrc/fonts/harfbuzz/buildlink3.mk:1.10 pkgsrc/fonts/harfbuzz/buildlink3.mk:1.11
--- pkgsrc/fonts/harfbuzz/buildlink3.mk:1.10 Mon Jun 3 12:27:48 2019
+++ pkgsrc/fonts/harfbuzz/buildlink3.mk Sat Jun 8 19:53:26 2019
@@ -1,11 +1,11 @@
-# $NetBSD: buildlink3.mk,v 1.10 2019/06/03 12:27:48 ryoon Exp $
+# $NetBSD: buildlink3.mk,v 1.11 2019/06/08 19:53:26 leot Exp $
BUILDLINK_TREE+= harfbuzz
.if !defined(HARFBUZZ_BUILDLINK3_MK)
HARFBUZZ_BUILDLINK3_MK:=
-.include "../../lang/rust/platform.mk"
+.include "../../graphics/librsvg/available.mk"
BUILDLINK_API_DEPENDS.harfbuzz+= harfbuzz>=2.1.1
BUILDLINK_ABI_DEPENDS.harfbuzz+= harfbuzz>=2.1.1
@@ -13,7 +13,7 @@ BUILDLINK_PKGSRCDIR.harfbuzz?= ../../fo
.include "../../devel/glib2/buildlink3.mk"
.include "../../graphics/freetype2/buildlink3.mk"
-.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss])
+.if ${LIBRSVG_TYPE} == "rust"
.include "../../graphics/graphite2/buildlink3.mk"
.endif
.endif # HARFBUZZ_BUILDLINK3_MK
Index: pkgsrc/misc/libreoffice/Makefile
diff -u pkgsrc/misc/libreoffice/Makefile:1.195 pkgsrc/misc/libreoffice/Makefile:1.196
--- pkgsrc/misc/libreoffice/Makefile:1.195 Sun Jun 2 03:11:30 2019
+++ pkgsrc/misc/libreoffice/Makefile Sat Jun 8 19:53:26 2019
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile,v 1.195 2019/06/02 03:11:30 ryoon Exp $
+# $NetBSD: Makefile,v 1.196 2019/06/08 19:53:26 leot Exp $
VERREL= 6.2.4
VERRC= 2
@@ -109,8 +109,8 @@ SITES.${md}= https://dev-www.libreoffic
MORE_DISTFILES2+= 49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf
SITES.49a64f3bcf20a7909ba2751349231d6652ded9cd2840e961b5164d09de3ffa63-opens___.ttf= https://dev-www.libreoffice.org/extern/
-.include "../../lang/rust/platform.mk"
-.if !empty(PLATFORM_SUPPORTS_RUST:M[Nn][Oo]) || make(distinfo) || make(mdi)
+.include "../../graphics/librsvg/available.mk"
+.if ${LIBRSVG_TYPE} == "c" || make(distinfo) || make(mdi)
MORE_DISTFILES2+= harfbuzz-2.4.0.tar.bz2
SITES.harfbuzz-2.4.0.tar.bz2= https://www.freedesktop.org/software/harfbuzz/release/
.endif
@@ -205,7 +205,7 @@ CONFIGURE_ARGS+= --with-system-cppunit
# internal sane should be used because only header files are used.
CONFIGURE_ARGS+= --without-system-sane
# Use internal harfbuzz because fonts/harfbuzz has no graphite2 support.
-.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss])
+.if ${LIBRSVG_TYPE} == "rust"
CONFIGURE_ARGS+= --with-system-harfbuzz
CONFIGURE_ARGS+= --with-system-graphite
.else
@@ -327,7 +327,7 @@ BUILDLINK_API_DEPENDS.libetonyek+= libet
.include "../../devel/zlib/buildlink3.mk"
.include "../../fonts/fontconfig/buildlink3.mk"
# hardbuzz with graphite2 support is required.
-.if !empty(PLATFORM_SUPPORTS_RUST:M[Yy][Ee][Ss])
+.if ${LIBRSVG_TYPE} == "rust"
#BUILDLINK_API_DEPENDS.harfbuzz+= harfbuzz>=1.4.2
.include "../../fonts/harfbuzz/buildlink3.mk"
.include "../../graphics/graphite2/buildlink3.mk"
Home |
Main Index |
Thread Index |
Old Index