blob: 65756d899a0f26aad63accec83415550dc028ce2 (
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-2005 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.7 2005/05/01 16:48:31 hansmi 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
}
|