aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRasmus Thomsen <oss@cogitri.dev>2020-03-02 16:05:51 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-03-03 07:52:28 -0300
commite0c690d5e38a10e8c98c9584cf6b2e207ddba5a9 (patch)
treea15d3b76abcb70ac379bc2c57cb1b07fbd5d6a2a
parentde6b3e42f5d56b68d9d65ad71a42c4daa2e176e4 (diff)
downloadaports-e0c690d5e38a10e8c98c9584cf6b2e207ddba5a9.tar.bz2
aports-e0c690d5e38a10e8c98c9584cf6b2e207ddba5a9.tar.xz
main/*: add --buildtype=plain to meson packages which don't specify a buildtype
-rw-r--r--main/d-feet/APKBUILD3
-rw-r--r--main/libdrm/APKBUILD3
-rw-r--r--main/libfprint/APKBUILD3
-rw-r--r--main/libnice/APKBUILD21
-rw-r--r--main/libnotify/APKBUILD3
-rw-r--r--main/libva-glx/APKBUILD5
-rw-r--r--main/libva-intel-driver/APKBUILD3
-rw-r--r--main/libxkbcommon/APKBUILD3
-rw-r--r--main/p11-kit/APKBUILD5
-rw-r--r--main/pango/APKBUILD3
10 files changed, 31 insertions, 21 deletions
diff --git a/main/d-feet/APKBUILD b/main/d-feet/APKBUILD
index 3420a5ab5d..b4281ffdbc 100644
--- a/main/d-feet/APKBUILD
+++ b/main/d-feet/APKBUILD
@@ -3,7 +3,7 @@
pkgname=d-feet
pkgver=0.3.15
_v=${pkgver%.*}
-pkgrel=1
+pkgrel=2
pkgdesc="A powerful D-Bus Debugger"
options="!check" # Testsuite loops infinitely
url="https://wiki.gnome.org/action/show/Apps/DFeet"
@@ -23,6 +23,7 @@ build() {
cd "$builddir"
meson \
--prefix=/usr \
+ --buildtype=plain \
-Dtests=false \
output
ninja -C output
diff --git a/main/libdrm/APKBUILD b/main/libdrm/APKBUILD
index 59e10d3d60..11ca01a798 100644
--- a/main/libdrm/APKBUILD
+++ b/main/libdrm/APKBUILD
@@ -1,7 +1,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libdrm
pkgver=2.4.100
-pkgrel=0
+pkgrel=1
pkgdesc="Userspace interface to kernel DRM services"
url="https://dri.freedesktop.org/"
arch="all"
@@ -21,6 +21,7 @@ build() {
cd "$builddir"/builddir
meson \
-Dprefix=/usr \
+ --buildtype=plain \
-Dfreedreno=true \
-Dtegra=true \
-Detnaviv=true \
diff --git a/main/libfprint/APKBUILD b/main/libfprint/APKBUILD
index a271f653f2..efe0a90b62 100644
--- a/main/libfprint/APKBUILD
+++ b/main/libfprint/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Timo Teräs <timo.teras@iki.fi>
pkgname=libfprint
pkgver=1.0
-pkgrel=0
+pkgrel=1
pkgdesc="fingerprint reader and identification library"
url="https://fprint.freedesktop.org/"
arch="all"
@@ -24,6 +24,7 @@ build() {
cd "$builddir"
meson \
--prefix /usr \
+ --buildtype=plain \
-Dx11-examples=false \
-Ddoc=false \
output
diff --git a/main/libnice/APKBUILD b/main/libnice/APKBUILD
index 255da0a719..edf05a4a4b 100644
--- a/main/libnice/APKBUILD
+++ b/main/libnice/APKBUILD
@@ -3,7 +3,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libnice
pkgver=0.1.16
-pkgrel=0
+pkgrel=1
pkgdesc="GLib ICE implementation"
options="!check" # Testsuite fails
url="https://nice.freedesktop.org/wiki/"
@@ -25,15 +25,16 @@ source="https://nice.freedesktop.org/releases/libnice-$pkgver.tar.gz"
build() {
meson --prefix=/usr \
- --libdir=/usr/lib \
- --bindir=/usr/bin \
- -Dgtk_doc=enabled \
- -Dtests=disabled \
- -Dexamples=disabled \
- -Dintrospection=enabled \
- -Dcrypto-library=gnutls \
- -Dgstreamer=enabled \
- -Dgupnp=disabled builddir
+ --libdir=/usr/lib \
+ --bindir=/usr/bin \
+ --buildtype=plain \
+ -Dgtk_doc=enabled \
+ -Dtests=disabled \
+ -Dexamples=disabled \
+ -Dintrospection=enabled \
+ -Dcrypto-library=gnutls \
+ -Dgstreamer=enabled \
+ -Dgupnp=disabled builddir
ninja -C builddir
}
diff --git a/main/libnotify/APKBUILD b/main/libnotify/APKBUILD
index bd2d10565d..a40214e932 100644
--- a/main/libnotify/APKBUILD
+++ b/main/libnotify/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libnotify
pkgver=0.7.9
-pkgrel=0
+pkgrel=1
pkgdesc="Desktop notification library"
url="https://developer.gnome.org/notification-spec/"
arch="all"
@@ -15,6 +15,7 @@ source="https://download.gnome.org/sources/libnotify/${pkgver%.*}/libnotify-$pkg
build() {
meson \
--prefix=/usr \
+ --buildtype=plain \
-Dtests=true \
-Dintrospection=enabled \
-Dgtk_doc=false \
diff --git a/main/libva-glx/APKBUILD b/main/libva-glx/APKBUILD
index 7d169fef4a..2d4d244767 100644
--- a/main/libva-glx/APKBUILD
+++ b/main/libva-glx/APKBUILD
@@ -4,7 +4,7 @@
pkgname=libva-glx
pkgver=2.6.1
-pkgrel=0
+pkgrel=1
pkgdesc="Video Acceleration (VA) API for Linux with MESA support"
url="https://01.org/linuxmedia"
arch="all"
@@ -29,7 +29,8 @@ prepare() {
build() {
meson builddir \
- --prefix=/usr\
+ --prefix=/usr \
+ --buildtype=plain \
-Dwith_glx=yes \
-Dwith_wayland=yes
ninja -C builddir
diff --git a/main/libva-intel-driver/APKBUILD b/main/libva-intel-driver/APKBUILD
index 96bee79dfb..7e634af58e 100644
--- a/main/libva-intel-driver/APKBUILD
+++ b/main/libva-intel-driver/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=libva-intel-driver
pkgver=2.4.0
-pkgrel=0
+pkgrel=1
pkgdesc="VA-API implementation for Intel GMA chipsets and Intel HD Graphics"
url="https://freedesktop.org/wiki/Software/vaapi"
arch="x86 x86_64"
@@ -16,6 +16,7 @@ builddir="$srcdir"/intel-vaapi-driver-$pkgver.pre1
build() {
meson builddir \
--prefix=/usr \
+ --buildtype=plain \
-Dwith_wayland=yes \
-Dwith_x11=yes
ninja -C builddir
diff --git a/main/libxkbcommon/APKBUILD b/main/libxkbcommon/APKBUILD
index 35e3b580f4..db6ef2d8ec 100644
--- a/main/libxkbcommon/APKBUILD
+++ b/main/libxkbcommon/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Leo <thinkabit.ukim@gmail.com>
pkgname=libxkbcommon
pkgver=0.10.0
-pkgrel=0
+pkgrel=1
pkgdesc="a keyboard handling library"
url="https://www.xkbcommon.org/"
arch="all"
@@ -23,6 +23,7 @@ builddir="$srcdir/libxkbcommon-xkbcommon-$pkgver"
build() {
meson \
--prefix=/usr \
+ --buildtype=plain \
-Denable-wayland=true \
-Denable-docs=false \
-Denable-x11=true \
diff --git a/main/p11-kit/APKBUILD b/main/p11-kit/APKBUILD
index 2535cf7e2c..56b018fe27 100644
--- a/main/p11-kit/APKBUILD
+++ b/main/p11-kit/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Fabian Affolter <fabian@affolter-engineering.ch>
pkgname=p11-kit
pkgver=0.23.20
-pkgrel=1
+pkgrel=2
pkgdesc="Library for loading and sharing PKCS#11 modules"
url="https://p11-glue.freedesktop.org/"
arch="all"
@@ -14,7 +14,8 @@ source="https://github.com/p11-glue/p11-kit/releases/download/$pkgver/p11-kit-$p
build() {
meson \
--prefix=/usr \
- -D trust_paths=/etc/ssl/certs/ca-certificates.crt \
+ --buildtype=plain \
+ -Dtrust_paths=/etc/ssl/certs/ca-certificates.crt \
. output
ninja -C output
}
diff --git a/main/pango/APKBUILD b/main/pango/APKBUILD
index 6355166fd4..24db6b7bab 100644
--- a/main/pango/APKBUILD
+++ b/main/pango/APKBUILD
@@ -2,7 +2,7 @@
# Maintainer: Natanael Copa <ncopa@alpinelinux.org>
pkgname=pango
pkgver=1.44.7
-pkgrel=1
+pkgrel=2
pkgdesc="A library for layout and rendering of text"
options="!check" # Some tests fail
url="https://www.pango.org/"
@@ -26,6 +26,7 @@ build() {
cd "$srcdir"/$pkgname-$pkgver
meson \
--prefix=/usr \
+ --buildtype=plain \
-Dintrospection=true \
-Dgtk_doc=false \
build