# Contributor: Pedro A. López-Valencia # Maintainer: Stefan Husmann ####################################################################### # CAVEAT LECTOR ####################################################################### # # Don't run this on a tmpfs unless you have oodles of RAM. # When the official git repo started, the size was about # 200MB. As time passes, it is growing more and more. # Final directory size after a build is shy of 1Gb! # Furthermore, the FSF isn't precisely rich and Savannah # network costs aren't cheap. Keep your git checkout! # # Keeping this directory in a safe place preserves the # git repo and the src dir for faster compilation if # you want. You may delete the pkg dir after successfully # creating a package. # # "makepkg -i" is your friend. # ####################################################################### ####################################################################### # # Still reading? Here kid, have enough rope to hang yourself. # ####################################################################### ####################################################################### # Assign "YES" to the variable you want enabled, empty otherwise # # Where you read experimental, replace with foobar. # ============================================================= # ####################################################################### GTK2= # Leave empty to compile with gtk+ 3 support. LTO= # Enable link-time optimization. Experimental. CAIRO= # Experimental. XWIDGETS= # Use GTK+ native widgets pulled from webkitgtk. # Highly experimental. DOCS_HTML= # Generate and install html documentation. DOCS_PDF= # Generate and install pdf documentation. ####################################################################### pkgname=emacs25-git pkgver=25.2.50.125475 pkgrel=1 pkgdesc="GNU Emacs. Version 25 maintenance branch." arch=('i686' 'x86_64') url="http://www.gnu.org/software/emacs/" license=('GPL') depends=('gpm' 'm17n-lib' 'alsa-lib' 'imagemagick') makedepends=('git') ####################################################################### ####################################################################### if [[ $GTK2 = "YES" ]]; then depends+=('gtk2'); else depends+=('gtk3'); fi if [[ $CAIRO = "YES" ]]; then depends+=('cairo'); fi if [[ $XWIDGETS = "" ]]; then depends+=('gnutls'); fi if [[ $XWIDGETS = "YES" ]]; then if [[ $GTK2 = "YES" ]]; then echo ""; echo ""; echo "Xwidgets support *requires* gtk+3!!!"; echo ""; echo ""; exit 1; else depends+=('webkit2gtk'); fi fi if [[ $DOCS_PDF = "YES" ]]; then makedepends+=('texlive-core'); fi ####################################################################### ####################################################################### conflicts=('emacs') provides=('emacs') source=("emacs::git://git.savannah.gnu.org/emacs.git#branch=emacs-25") md5sums=('SKIP') pkgver() { cd emacs ##printf "%s.r%s" \ printf "%s.%s" \ "$(grep AC_INIT configure.ac | \ sed -e 's/^.\+\ \([0-9]\+\.[0-9]\+\.\?[0-9]\+\?\).\+$/\1/')" \ "$(git rev-list --count HEAD)" } # There is no need to run autogen.sh after first checkout. # Doing so breaks incremental compilation. prepare() { cd emacs [[ -x configure ]] || ./autogen.sh } build() { cd emacs # Avoid hardening-wrapper (taken from emacs-pretest, thanks to Thomas Jost). export PATH=$(echo "$PATH" | sed 's!/usr/lib/hardening-wrapper/bin!!g') local _conf=( --prefix=/usr --sysconfdir=/etc --libexecdir=/usr/lib --localstatedir=/var --mandir=/usr/share/man --with-gameuser=:games --with-sound=alsa --with-xft --with-modules) ####################################################################### ####################################################################### if [[ $GTK2 = "YES" ]]; then _conf+=('--with-x-toolkit=gtk2' '--with-gconf' '--without-gsettings'); else _conf+=('--with-x-toolkit=gtk3' '--without-gconf' '--with-gsettings'); fi if [[ $LTO = "YES" ]]; then _conf+=('--enable-link-time-optimization'); fi if [[ $CAIRO = "YES" ]]; then _conf+=('--with-cairo'); fi if [[ $XWIDGETS = "YES" ]]; then _conf+=('--with-xwidgets'); fi ####################################################################### ####################################################################### ./configure "${_conf[@]}" # Using "make" instead of "make bootstrap" enables incremental # compiling. Less time recompiling. Yay! But if you may # need to use bootstrap sometime, just add it to the command # line. # Please note that incremental compilation implies that you # are reusing your src directory! make # You may need to run this if loaddefs.el files become corrupt. #cd "$srcdir/$pkgname/lisp" #make autoloads #cd ../ # Optional documentation formats. if [[ $DOCS_HTML = "YES" ]]; then make html; fi if [[ $DOCS_PDF = "YES" ]]; then make pdf; fi } package() { cd emacs make DESTDIR="$pkgdir/" install # Install optional documentation formats if [[ $DOCS_HTML = "YES" ]]; then make DESTDIR="$pkgdir/" install-html; fi if [[ $DOCS_PDF = "YES" ]]; then make DESTDIR="$pkgdir/" install-pdf; fi # remove conflict with ctags package mv "$pkgdir"/usr/bin/{ctags,ctags.emacs} mv "$pkgdir"/usr/share/man/man1/{ctags.1.gz,ctags.emacs.1.gz} # fix user/root permissions on usr/share files find "$pkgdir"/usr/share/emacs/ | xargs chown root:root # fix permssions on /var/games mkdir -p "$pkgdir"/var/games/emacs chmod 775 "$pkgdir"/var/games chmod 775 "$pkgdir"/var/games/emacs chown -R root:games "$pkgdir"/var/games } # vim:set ft=sh ts=2 sw=2 et: