blob: 52ae53460da8db36acb7837c91ba76502e748cec (
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
25
26
27
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-arch/xdms/xdms-1.3.1.ebuild,v 1.1 2004/09/11 12:19:05 dholm Exp $
inherit eutils
DESCRIPTION="xDMS - Amiga DMS disk image decompressor"
HOMEPAGE="http://freshmeat.net/projects/xdms"
SRC_URI="http://ee.tut.fi/~heikki/xdms/${P}.tar.gz"
LICENSE="public-domain"
SLOT="0"
KEYWORDS="~amd64 ~x86 ~ppc"
DEPEND="virtual/libc"
src_compile() {
cd ${S}
./configure --prefix=/usr --package-prefix="${D}" \
|| die "configure failed"
emake || die "emake failed"
}
src_install() {
make install || die "make install failed"
dodoc COPYING xdms.txt ChangeLog.txt
}
|