summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorP.A. López-Valencia2016-04-27 10:01:37 -0500
committerP.A. López-Valencia2016-04-27 10:01:37 -0500
commitb56e970a9264b606bc6ce63ae3ed7ed4352eb275 (patch)
tree35a321fae0041d640406cff12cee91f21b1d9d30
parentdd2cb6e7e76099e058e85e628610710c50a03a02 (diff)
downloadaur-b56e970a9264b606bc6ce63ae3ed7ed4352eb275.tar.gz
Fix oversight with webkit versions. :-(
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD8
2 files changed, 6 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index f38d6f6e6347..ff7a362e1c3d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = emacs-git
pkgdesc = GNU Emacs. Version 25 development and maintenance branch.
pkgver = 25.1.50.r125751
- pkgrel = 1
+ pkgrel = 2
url = http://www.gnu.org/software/emacs/
arch = i686
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index 32e610a7242b..166921744213 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,4 +1,4 @@
-# Maintainer: Pedro A. López-Valencia <https://aur.archlinux.org/users/vorbote>
+# Maintainer Pedro A. López-Valencia <https://aur.archlinux.org/users/vorbote>
#######################################################################
# CAVEAT LECTOR
@@ -45,7 +45,7 @@ DOCS_PDF= # Generate and install pdf documentation.
pkgname=emacs-git
pkgver=25.1.50.r125751
-pkgrel=1
+pkgrel=2
pkgdesc="GNU Emacs. Version 25 development and maintenance branch."
arch=('i686' 'x86_64')
url="http://www.gnu.org/software/emacs/"
@@ -56,7 +56,9 @@ makedepends=('git')
#######################################################################
if [[ $GTK3 = "YES" ]]; then depends+=('gtk3'); else depends+=('gtk2'); fi
if [[ $CAIRO = "YES" ]]; then depends+=('cairo'); fi
-if [[ $XWIDGETS = "YES" ]]; then depends+=('webkitgtk'); fi
+if [[ $XWIDGETS = "YES" ]]; then
+ if [[ $GTK3 = "YES" ]]; then depends+=('webkitgtk'); else depends+=('webkitgtk2'); fi
+fi
if [[ $DOCS_PDF = "YES" ]]; then makedepends+=('texlive-core'); fi
#######################################################################
#######################################################################