blob: 1e3059d58afbc626f7d8649411b431b0931e3e3c (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/litestream/litestream-1.3_rc3.ebuild,v 1.2 2005/12/19 22:52:52 mr_bones_ Exp $
IUSE=""
inherit eutils flag-o-matic toolchain-funcs
MY_P="${P/_rc/RC}"
DESCRIPTION="Litstream is a lightweight and robust shoutcast-compatible streaming mp3 server."
HOMEPAGE="http://www.litestream.org/"
SRC_URI="http://litestream.org/litestream/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
# -amd64: 1.2 build errors - eradicator
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
DEPEND=""
S="${WORKDIR}/${MY_P}"
src_unpack() {
unpack ${A}
sed -i -e 's:CFLAGS = :CFLAGS = ${OPTFLAGS} :; s:-g::' \
${S}/Makefile
}
src_compile() {
append-flags "-DNO_VARARGS"
emake CC=$(tc-getCC) OPTFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" || die
}
src_install() {
dobin litestream literestream
newbin source litestream-source
newbin server litestream-server
newbin client litestream-client
dodoc ABOUT ACKNOWLEDGEMENTS BUGS CHANGELOG CONTACT FILES MAKEITGO README
}
|