blob: c64fdef80b3b8dc3c27fb99fecb9c82025b2db27 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/daaplib/daaplib-0.1.1a.ebuild,v 1.5 2004/06/24 22:57:20 agriffis Exp $
inherit eutils
DESCRIPTION="a tiny, portable C++ library to read and write low-level DAAP streams in memory"
HOMEPAGE="http://www.deleet.de/projekte/daap/daaplib/"
SRC_URI="http://deleet.de/projekte/daap/daaplib/${PN}.${PV}.zip"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 ~ppc"
IUSE="static"
DEPEND="app-arch/unzip"
RDEPEND=""
S=${WORKDIR}/${PN}.${PV}/daaplib/src
src_unpack() {
unpack ${A}
# Use updated gentoo Makefile
ebegin "Updating Makefile"
cp ${FILESDIR}/${P}-Makefile ${S}/makefile
eend $?
}
src_compile() {
emake || die
}
src_install() {
make DESTDIR="${D}" PREFIX=/usr install
use static || rm ${D}/usr/lib/libdaaplib.a
dodoc ../../COPYING ../../README
}
|