summaryrefslogtreecommitdiff
path: root/community-staging/xemacs/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-07 02:29:26 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-07-07 02:29:26 -0300
commit3357db80ffa8a795fb5cdad0fc726470887706b0 (patch)
tree461a9d95f958d88aed12f371328b20d87b69323e /community-staging/xemacs/PKGBUILD
parent1921cc4951557545f38946cbed66431f42af26b4 (diff)
parentff64a82ccedcb1690d2f0140d63432aa49676591 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: community/perl-file-path-expand/PKGBUILD community/perl-file-slurp/PKGBUILD community/perl-getopt-argvfile/PKGBUILD community/perl-graphics-colornames/PKGBUILD community/perl-html-tableextract/PKGBUILD community/perl-xml-regexp/PKGBUILD community/perlio-eol/PKGBUILD community/virtualbox/PKGBUILD community/xemacs/PKGBUILD core/gawk/PKGBUILD extra/bogofilter/PKGBUILD extra/feh/PKGBUILD extra/gnome-phone-manager/PKGBUILD extra/redland/PKGBUILD extra/ruby/PKGBUILD extra/samba/PKGBUILD extra/squirrelmail/PKGBUILD extra/subversion/PKGBUILD extra/vsftpd/PKGBUILD extra/xawtv/PKGBUILD multilib-testing/lib32-mesa/PKGBUILD multilib/lib32-glib2/PKGBUILD testing/mesa/PKGBUILD
Diffstat (limited to 'community-staging/xemacs/PKGBUILD')
-rw-r--r--community-staging/xemacs/PKGBUILD65
1 files changed, 0 insertions, 65 deletions
diff --git a/community-staging/xemacs/PKGBUILD b/community-staging/xemacs/PKGBUILD
deleted file mode 100644
index 8e7d3fe69..000000000
--- a/community-staging/xemacs/PKGBUILD
+++ /dev/null
@@ -1,65 +0,0 @@
-# $Id: PKGBUILD 49690 2011-06-19 10:01:11Z ebelanger $
-# Maintainer: juergen <juergen@archlinux.org>
-# Contributor : Stéphane Gaudreault <stephane@archlinux.org>
-
-pkgname=xemacs
-pkgver=21.5.31
-pkgrel=2
-pkgdesc="An highly customizable open source text editor and application development system forked from GNU Emacs"
-arch=('i686' 'x86_64')
-url="http://www.xemacs.org/"
-license=('GPL')
-depends=('db' 'libpng' 'libtiff' 'gpm' 'desktop-file-utils' 'libxaw' 'gdbm' 'giflib')
-optdepends=('xorg-fonts-75dpi: X bitmap fonts needed for the interface'
- 'xorg-fonts-100dpi: X bitmap fonts needed for the interface')
-makedepends=('xbitmaps')
-install=xemacs.install
-source=(http://ftp.xemacs.org/pub/xemacs/beta/$pkgname-$pkgver.tar.gz
- xemacs.desktop
- xemacs-21.5.29-optimization-bug.patch)
-md5sums=('0185fe905d0b8d8d094d9b60cf262d4a'
- 'a4d3d5c0aa2c7ce7bec491f809ca3694'
- 'eb061b10ea3bbe1026df5326ae1618e3')
-
-build() {
- cd "${srcdir}/${pkgname}-${pkgver}"
-
-# Fix problem caused by improper optimization with GCC>=4.1.2 on i686
-# (and possibly other arches). See
-# http://tracker.xemacs.org/XEmacs/its/issue354
-# for the upstream bug report.
- patch -Np0 -i ../xemacs-21.5.29-optimization-bug.patch
-
- ./configure --build="${CHOST}" --prefix=/usr --with-dynamic \
- --without-postgresql --with-athena=xaw \
- --enable-database=berkdb --without-ldap \
- --enable-menubars=lucid --enable-scrollbars=lucid \
- --enable-widgets=athena --enable-dialogs=athena \
- --enable-external-widget \
- --with-jpeg --with-png --with-tiff \
- --with-ncurses --with-pop --with-xfs --disable-sound \
- --infodir=/usr/share/info \
- --with-mule \
- --mandir=/usr/share/man/man1
-
- make
-}
-
-package() {
- cd "${srcdir}/${pkgname}-${pkgver}"
- make -j1 prefix="${pkgdir}/usr" mandir="${pkgdir}/usr/share/man/man1" infodir="${pkgdir}/usr/share/info" install gzip-el
-
- rm "${pkgdir}"/usr/bin/{b2m,ctags,etags}
- rm "${pkgdir}"/usr/share/man/man1/{ctags.1,etags.1}
-
- # fix FS#7927
- install -d -m755 "${pkgdir}/usr/share/pixmaps"
- install -D -m644 "${srcdir}/${pkgname}.desktop" "${pkgdir}/usr/share/applications/${pkgname}.desktop"
- ln -sf /usr/share/xemacs-${pkgver%.*}-b${pkgver##*.}/etc/xemacs-icon.xpm "${pkgdir}/usr/share/pixmaps/xemacs-icon.xpm"
-
- # correct permissions
- chown -R root:root "${pkgdir}"
-
- rm "${pkgdir}"/usr/share/info/{info.info,texinfo.info-2,cl.info,texinfo.info-1,texinfo.info,standards.info,widget.info}
-}
-# vim: ts=2 sw=2 et ft=sh