diff options
Diffstat (limited to 'community/mc')
-rw-r--r-- | community/mc/PKGBUILD | 66 | ||||
-rw-r--r-- | community/mc/changeset_8607bcc1.diff | 22 |
2 files changed, 0 insertions, 88 deletions
diff --git a/community/mc/PKGBUILD b/community/mc/PKGBUILD deleted file mode 100644 index a51e8f5f0..000000000 --- a/community/mc/PKGBUILD +++ /dev/null @@ -1,66 +0,0 @@ -# $Id: PKGBUILD 74048 2012-07-18 14:20:54Z schuay $ -# Contributor: Daniel J Griffiths <ghost1227@archlinux.us> -# Maintainer: schuay <jakob.gruber@gmail.com> - -pkgname=mc -pkgver=4.8.4 -pkgrel=1 -pkgdesc="Midnight Commander is a text based filemanager/shell that emulates Norton Commander" -arch=('i686' 'x86_64') -url="http://www.ibiblio.org/mc/" -license=('GPL') -depends=('e2fsprogs' 'glib2' 'pcre' 'gpm' 'slang') -makedepends=('libxt' 'libx11') -optdepends=('p7zip: support for 7zip archives' - 'mtools: a+ extfs' - 'cdparanoia: audio extfs' - 'gawk: hp48+ extfs' - 'cdrkit: iso9660 extfs' - 'perl: needed by several extfs scripts' - 'python-boto: s3+ extfs' - 'python2-pytz: s3+ extfs' - 'p7zip: u7z extfs' - 'unace: uace extfs' - 'unarj: uarj extfs' - 'cabextract: ucab extfs' - 'unrar: urar extfs' - 'zip: uzip extfs') -options=('!emptydirs' '!makeflags') -backup=('etc/mc/edit.indent.rc' - 'etc/mc/edit.spell.rc' - 'etc/mc/filehighlight.ini' - 'etc/mc/mcedit.menu' - 'etc/mc/mc.ext' - 'etc/mc/mc.keymap' - 'etc/mc/mc.menu' - 'etc/mc/sfs.ini') -source=("http://www.midnight-commander.org/downloads/${pkgname}-${pkgver}.tar.bz2") - -build() { - cd "${srcdir}/${pkgname}-${pkgver}" - - ./configure \ - --prefix=/usr --sysconfdir=/etc --mandir=/usr/share/man \ - --enable-background --enable-charset --enable-largefile \ - --with-edit --with-gpm-mouse --with-mmap --enable-vfs-smb \ - --with-screen=slang --with-subshell --with-vfs --with-x \ - --without-debug --without-gnome --without-included-gettext \ - --libexecdir=/usr/lib - - make -} - -package() { - cd "${srcdir}/${pkgname}-${pkgver}" - - make DESTDIR="${pkgdir}" install - - # Fix FS#15177 - sed 's|op_has_zipinfo = 0|op_has_zipinfo = 1|' \ - -i "${pkgdir}/usr/lib/mc/extfs.d/uzip" - - sed 's#/usr/bin/env python#/usr/bin/python2#' \ - -i "${pkgdir}/usr/lib/mc/extfs.d/s3+" -} - -md5sums=('a8edb8226cb25869f925ecce043faf1e') diff --git a/community/mc/changeset_8607bcc1.diff b/community/mc/changeset_8607bcc1.diff deleted file mode 100644 index 071d6159e..000000000 --- a/community/mc/changeset_8607bcc1.diff +++ /dev/null @@ -1,22 +0,0 @@ -Index: src/vfs/cpio/cpio.c
-===================================================================
---- src/vfs/cpio/cpio.c (revision 764cdf2497ac1fe79b4237e9c75d600f7d868351)
-+++ src/vfs/cpio/cpio.c (revision 8607bcc103ce2f9449b6b9736a9709cdb62a7178)
-@@ -250,5 +250,5 @@
- mc_close (fd);
- s = g_strconcat (super->name, decompress_extension (type), (char *) NULL);
-- tmp_vpath = vfs_path_from_str (s);
-+ tmp_vpath = vfs_path_from_str_flags (s, VPF_NO_CANON);
- fd = mc_open (tmp_vpath, O_RDONLY);
- vfs_path_free (tmp_vpath);
-Index: src/vfs/tar/tar.c
-===================================================================
---- src/vfs/tar/tar.c (revision 764cdf2497ac1fe79b4237e9c75d600f7d868351)
-+++ src/vfs/tar/tar.c (revision 8607bcc103ce2f9449b6b9736a9709cdb62a7178)
-@@ -317,5 +317,5 @@
- mc_close (result);
- s = g_strconcat (archive->name, decompress_extension (type), (char *) NULL);
-- tmp_vpath = vfs_path_from_str (s);
-+ tmp_vpath = vfs_path_from_str_flags (s, VPF_NO_CANON);
- result = mc_open (tmp_vpath, O_RDONLY);
- vfs_path_free (tmp_vpath);
|