blob: 87f65cf8bb4f3fea96f96934b94cd58435529a17 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-emulation/lib765/lib765-0.3.1.1.ebuild,v 1.5 2004/06/24 22:32:51 agriffis Exp $
DESCRIPTION="Floppy controller emulator"
HOMEPAGE="http://www.seasip.demon.co.uk/Unix/LibDsk/"
SRC_URI="http://www.seasip.demon.co.uk/Unix/LibDsk/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="x86 ~ppc"
DEPEND="app-emulation/libdsk"
src_compile() {
econf --with-libdsk || die
emake || die "lib765 make failed!"
}
src_install() {
make install DESTDIR=${D} || die
dodoc ChangeLog doc/765.txt
}
|