blob: 4ad02cd1b78d9b492059c20944c8ce568fc536be (
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
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libshout/libshout-1.0.9.ebuild,v 1.1 2002/07/28 15:46:04 aliz Exp $
S=${WORKDIR}/${P}
DESCRIPTION="libshout is a library for connecting and sending data to icecast servers."
SRC_URI="http://developer.icecast.org/libshout/releases/${P}.tar.gz"
HOMEPAGE="http://developer.icecast.org/libshout/"
SLOT="0"
KEYWORDS="x86"
LICENSE="GPL-2"
DEPEND="sys-devel/gcc
virtual/glibc"
src_compile() {
./configure --prefix=/usr \
--mandir=/usr/share/man || die
emake || die
}
src_install () {
make DESTDIR=${D} install || die
}
|