summaryrefslogtreecommitdiff
path: root/debian
diff options
context:
space:
mode:
authorLaurent Bigonville <bigon@debian.org>2021-05-08 17:27:11 +0200
committerLaurent Bigonville <bigon@debian.org>2021-05-08 17:34:36 +0200
commit754355ab747d32261e6538584bd350cd371f01da (patch)
tree4605bf979ce1b135f706e327d14d49fa7240f693 /debian
parent52fe9152a3cf54d9da736b561f73ccd3c9614c48 (diff)
Re-enable the webkit plugin on hurd-i386
Diffstat (limited to 'debian')
-rw-r--r--debian/control2
-rw-r--r--debian/control.in2
-rwxr-xr-xdebian/rules4
3 files changed, 4 insertions, 4 deletions
diff --git a/debian/control b/debian/control
index c77794fa..00aa7ce1 100644
--- a/debian/control
+++ b/debian/control
@@ -17,7 +17,7 @@ Build-Depends: at-spi2-core <!nocheck>,
libgjs-dev (>= 1.64.0) [amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x powerpc ppc64 riscv64],
libglib2.0-dev (>= 2.64.0),
libgtk-3-dev (>= 3.24.0),
- libwebkit2gtk-4.0-dev (>= 2.28.0) [linux-any],
+ libwebkit2gtk-4.0-dev (>= 2.28.0) [!kfreebsd-any],
meson (>= 0.49.0),
python-gi-dev (>= 3.8.0),
python3-dev,
diff --git a/debian/control.in b/debian/control.in
index bd1bee01..bce0fe01 100644
--- a/debian/control.in
+++ b/debian/control.in
@@ -13,7 +13,7 @@ Build-Depends: at-spi2-core <!nocheck>,
libgjs-dev (>= 1.64.0) [amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x powerpc ppc64 riscv64],
libglib2.0-dev (>= 2.64.0),
libgtk-3-dev (>= 3.24.0),
- libwebkit2gtk-4.0-dev (>= 2.28.0) [linux-any],
+ libwebkit2gtk-4.0-dev (>= 2.28.0) [!kfreebsd-any],
meson (>= 0.49.0),
python-gi-dev (>= 3.8.0),
python3-dev,
diff --git a/debian/rules b/debian/rules
index 9a025d91..bc61126e 100755
--- a/debian/rules
+++ b/debian/rules
@@ -12,7 +12,7 @@ ifneq ($(filter libgladeui-doc,$(binaries)),)
ENABLE_DOCS = -Dgtk_doc=true
endif
endif
-ifneq ($(DEB_HOST_ARCH_OS), linux)
+ifeq (,$(filter $(DEB_HOST_ARCH_OS), linux hurd))
ENABLE_WEBKIT = -Dwebkit2gtk=disabled
endif
ifeq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x powerpc ppc64 riscv64))
@@ -27,7 +27,7 @@ override_dh_auto_configure:
override_dh_makeshlibs:
ifeq (,$(filter $(DEB_HOST_ARCH), amd64 arm64 armel armhf i386 mips64el mipsel ppc64el s390x powerpc ppc64 riscv64))
-ifeq ($(DEB_HOST_ARCH_OS), linux)
+ifeq (,$(filter $(DEB_HOST_ARCH_OS)), linux hurd)
grep -E -v 'gjs' debian/libgladeui-2-13.symbols > debian/libgladeui-2-13.symbols.$(DEB_HOST_ARCH)
else
grep -E -v 'webkit|gjs' debian/libgladeui-2-13.symbols > debian/libgladeui-2-13.symbols.$(DEB_HOST_ARCH)