diff options
author | Lars Wendler <polynomial-c@gentoo.org> | 2014-03-25 10:28:45 +0000 |
---|---|---|
committer | Lars Wendler <polynomial-c@gentoo.org> | 2014-03-25 10:28:45 +0000 |
commit | 3bc08a93c7e5d426f5e30d6caff0b06bc291b915 (patch) | |
tree | 0015024dcb9f7e8f17e2b546a142688f3b9145d0 /app-misc | |
parent | Removed old (diff) | |
download | gentoo-2-3bc08a93c7e5d426f5e30d6caff0b06bc291b915.tar.gz gentoo-2-3bc08a93c7e5d426f5e30d6caff0b06bc291b915.tar.bz2 gentoo-2-3bc08a93c7e5d426f5e30d6caff0b06bc291b915.zip |
Removed old
(Portage version: 2.2.9-r1/cvs/Linux x86_64, signed Manifest commit with key 0x981CA6FC)
Diffstat (limited to 'app-misc')
-rw-r--r-- | app-misc/mc/ChangeLog | 12 | ||||
-rw-r--r-- | app-misc/mc/files/mc-4.8.8-race_cond_create_tmp_dir.patch | 37 | ||||
-rw-r--r-- | app-misc/mc/files/mc-4.8.8-segfault-unowned-temp-dir.patch | 22 | ||||
-rw-r--r-- | app-misc/mc/files/mc-4.8.8-wrong_char_in_menu_file.patch | 11 | ||||
-rw-r--r-- | app-misc/mc/files/mc-4.8.9-ncurses-include-fix.patch | 18 | ||||
-rw-r--r-- | app-misc/mc/files/mc-4.8.9-unknown-opts.patch | 46 | ||||
-rw-r--r-- | app-misc/mc/mc-4.8.10.ebuild | 99 | ||||
-rw-r--r-- | app-misc/mc/mc-4.8.7-r1.ebuild | 97 | ||||
-rw-r--r-- | app-misc/mc/mc-4.8.7.ebuild | 92 | ||||
-rw-r--r-- | app-misc/mc/mc-4.8.8-r1.ebuild | 100 | ||||
-rw-r--r-- | app-misc/mc/mc-4.8.8-r2.ebuild | 104 | ||||
-rw-r--r-- | app-misc/mc/mc-4.8.9.ebuild | 100 |
12 files changed, 11 insertions, 727 deletions
diff --git a/app-misc/mc/ChangeLog b/app-misc/mc/ChangeLog index 8d4eb7751bb4..81ae03121aac 100644 --- a/app-misc/mc/ChangeLog +++ b/app-misc/mc/ChangeLog @@ -1,6 +1,16 @@ # ChangeLog for app-misc/mc # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/ChangeLog,v 1.307 2014/03/19 16:13:59 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/ChangeLog,v 1.308 2014/03/25 10:28:44 polynomial-c Exp $ + + 25 Mar 2014; Lars Wendler <polynomial-c@gentoo.org> -mc-4.8.7.ebuild, + -mc-4.8.7-r1.ebuild, -mc-4.8.8-r1.ebuild, -mc-4.8.8-r2.ebuild, + -mc-4.8.9.ebuild, -mc-4.8.10.ebuild, + -files/mc-4.8.8-race_cond_create_tmp_dir.patch, + -files/mc-4.8.8-segfault-unowned-temp-dir.patch, + -files/mc-4.8.8-wrong_char_in_menu_file.patch, + -files/mc-4.8.9-ncurses-include-fix.patch, + -files/mc-4.8.9-unknown-opts.patch: + Removed old. 19 Mar 2014; Agostino Sarubbo <ago@gentoo.org> mc-4.8.11.ebuild: Stable for alpha, wrt bug #500154 diff --git a/app-misc/mc/files/mc-4.8.8-race_cond_create_tmp_dir.patch b/app-misc/mc/files/mc-4.8.8-race_cond_create_tmp_dir.patch deleted file mode 100644 index a4439447926e..000000000000 --- a/app-misc/mc/files/mc-4.8.8-race_cond_create_tmp_dir.patch +++ /dev/null @@ -1,37 +0,0 @@ -Index: lib/vfs/interface.c -=================================================================== ---- lib/vfs/interface.c (revision 2640b21bb9700aa51a70f35f9e10732c82a7366f) -+++ lib/vfs/interface.c (revision 33c47b5734771e54f10b2e3cf42cf2ae943b09c1) -@@ -841,18 +841,18 @@ - canonicalize_pathname (buffer); - -- if (lstat (buffer, &st) == 0) -- { -- /* Sanity check for existing directory */ -- if (!S_ISDIR (st.st_mode)) -- error = _("%s is not a directory\n"); -- else if (st.st_uid != getuid ()) -- error = _("Directory %s is not owned by you\n"); -- else if (((st.st_mode & 0777) != 0700) && (chmod (buffer, 0700) != 0)) -- error = _("Cannot set correct permissions for directory %s\n"); -- } -- else -- { -- /* Need to create directory */ -- if (mkdir (buffer, S_IRWXU) != 0) -+ /* Try to create directory */ -+ if (mkdir (buffer, S_IRWXU) != 0) -+ { -+ if (errno == EEXIST && lstat (buffer, &st) == 0) -+ { -+ /* Sanity check for existing directory */ -+ if (!S_ISDIR (st.st_mode)) -+ error = _("%s is not a directory\n"); -+ else if (st.st_uid != getuid ()) -+ error = _("Directory %s is not owned by you\n"); -+ else if (((st.st_mode & 0777) != 0700) && (chmod (buffer, 0700) != 0)) -+ error = _("Cannot set correct permissions for directory %s\n"); -+ } -+ else - { - fprintf (stderr, diff --git a/app-misc/mc/files/mc-4.8.8-segfault-unowned-temp-dir.patch b/app-misc/mc/files/mc-4.8.8-segfault-unowned-temp-dir.patch deleted file mode 100644 index 59c6661d9e02..000000000000 --- a/app-misc/mc/files/mc-4.8.8-segfault-unowned-temp-dir.patch +++ /dev/null @@ -1,22 +0,0 @@ -fix for mc/mcedit segfault when mc's tempdir doesn't belong to the correct user - -https://bugs.gentoo.org/show_bug.cgi?id=473244 -https://www.midnight-commander.org/ticket/3021 ---- src/main.c -+++ src/main.c -@@ -154,7 +154,4 @@ - - mc_global.share_data_dir = g_strdup (DATADIR); -- -- /* Set up temporary directory */ -- mc_tmpdir (); - } - -@@ -299,4 +296,7 @@ - vfs_setup_work_dir (); - -+ /* Set up temporary directory after VFS initialization */ -+ mc_tmpdir (); -+ - /* do this after vfs initialization due to mc_setctl() call in mc_setup_by_args() */ - if (!mc_setup_by_args (argc, argv, &error)) diff --git a/app-misc/mc/files/mc-4.8.8-wrong_char_in_menu_file.patch b/app-misc/mc/files/mc-4.8.8-wrong_char_in_menu_file.patch deleted file mode 100644 index 7eaac2bd35d9..000000000000 --- a/app-misc/mc/files/mc-4.8.8-wrong_char_in_menu_file.patch +++ /dev/null @@ -1,11 +0,0 @@ -Index: misc/mc.menu -=================================================================== ---- misc/mc.menu (revision be2883dc86d01fa54003ec75b0a1fc9ed93c9358) -+++ misc/mc.menu (revision a467bb4b6e2bec83dae4bbdd98ee529ffc45e4b1) -@@ -66,5 +66,5 @@ - = f \.c$ & t r - + f \.c$ & t r & ! t t --с Compile and link current .c file -+c Compile and link current .c file - make `basename %f .c` 2>/dev/null || cc -O -o `basename %f .c` %f - diff --git a/app-misc/mc/files/mc-4.8.9-ncurses-include-fix.patch b/app-misc/mc/files/mc-4.8.9-ncurses-include-fix.patch deleted file mode 100644 index 6193374359f7..000000000000 --- a/app-misc/mc/files/mc-4.8.9-ncurses-include-fix.patch +++ /dev/null @@ -1,18 +0,0 @@ -ncurses detection fix - -https://bugs.gentoo.org/show_bug.cgi?id=476932 - ---- mc-4.8.9.orig/lib/tty/tty-ncurses.h -+++ mc-4.8.9/lib/tty/tty-ncurses.h -@@ -5,8 +5,10 @@ - #ifdef USE_NCURSES - #ifdef HAVE_NCURSES_CURSES_H - #include <ncurses/curses.h> --#elif HAVE_NCURSES_NCURSES_H || HAVE_NCURSESW_CURSES_H -+#elif HAVE_NCURSES_NCURSES_H - #include <ncurses/ncurses.h> -+#elif HAVE_NCURSESW_CURSES_H -+#include <ncursesw/ncurses.h> - #elif HAVE_NCURSES_HCURSES_H || HAVE_NCURSES_H - #include <ncurses.h> - #else diff --git a/app-misc/mc/files/mc-4.8.9-unknown-opts.patch b/app-misc/mc/files/mc-4.8.9-unknown-opts.patch deleted file mode 100644 index 95f626925815..000000000000 --- a/app-misc/mc/files/mc-4.8.9-unknown-opts.patch +++ /dev/null @@ -1,46 +0,0 @@ -From f71ea50702cd9d17d1a8a913ee87a5d9ae2d5bc9 Mon Sep 17 00:00:00 2001 -From: Sergei Trofimovich <slyfox@gentoo.org> -Date: Wed, 3 Jul 2013 10:21:36 +0300 -Subject: [PATCH] configure.ac: warn about unknown '--with-' / '--enable-' - options - -As we use 'AC_CONFIG_SUBDIRS' macro for samba sources -option checking is disabled for us. - -Before the patch: - - $ ./configure --with-i-have-misspelled-editor-for-edit - ... - # no warnings - -The patch enables warnings back only for top-level ./configure: - - $ ./configure --with-i-have-misspelled-editor-for-edit - ... - configure: WARNING: unrecognized options: --with-i-have-misspelled-editor-for-edit - -Signed-off-by: Sergei Trofimovich <slyfox@gentoo.org> ---- - configure.ac | 9 +++++++++ - 1 file changed, 9 insertions(+) - -diff --git a/configure.ac b/configure.ac -index c12c2e7..5581a14 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -652,3 +652,12 @@ Configuration: - Support for charset: ${charset_msg} - Search type: ${SEARCH_TYPE} - ]) -+ -+dnl option checking is disable by default due to AC_CONFIG_SUBDIRS -+dnl we enable it back for top-level ./configure -+if test -n "$ac_unrecognized_opts"; then -+ case $enable_option_checking in -+ fatal) AC_MSG_ERROR([unrecognized options: $ac_unrecognized_opts]) ;; -+ *) AC_MSG_WARN( [unrecognized options: $ac_unrecognized_opts]) ;; -+ esac -+fi --- -1.8.2.1 - diff --git a/app-misc/mc/mc-4.8.10.ebuild b/app-misc/mc/mc-4.8.10.ebuild deleted file mode 100644 index 12a042184ad5..000000000000 --- a/app-misc/mc/mc-4.8.10.ebuild +++ /dev/null @@ -1,99 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.8.10.ebuild,v 1.1 2013/08/03 07:54:15 slyfox Exp $ - -EAPI=5 - -inherit eutils flag-o-matic - -MY_P=${P/_/-} - -DESCRIPTION="GNU Midnight Commander is a text based file manager" -HOMEPAGE="http://www.midnight-commander.org" -SRC_URI="http://www.midnight-commander.org/downloads/${MY_P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="+edit gpm mclib nls samba sftp +slang spell test X +xdg" - -REQUIRED_USE="spell? ( edit )" - -RDEPEND=">=dev-libs/glib-2.8:2 - gpm? ( sys-libs/gpm ) - kernel_linux? ( sys-fs/e2fsprogs ) - samba? ( net-fs/samba ) - sftp? ( net-libs/libssh2 ) - slang? ( >=sys-libs/slang-2 ) - !slang? ( sys-libs/ncurses ) - spell? ( app-text/aspell ) - X? ( x11-libs/libX11 - x11-libs/libICE - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libSM )" -DEPEND="${RDEPEND} - app-arch/xz-utils - virtual/pkgconfig - nls? ( sys-devel/gettext ) - test? ( dev-libs/check ) - " - -[[ -n ${LIVE_EBUILD} ]] && DEPEND="${DEPEND} dev-vcs/cvs" # needed only for SCM source tree (autopoint uses cvs) - -src_prepare() { - epatch "${FILESDIR}/${PN}-4.8.9-unknown-opts.patch" - - [[ -n ${LIVE_EBUILD} ]] && ./autogen.sh -} - -S=${WORKDIR}/${MY_P} - -src_configure() { - local myscreen=ncurses - use slang && myscreen=slang - [[ ${CHOST} == *-solaris* ]] && append-ldflags "-lnsl -lsocket" - - local homedir=".mc" - use xdg && homedir="XDG" - - econf \ - --disable-silent-rules \ - --disable-dependency-tracking \ - $(use_enable nls) \ - --enable-vfs \ - $(use_enable kernel_linux vfs-undelfs) \ - --enable-charset \ - $(use_with X x) \ - $(use_enable samba vfs-smb) \ - $(use_enable sftp vfs-sftp) \ - $(use_enable spell aspell) \ - $(use_with gpm gpm-mouse) \ - --with-screen=${myscreen} \ - $(use_with edit internal-edit) \ - $(use_enable mclib) \ - $(use_enable test tests) \ - --with-homedir=${homedir} -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS README NEWS - - # fix bug #334383 - if use kernel_linux && [[ ${EUID} == 0 ]] ; then - fowners root:tty /usr/libexec/mc/cons.saver - fperms g+s /usr/libexec/mc/cons.saver - fi - - if ! use xdg ; then - sed 's@MC_XDG_OPEN="xdg-open"@MC_XDG_OPEN="/bin/false"@' \ - -i "${ED}"/usr/libexec/mc/ext.d/*.sh || die - fi -} - -pkg_postinst() { - elog "To enable exiting to latest working directory," - elog "put this into your ~/.bashrc:" - elog ". ${EPREFIX}/usr/libexec/mc/mc.sh" -} diff --git a/app-misc/mc/mc-4.8.7-r1.ebuild b/app-misc/mc/mc-4.8.7-r1.ebuild deleted file mode 100644 index 902b63f36f2d..000000000000 --- a/app-misc/mc/mc-4.8.7-r1.ebuild +++ /dev/null @@ -1,97 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.8.7-r1.ebuild,v 1.1 2013/01/11 11:38:42 polynomial-c Exp $ - -EAPI=4 - -inherit eutils flag-o-matic - -MY_P=${P/_/-} - -DESCRIPTION="GNU Midnight Commander is a text based file manager" -HOMEPAGE="http://www.midnight-commander.org" -SRC_URI="http://www.midnight-commander.org/downloads/${MY_P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="+edit gpm mclib nls samba sftp +slang spell test X +xdg" - -REQUIRED_USE="spell? ( edit )" - -RDEPEND=">=dev-libs/glib-2.8:2 - gpm? ( sys-libs/gpm ) - kernel_linux? ( sys-fs/e2fsprogs ) - samba? ( net-fs/samba ) - sftp? ( net-libs/libssh2 ) - slang? ( >=sys-libs/slang-2 ) - !slang? ( sys-libs/ncurses ) - spell? ( app-text/aspell ) - X? ( x11-libs/libX11 - x11-libs/libICE - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libSM )" -DEPEND="${RDEPEND} - app-arch/xz-utils - virtual/pkgconfig - nls? ( sys-devel/gettext ) - test? ( dev-libs/check ) - " - -[[ -n ${LIVE_EBUILD} ]] && DEPEND="${DEPEND} dev-vcs/cvs" # needed only for SCM source tree (autopoint uses cvs) - -src_prepare() { - [[ -n ${LIVE_EBUILD} ]] && ./autogen.sh -} - -S=${WORKDIR}/${MY_P} - -src_configure() { - local myscreen=ncurses - use slang && myscreen=slang - [[ ${CHOST} == *-solaris* ]] && append-ldflags "-lnsl -lsocket" - - local homedir=".mc" - use xdg && homedir="XDG" - - econf \ - --disable-silent-rules \ - --disable-dependency-tracking \ - $(use_enable nls) \ - --enable-vfs \ - $(use_enable kernel_linux vfs-undelfs) \ - --enable-charset \ - $(use_with X x) \ - $(use_enable samba vfs-smb) \ - $(use_enable sftp vfs-sftp) \ - $(use_enable spell aspell) \ - $(use_with gpm gpm-mouse) \ - --with-screen=${myscreen} \ - $(use_with edit) \ - $(use_enable mclib) \ - $(use_enable test tests) \ - --with-homedir=${homedir} -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS README NEWS - - # fix bug #334383 - if use kernel_linux && [[ ${EUID} == 0 ]] ; then - fowners root:tty /usr/libexec/mc/cons.saver - fperms g+s /usr/libexec/mc/cons.saver - fi - - if ! use xdg ; then - sed 's@MC_XDG_OPEN="xdg-open"@MC_XDG_OPEN="/bin/false"@' \ - -i "${ED}"/usr/libexec/mc/ext.d/*.sh || die - fi -} - -pkg_postinst() { - elog "To enable exiting to latest working directory," - elog "put this into your ~/.bashrc:" - elog ". ${EPREFIX}/usr/libexec/mc/mc.sh" -} diff --git a/app-misc/mc/mc-4.8.7.ebuild b/app-misc/mc/mc-4.8.7.ebuild deleted file mode 100644 index 86857a2c7253..000000000000 --- a/app-misc/mc/mc-4.8.7.ebuild +++ /dev/null @@ -1,92 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.8.7.ebuild,v 1.11 2013/01/13 19:34:37 armin76 Exp $ - -EAPI=4 - -inherit eutils flag-o-matic - -MY_P=${P/_/-} - -DESCRIPTION="GNU Midnight Commander is a text based file manager" -HOMEPAGE="http://www.midnight-commander.org" -SRC_URI="http://www.midnight-commander.org/downloads/${MY_P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="+edit gpm mclib nls samba sftp +slang spell test X +xdg" - -REQUIRED_USE="spell? ( edit )" - -RDEPEND=">=dev-libs/glib-2.8:2 - gpm? ( sys-libs/gpm ) - kernel_linux? ( sys-fs/e2fsprogs ) - samba? ( net-fs/samba ) - sftp? ( net-libs/libssh2 ) - slang? ( >=sys-libs/slang-2 ) - !slang? ( sys-libs/ncurses ) - spell? ( app-text/aspell ) - X? ( x11-libs/libX11 - x11-libs/libICE - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libSM )" -DEPEND="${RDEPEND} - app-arch/xz-utils - virtual/pkgconfig - nls? ( sys-devel/gettext ) - test? ( dev-libs/check ) - " - -[[ -n ${LIVE_EBUILD} ]] && DEPEND="${DEPEND} dev-vcs/cvs" # needed only for SCM source tree (autopoint uses cvs) - -src_prepare() { - [[ -n ${LIVE_EBUILD} ]] && ./autogen.sh -} - -S=${WORKDIR}/${MY_P} - -src_configure() { - local myscreen=ncurses - use slang && myscreen=slang - [[ ${CHOST} == *-solaris* ]] && append-ldflags "-lnsl -lsocket" - - local homedir=".mc" - use xdg && homedir="XDG" - - econf \ - --disable-silent-rules \ - --disable-dependency-tracking \ - $(use_enable nls) \ - --enable-vfs \ - $(use_enable kernel_linux vfs-undelfs) \ - --enable-charset \ - $(use_with X x) \ - $(use_enable samba vfs-smb) \ - $(use_enable sftp vfs-sftp) \ - $(use_enable spell aspell) \ - $(use_with gpm gpm-mouse) \ - --with-screen=${myscreen} \ - $(use_with edit) \ - $(use_enable mclib) \ - $(use_enable test tests) \ - --with-homedir=${homedir} -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS README NEWS - - # fix bug #334383 - if use kernel_linux && [[ ${EUID} == 0 ]] ; then - fowners root:tty /usr/libexec/mc/cons.saver - fperms g+s /usr/libexec/mc/cons.saver - fi -} - -pkg_postinst() { - elog "To enable exiting to latest working directory," - elog "put this into your ~/.bashrc:" - elog ". ${EPREFIX}/usr/libexec/mc/mc.sh" -} diff --git a/app-misc/mc/mc-4.8.8-r1.ebuild b/app-misc/mc/mc-4.8.8-r1.ebuild deleted file mode 100644 index 48cec639c99a..000000000000 --- a/app-misc/mc/mc-4.8.8-r1.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.8.8-r1.ebuild,v 1.1 2013/06/19 13:35:32 wired Exp $ - -EAPI=4 - -inherit eutils flag-o-matic - -MY_P=${P/_/-} - -DESCRIPTION="GNU Midnight Commander is a text based file manager" -HOMEPAGE="http://www.midnight-commander.org" -SRC_URI="http://www.midnight-commander.org/downloads/${MY_P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="+edit gpm mclib nls samba sftp +slang spell test X +xdg" - -REQUIRED_USE="spell? ( edit )" - -RDEPEND=">=dev-libs/glib-2.8:2 - gpm? ( sys-libs/gpm ) - kernel_linux? ( sys-fs/e2fsprogs ) - samba? ( net-fs/samba ) - sftp? ( net-libs/libssh2 ) - slang? ( >=sys-libs/slang-2 ) - !slang? ( sys-libs/ncurses ) - spell? ( app-text/aspell ) - X? ( x11-libs/libX11 - x11-libs/libICE - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libSM )" -DEPEND="${RDEPEND} - app-arch/xz-utils - virtual/pkgconfig - nls? ( sys-devel/gettext ) - test? ( dev-libs/check ) - " - -[[ -n ${LIVE_EBUILD} ]] && DEPEND="${DEPEND} dev-vcs/cvs" # needed only for SCM source tree (autopoint uses cvs) - -src_prepare() { - [[ -n ${LIVE_EBUILD} ]] && ./autogen.sh - - # bug #473244 - epatch "${FILESDIR}/${P}-segfault-unowned-temp-dir.patch" -} - -S=${WORKDIR}/${MY_P} - -src_configure() { - local myscreen=ncurses - use slang && myscreen=slang - [[ ${CHOST} == *-solaris* ]] && append-ldflags "-lnsl -lsocket" - - local homedir=".mc" - use xdg && homedir="XDG" - - econf \ - --disable-silent-rules \ - --disable-dependency-tracking \ - $(use_enable nls) \ - --enable-vfs \ - $(use_enable kernel_linux vfs-undelfs) \ - --enable-charset \ - $(use_with X x) \ - $(use_enable samba vfs-smb) \ - $(use_enable sftp vfs-sftp) \ - $(use_enable spell aspell) \ - $(use_with gpm gpm-mouse) \ - --with-screen=${myscreen} \ - $(use_with edit) \ - $(use_enable mclib) \ - $(use_enable test tests) \ - --with-homedir=${homedir} -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS README NEWS - - # fix bug #334383 - if use kernel_linux && [[ ${EUID} == 0 ]] ; then - fowners root:tty /usr/libexec/mc/cons.saver - fperms g+s /usr/libexec/mc/cons.saver - fi - - if ! use xdg ; then - sed 's@MC_XDG_OPEN="xdg-open"@MC_XDG_OPEN="/bin/false"@' \ - -i "${ED}"/usr/libexec/mc/ext.d/*.sh || die - fi -} - -pkg_postinst() { - elog "To enable exiting to latest working directory," - elog "put this into your ~/.bashrc:" - elog ". ${EPREFIX}/usr/libexec/mc/mc.sh" -} diff --git a/app-misc/mc/mc-4.8.8-r2.ebuild b/app-misc/mc/mc-4.8.8-r2.ebuild deleted file mode 100644 index 40a8b85babfb..000000000000 --- a/app-misc/mc/mc-4.8.8-r2.ebuild +++ /dev/null @@ -1,104 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.8.8-r2.ebuild,v 1.1 2013/07/09 10:11:06 polynomial-c Exp $ - -EAPI=5 - -inherit eutils flag-o-matic - -MY_P=${P/_/-} - -DESCRIPTION="GNU Midnight Commander is a text based file manager" -HOMEPAGE="http://www.midnight-commander.org" -SRC_URI="http://www.midnight-commander.org/downloads/${MY_P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="+edit gpm mclib nls samba sftp +slang spell test X +xdg" - -REQUIRED_USE="spell? ( edit )" - -RDEPEND=">=dev-libs/glib-2.8:2 - gpm? ( sys-libs/gpm ) - kernel_linux? ( sys-fs/e2fsprogs ) - samba? ( net-fs/samba ) - sftp? ( net-libs/libssh2 ) - slang? ( >=sys-libs/slang-2 ) - !slang? ( sys-libs/ncurses ) - spell? ( app-text/aspell ) - X? ( x11-libs/libX11 - x11-libs/libICE - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libSM )" -DEPEND="${RDEPEND} - app-arch/xz-utils - virtual/pkgconfig - nls? ( sys-devel/gettext ) - test? ( dev-libs/check ) - " - -[[ -n ${LIVE_EBUILD} ]] && DEPEND="${DEPEND} dev-vcs/cvs" # needed only for SCM source tree (autopoint uses cvs) - -src_prepare() { - [[ -n ${LIVE_EBUILD} ]] && ./autogen.sh - - # bug #473244 - epatch "${FILESDIR}/${P}-segfault-unowned-temp-dir.patch" - # bug #403863 - epatch "${FILESDIR}/${P}-race_cond_create_tmp_dir.patch" - # bug #461284 - epatch "${FILESDIR}/${P}-wrong_char_in_menu_file.patch" -} - -S=${WORKDIR}/${MY_P} - -src_configure() { - local myscreen=ncurses - use slang && myscreen=slang - [[ ${CHOST} == *-solaris* ]] && append-ldflags "-lnsl -lsocket" - - local homedir=".mc" - use xdg && homedir="XDG" - - econf \ - --disable-silent-rules \ - --disable-dependency-tracking \ - $(use_enable nls) \ - --enable-vfs \ - $(use_enable kernel_linux vfs-undelfs) \ - --enable-charset \ - $(use_with X x) \ - $(use_enable samba vfs-smb) \ - $(use_enable sftp vfs-sftp) \ - $(use_enable spell aspell) \ - $(use_with gpm gpm-mouse) \ - --with-screen=${myscreen} \ - $(use_with edit) \ - $(use_enable mclib) \ - $(use_enable test tests) \ - --with-homedir=${homedir} -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS README NEWS - - # fix bug #334383 - if use kernel_linux && [[ ${EUID} == 0 ]] ; then - fowners root:tty /usr/libexec/mc/cons.saver - fperms g+s /usr/libexec/mc/cons.saver - fi - - if ! use xdg ; then - sed 's@MC_XDG_OPEN="xdg-open"@MC_XDG_OPEN="/bin/false"@' \ - -i "${ED}"/usr/libexec/mc/ext.d/*.sh || die - fi -} - -pkg_postinst() { - elog "To enable exiting to latest working directory," - elog "put this into your ~/.bashrc:" - elog ". ${EPREFIX}/usr/libexec/mc/mc.sh" -} diff --git a/app-misc/mc/mc-4.8.9.ebuild b/app-misc/mc/mc-4.8.9.ebuild deleted file mode 100644 index dca1ecfebbd5..000000000000 --- a/app-misc/mc/mc-4.8.9.ebuild +++ /dev/null @@ -1,100 +0,0 @@ -# Copyright 1999-2014 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.8.9.ebuild,v 1.11 2014/01/18 20:02:23 ago Exp $ - -EAPI=5 - -inherit eutils flag-o-matic - -MY_P=${P/_/-} - -DESCRIPTION="GNU Midnight Commander is a text based file manager" -HOMEPAGE="http://www.midnight-commander.org" -SRC_URI="http://www.midnight-commander.org/downloads/${MY_P}.tar.xz" - -LICENSE="GPL-3" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x86-solaris" -IUSE="+edit gpm mclib nls samba sftp +slang spell test X +xdg" - -REQUIRED_USE="spell? ( edit )" - -RDEPEND=">=dev-libs/glib-2.8:2 - gpm? ( sys-libs/gpm ) - kernel_linux? ( sys-fs/e2fsprogs ) - samba? ( net-fs/samba ) - sftp? ( net-libs/libssh2 ) - slang? ( >=sys-libs/slang-2 ) - !slang? ( sys-libs/ncurses ) - spell? ( app-text/aspell ) - X? ( x11-libs/libX11 - x11-libs/libICE - x11-libs/libXau - x11-libs/libXdmcp - x11-libs/libSM )" -DEPEND="${RDEPEND} - app-arch/xz-utils - virtual/pkgconfig - nls? ( sys-devel/gettext ) - test? ( dev-libs/check ) - " - -[[ -n ${LIVE_EBUILD} ]] && DEPEND="${DEPEND} dev-vcs/cvs" # needed only for SCM source tree (autopoint uses cvs) - -src_prepare() { - epatch "${FILESDIR}/${PN}-4.8.9-unknown-opts.patch" - epatch "${FILESDIR}/${PN}-4.8.9-ncurses-include-fix.patch" - - [[ -n ${LIVE_EBUILD} ]] && ./autogen.sh -} - -S=${WORKDIR}/${MY_P} - -src_configure() { - local myscreen=ncurses - use slang && myscreen=slang - [[ ${CHOST} == *-solaris* ]] && append-ldflags "-lnsl -lsocket" - - local homedir=".mc" - use xdg && homedir="XDG" - - econf \ - --disable-silent-rules \ - --disable-dependency-tracking \ - $(use_enable nls) \ - --enable-vfs \ - $(use_enable kernel_linux vfs-undelfs) \ - --enable-charset \ - $(use_with X x) \ - $(use_enable samba vfs-smb) \ - $(use_enable sftp vfs-sftp) \ - $(use_enable spell aspell) \ - $(use_with gpm gpm-mouse) \ - --with-screen=${myscreen} \ - $(use_with edit internal-edit) \ - $(use_enable mclib) \ - $(use_enable test tests) \ - --with-homedir=${homedir} -} - -src_install() { - emake DESTDIR="${D}" install - dodoc AUTHORS README NEWS - - # fix bug #334383 - if use kernel_linux && [[ ${EUID} == 0 ]] ; then - fowners root:tty /usr/libexec/mc/cons.saver - fperms g+s /usr/libexec/mc/cons.saver - fi - - if ! use xdg ; then - sed 's@MC_XDG_OPEN="xdg-open"@MC_XDG_OPEN="/bin/false"@' \ - -i "${ED}"/usr/libexec/mc/ext.d/*.sh || die - fi -} - -pkg_postinst() { - elog "To enable exiting to latest working directory," - elog "put this into your ~/.bashrc:" - elog ". ${EPREFIX}/usr/libexec/mc/mc.sh" -} |