blob: 91072429732e11838b103d2174cd12be03d6a225 (
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
28
29
30
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Maintainer: Jays Kwak <jayskwak@gentoo.or.kr>
# $Header: /var/cvsroot/gentoo-x86/net-p2p/soribada/soribada-0.8b.ebuild,v 1.1 2002/06/26 10:40:26 bangert Exp $
S=${WORKDIR}/${P}
DESCRIPTION="Soribada (korean napster clone) client for linux"
SRC_URI="http://soribada.kldp.org/depot/${P}.tar.gz"
HOMEPAGE="http://soribada.kldp.org"
DEPEND="virtual/x11
>=x11-libs/gtk+-1.2.0"
SLOT="0"
src_compile() {
./configure \
--host=${CHOST} \
--prefix=/usr \
--bindir=/usr/bin || die "./configure failed"
emake || die
}
src_install() {
make \
prefix=${D}/usr \
bindir=${D}/usr/bin \
install || die
dodoc ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL README NEWS TODO
}
|