summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2010-10-17 04:21:45 +0000
committerMike Frysinger <vapier@gentoo.org>2010-10-17 04:21:45 +0000
commita6078cfcb34a68eff70b4294c679493fc616b2df (patch)
tree1dfa11337ead74ae295cb5df9f98791653401088 /sys-fs/mtools
parentDrop to ~mips (diff)
downloadgentoo-2-a6078cfcb34a68eff70b4294c679493fc616b2df.tar.gz
gentoo-2-a6078cfcb34a68eff70b4294c679493fc616b2df.tar.bz2
gentoo-2-a6078cfcb34a68eff70b4294c679493fc616b2df.zip
old
Diffstat (limited to 'sys-fs/mtools')
-rw-r--r--sys-fs/mtools/mtools-4.0.12.ebuild47
1 files changed, 0 insertions, 47 deletions
diff --git a/sys-fs/mtools/mtools-4.0.12.ebuild b/sys-fs/mtools/mtools-4.0.12.ebuild
deleted file mode 100644
index ce87ecd1da3f..000000000000
--- a/sys-fs/mtools/mtools-4.0.12.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/mtools/mtools-4.0.12.ebuild,v 1.2 2010/03/02 15:20:25 jer Exp $
-
-inherit eutils
-
-DESCRIPTION="utilities to access MS-DOS disks from Unix without mounting them"
-HOMEPAGE="http://mtools.linux.lu/"
-SRC_URI="http://mtools.linux.lu/${P}.tar.bz2
- mirror://gnu/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
-IUSE="X"
-
-DEPEND="
- X? (
- x11-libs/libICE
- x11-libs/libXau
- x11-libs/libSM
- x11-libs/libX11
- x11-libs/libXt
- )"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- epatch "${FILESDIR}"/${PN}-3.9.11-flags.patch #232766
- sed -i 's:/usr/local/etc:/etc:g' mtools.5 mtools.texi
-}
-
-src_compile() {
- econf \
- --sysconfdir=/etc/mtools \
- $(use_with X x) \
- || die
- emake || die "emake failed"
-}
-
-src_install() {
- emake -j1 DESTDIR="${D}" install || die
- insinto /etc/mtools
- doins mtools.conf || die
- dosed '/^SAMPLE FILE$/s:^:#:' /etc/mtools/mtools.conf # default is fine
- dodoc README* Release.notes
-}