diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2003-09-17 04:14:20 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2003-09-17 04:14:20 +0000 |
commit | 4c4d35314696de75e218aa3dcc77aeaaea9c654a (patch) | |
tree | 3058471cf8f9287d651ec7c1f3eb385f5f64f3cc /app-misc/mtoolsfm | |
parent | moved mtools to sys-fs (diff) | |
download | gentoo-2-4c4d35314696de75e218aa3dcc77aeaaea9c654a.tar.gz gentoo-2-4c4d35314696de75e218aa3dcc77aeaaea9c654a.tar.bz2 gentoo-2-4c4d35314696de75e218aa3dcc77aeaaea9c654a.zip |
moved mtoolsfm to sys-fs
Diffstat (limited to 'app-misc/mtoolsfm')
-rw-r--r-- | app-misc/mtoolsfm/ChangeLog | 13 | ||||
-rw-r--r-- | app-misc/mtoolsfm/Manifest | 5 | ||||
-rw-r--r-- | app-misc/mtoolsfm/files/digest-mtoolsfm-1.9.3 | 1 | ||||
-rw-r--r-- | app-misc/mtoolsfm/files/mtoolsfm.c.diff | 62 | ||||
-rw-r--r-- | app-misc/mtoolsfm/metadata.xml | 9 | ||||
-rw-r--r-- | app-misc/mtoolsfm/mtoolsfm-1.9.3.ebuild | 29 |
6 files changed, 0 insertions, 119 deletions
diff --git a/app-misc/mtoolsfm/ChangeLog b/app-misc/mtoolsfm/ChangeLog deleted file mode 100644 index e58bf4eb9d9a..000000000000 --- a/app-misc/mtoolsfm/ChangeLog +++ /dev/null @@ -1,13 +0,0 @@ -# ChangeLog for app-misc/mtoolsfm -# Copyright 2000-2003 Gentoo Technologies, Inc.; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mtoolsfm/ChangeLog,v 1.2 2003/07/29 13:56:36 lanius Exp $ - - 29 Jul 2003; lanius@gentoo.org mtoolsfm-1.9.3.ebuild: - stable bump - -*mtoolsfm-1.9.3 (15 Jul 2003) - - 15 Jul 2003; Heinrich Wendel <lanius@gentoo.org> mtoolsfm-1.9.3.ebuild, - files/mtoolsfm.c.diff: - initial release - diff --git a/app-misc/mtoolsfm/Manifest b/app-misc/mtoolsfm/Manifest deleted file mode 100644 index 554957b694b8..000000000000 --- a/app-misc/mtoolsfm/Manifest +++ /dev/null @@ -1,5 +0,0 @@ -MD5 d1d9def37127f9c318c473026de352be files/digest-mtoolsfm-1.9.3 66 -MD5 87ef961e5ed3682a37f8b66f2e0f9aaf files/mtoolsfm.c.diff 1767 -MD5 dc71c9272946192ab7eb3bca9e18921c ChangeLog 436 -MD5 b673cf33cbf617b25811bbb593cdddfe mtoolsfm-1.9.3.ebuild 745 -MD5 503ccb1138f9c49f0855884d830988a6 metadata.xml 253 diff --git a/app-misc/mtoolsfm/files/digest-mtoolsfm-1.9.3 b/app-misc/mtoolsfm/files/digest-mtoolsfm-1.9.3 deleted file mode 100644 index 1aac6212c19a..000000000000 --- a/app-misc/mtoolsfm/files/digest-mtoolsfm-1.9.3 +++ /dev/null @@ -1 +0,0 @@ -MD5 5ce76261ad969209c86b28e49924fc43 MToolsFM-1.9-3.tar.gz 177388 diff --git a/app-misc/mtoolsfm/files/mtoolsfm.c.diff b/app-misc/mtoolsfm/files/mtoolsfm.c.diff deleted file mode 100644 index cc7b12e95fc4..000000000000 --- a/app-misc/mtoolsfm/files/mtoolsfm.c.diff +++ /dev/null @@ -1,62 +0,0 @@ ---- src/mtoolsfm.c 2001-08-27 08:45:25.000000000 +0200 -+++ src/mtoolsfm.c.1 2003-07-04 20:24:03.000000000 +0200 -@@ -85,6 +85,10 @@ - char *homedir; - int debug=0; - -+char *leftpath = ""; -+char *rightpath = ""; -+int sidecount=0; -+ - /* should a configuration file ~/.mtoolsfm be written in user's homedir ? */ - #ifdef DEFAULT_NOSAVE - int nosave=1; -@@ -652,6 +656,7 @@ - char *nextposition; - unsigned int path_length=50; - unsigned int path_add=50; -+ sidecount++; - - if (debug) { - printf ("In gethdpath()\n"); -@@ -660,11 +665,19 @@ - clearpath (whichside); - errno = 0; - path = malloc (path_length * sizeof (char)); -+ if (sidecount == 1 && strlen(leftpath) != 0) { -+ strcpy(path, leftpath); -+ } -+ else if (sidecount == 2 && strlen(rightpath) != 0) { -+ strcpy(path, rightpath); -+ } -+ else { - while ((!getcwd (path, path_length - 2)) && (errno == ERANGE)) - { - if (debug) printf(" getcwd buffer resize: errno=%d, path_length=%d, path=%s\n",errno,path_length,path); - path = g_realloc (path, (path_length+=path_add) * sizeof (char)); - } -+ } - strcat (path, "/"); - if (debug) - printf (" path: %s\n", path); -@@ -2920,6 +2933,20 @@ - debug = 1; - else if (!strcmp (argv[i], "--debug")) - debug = 1; -+ else if (!strncmp (argv[i], "--leftpath", 10)) { -+ leftpath = strchr(argv[i], '='); -+ if(leftpath) { -+ *leftpath = 0; -+ leftpath++; -+ } -+ } -+ else if (!strncmp (argv[i], "--rightpath", 11)) { -+ rightpath = strchr(argv[i], '='); -+ if(rightpath) { -+ *rightpath = 0; -+ rightpath++; -+ } -+ } - else if (!strcmp (argv[i], "--help")) { - g_print ("\n%s%s\n%s%s%s\n",ABOUTMTOOLSFM_1,ABOUTMTOOLSFM_2, - MTOOLSFMOPTIONS_1,CONFFILE,MTOOLSFMOPTIONS_2); diff --git a/app-misc/mtoolsfm/metadata.xml b/app-misc/mtoolsfm/metadata.xml deleted file mode 100644 index c3504b40c506..000000000000 --- a/app-misc/mtoolsfm/metadata.xml +++ /dev/null @@ -1,9 +0,0 @@ -<?xml version="1.0" encoding="UTF-8"?> -<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> -<pkgmetadata> -<herd>no-herd</herd> -<maintainer> - <email>lanius@gentoo.org</email> - <name>Heinrich Wendel</name> -</maintainer> -</pkgmetadata> diff --git a/app-misc/mtoolsfm/mtoolsfm-1.9.3.ebuild b/app-misc/mtoolsfm/mtoolsfm-1.9.3.ebuild deleted file mode 100644 index ffecddf77aae..000000000000 --- a/app-misc/mtoolsfm/mtoolsfm-1.9.3.ebuild +++ /dev/null @@ -1,29 +0,0 @@ -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/mtoolsfm/mtoolsfm-1.9.3.ebuild,v 1.4 2003/08/05 15:43:12 vapier Exp $ - -inherit eutils - -DESCRIPTION="easy floppy-access under linux / UNIX" -HOMEPAGE="http://www.core-coutainville.org/MToolsFM/" -SRC_URI="http://www.core-coutainville.org/MToolsFM/archive/SOURCES/${MY_P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86" - -DEPEND="=x11-libs/gtk+-1.2* - app-admin/mtools" - -S=${WORKDIR}/MToolsFM-${PV} - -src_unpack() { - unpack ${A} || die - cd ${S} || die - epatch ${FILESDIR}/mtoolsfm.c.diff -} - -src_install() { - einstall install_prefix=${D} - dodoc AUTHORS COPYING ChangeLog NEWS README THANKS -} |