summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHeinrich Wendel <lanius@gentoo.org>2004-08-24 10:24:42 +0000
committerHeinrich Wendel <lanius@gentoo.org>2004-08-24 10:24:42 +0000
commit21b068816419585e00c06e0d24b2ec0efd103132 (patch)
tree3724fbe36a69ae1cb35c488a82c9a1c5a3a9a586 /app-misc
parentCorrected DESCRIPTION (Manifest recommit) (diff)
downloadgentoo-2-21b068816419585e00c06e0d24b2ec0efd103132.tar.gz
gentoo-2-21b068816419585e00c06e0d24b2ec0efd103132.tar.bz2
gentoo-2-21b068816419585e00c06e0d24b2ec0efd103132.zip
mark stable mark stable on x86
Diffstat (limited to 'app-misc')
-rw-r--r--app-misc/mc/ChangeLog4
-rw-r--r--app-misc/mc/files/digest-mc-4.6.0-r82
-rw-r--r--app-misc/mc/mc-4.6.0-r8.ebuild98
-rw-r--r--app-misc/mc/mc-4.6.0-r9.ebuild4
4 files changed, 6 insertions, 102 deletions
diff --git a/app-misc/mc/ChangeLog b/app-misc/mc/ChangeLog
index 6bf62db4c32b..7d49995e8f3a 100644
--- a/app-misc/mc/ChangeLog
+++ b/app-misc/mc/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/mc
# Copyright 2002-2004 Gentoo Foundation; Distributed under the GPL v2
+ 24 Aug 2004; Heinrich Wendel <lanius@gentoo.org> -mc-4.6.0-r8.ebuild,
+ mc-4.6.0-r9.ebuild:
+ mark stable on x86
+
10 Aug 2004; Tom Gall <tgall@gentoo.org> mc-4.6.0-r9.ebuild:
stable on ppc64, bug #58016
diff --git a/app-misc/mc/files/digest-mc-4.6.0-r8 b/app-misc/mc/files/digest-mc-4.6.0-r8
deleted file mode 100644
index c66b6aee0770..000000000000
--- a/app-misc/mc/files/digest-mc-4.6.0-r8
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 70804dc9e2049e24f294ff7090a82a12 mc-4.6.0.tar.gz 3727676
-MD5 f5053361d1936b3e4187857daf0cc6cb mc-4.6.0-sambalib-3.0.0.patch.bz2 399920
diff --git a/app-misc/mc/mc-4.6.0-r8.ebuild b/app-misc/mc/mc-4.6.0-r8.ebuild
deleted file mode 100644
index c9425c098bfa..000000000000
--- a/app-misc/mc/mc-4.6.0-r8.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.6.0-r8.ebuild,v 1.2 2004/06/24 22:23:42 agriffis Exp $
-
-inherit flag-o-matic eutils
-
-DESCRIPTION="GNU Midnight Commander cli-based file manager"
-HOMEPAGE="http://www.ibiblio.org/mc/"
-SRC_URI="http://www.ibiblio.org/pub/Linux/utils/file/managers/${PN}/${P}.tar.gz
- http://www.spock.mga.com.pl/public/gentoo/${P}-sambalib-3.0.0.patch.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~ia64 ~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~amd64"
-IUSE="gpm nls samba ncurses X slang"
-
-DEPEND=">=sys-fs/e2fsprogs-1.19
- ncurses? ( >=sys-libs/ncurses-5.2-r5 )
- =dev-libs/glib-2*
- >=sys-libs/pam-0.72
- gpm? ( >=sys-libs/gpm-1.19.3 )
- slang? ( >=sys-libs/slang-1.4.2 )
- samba? ( >=net-fs/samba-3.0.0 )
- X? ( virtual/x11 )"
-
-src_unpack() {
- unpack ${P}.tar.gz
- cd ${S}
-
- epatch ${DISTDIR}/${P}-sambalib-3.0.0.patch.bz2
-
- epatch ${FILESDIR}/${P}-find.patch
- epatch ${FILESDIR}/${P}-cpan-2003-1023.patch
- epatch ${FILESDIR}/${P}-can-2004-0226-0231-0232.patch.bz2
- epatch ${FILESDIR}/${P}-vfs.patch
-}
-
-src_compile() {
- filter-flags -malign-double
-
- local myconf=""
-
- if ! use slang && ! use ncurses ; then
- myconf="${myconf} --with-screen=mcslang"
- elif use ncurses && ! use slang ; then
- myconf="${myconf} --with-screen=ncurses"
- else
- use slang && myconf="${myconf} --with-screen=slang"
- fi
-
- myconf="${myconf} `use_with gpm gpm-mouse`"
-
- use nls \
- && myconf="${myconf} --with-included-gettext" \
- || myconf="${myconf} --disable-nls"
-
- myconf="${myconf} `use_with X x`"
-
- use samba \
- && myconf="${myconf} --with-samba --with-configdir=/etc/samba
- --with-codepagedir=/var/lib/samba/codepages --with-privatedir=/etc/samba/private" \
- || myconf="${myconf} --without-samba"
-
- econf \
- --with-vfs \
- --with-gnu-ld \
- --with-ext2undel \
- --with-edit \
- --enable-charset \
- ${myconf} || die
-
- emake || die
-}
-
-src_install() {
- cat ${FILESDIR}/chdir-4.6.0.gentoo >>\
- ${S}/lib/mc-wrapper.sh
-
- einstall || die
-
- # install cons.saver setuid, to actually work
- chmod u+s ${D}/usr/lib/mc/cons.saver
-
- dodoc ChangeLog AUTHORS MAINTAINERS FAQ INSTALL* NEWS README*
-
- insinto /usr/share/mc
- doins ${FILESDIR}/mc.gentoo
-}
-
-pkg_postinst() {
- einfo "Add the following line to your ~/.bashrc to"
- einfo "allow mc to chdir to its latest working dir at exit"
- einfo ""
- einfo "# Midnight Commander chdir enhancement"
- einfo "if [ -f /usr/share/mc/mc.gentoo ]; then"
- einfo " . /usr/share/mc/mc.gentoo"
- einfo "fi"
-}
diff --git a/app-misc/mc/mc-4.6.0-r9.ebuild b/app-misc/mc/mc-4.6.0-r9.ebuild
index 524148cdbaa2..a190c71cb6ad 100644
--- a/app-misc/mc/mc-4.6.0-r9.ebuild
+++ b/app-misc/mc/mc-4.6.0-r9.ebuild
@@ -1,6 +1,6 @@
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.6.0-r9.ebuild,v 1.2 2004/08/11 02:48:37 tgall Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/mc/mc-4.6.0-r9.ebuild,v 1.3 2004/08/24 10:24:42 lanius Exp $
inherit flag-o-matic eutils
@@ -11,7 +11,7 @@ SRC_URI="http://www.ibiblio.org/pub/Linux/utils/file/managers/${PN}/${P}.tar.gz
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="~ia64 ~x86 ~ppc ~sparc ~alpha ~mips ~hppa ~amd64 ppc64"
+KEYWORDS="~ia64 x86 ~ppc ~sparc ~alpha ~mips ~hppa ~amd64 ppc64"
IUSE="gpm nls samba ncurses X slang"
DEPEND=">=sys-fs/e2fsprogs-1.19