summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorpancho horrillo2021-12-12 06:12:28 +0100
committerpancho horrillo2021-12-12 06:12:28 +0100
commitfe03c5e822a3735de49a72f91b4d9c18f7dda2b4 (patch)
tree2fc7c8c750e1911708a29b75403694521d8d357c
parent52fb9297c8daca6354c828af050acaa5c880a22a (diff)
downloadaur-fe03c5e822a3735de49a72f91b4d9c18f7dda2b4.tar.gz
Drop fontconfig when choosing no graphical toolkit
All hail bitmat fonts! 1337! Cherry-picked from emacs-git¹. [1]: https://aur.archlinux.org/cgit/aur.git/commit/PKGBUILD?h=emacs-git&id=e9e7598df346b12dc1c1542246e1f2b87cc0a9bb
-rw-r--r--.SRCINFO2
-rw-r--r--PKGBUILD5
2 files changed, 4 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 7bcece2499fd..aa176e126f3f 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,7 +1,7 @@
pkgbase = emacs28-git
pkgdesc = GNU Emacs. emacs-28 release branch.
pkgver = 28.0.90.151062
- pkgrel = 2
+ pkgrel = 3
url = http://www.gnu.org/software/emacs/
install = emacs28-git.install
arch = x86_64
diff --git a/PKGBUILD b/PKGBUILD
index abe9ddd1e325..d2d63e0bda10 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -45,6 +45,7 @@ AOT="YES" # Precompile all included elisp. It takes a long time.
# for your own packages.
CLI= # CLI only binary.
NOTKIT= # Use no toolkit widgets. Like B&W Twm (001d sk00l).
+ # Bitmap fonts only, 1337!
LUCID= # Use the lucid, a.k.a athena, toolkit. Like XEmacs, sorta.
#
# Read https://wiki.archlinux.org/index.php/X_resources
@@ -67,7 +68,7 @@ else
pkgname="emacs28-git"
fi
pkgver=28.0.90.151062
-pkgrel=2
+pkgrel=3
pkgdesc="GNU Emacs. emacs-28 release branch."
arch=('x86_64')
url="http://www.gnu.org/software/emacs/"
@@ -225,7 +226,7 @@ fi
if [[ $CLI == "YES" ]]; then
_conf+=( '--without-x' '--with-x-toolkit=no' '--without-xft' '--without-lcms2' '--without-rsvg' '--without-jpeg' '--without-gif' '--without-tiff' '--without-png' );
elif [[ $NOTKIT == "YES" ]]; then
- _conf+=( '--with-x-toolkit=no' '--without-toolkit-scroll-bars' '--with-xft' '--without-xaw3d' );
+ _conf+=( '--with-x-toolkit=no' '--without-toolkit-scroll-bars' '--without-xft' '--without-xaw3d' );
elif [[ $LUCID == "YES" ]]; then
_conf+=( '--with-x-toolkit=lucid' '--with-xft' '--with-xaw3d' );
else