blob: c8fa096e5d3a773afd53eceebe97fc3c1eef6c7b (
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-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libopendaap/libopendaap-0.2.3.ebuild,v 1.9 2006/03/06 16:16:52 flameeyes Exp $
IUSE=""
inherit eutils
DESCRIPTION="libopendaap is a library which enables applications to discover and connect to iTunes(R) music shares"
SRC_URI="http://crazney.net/programs/itunes/files/${P}.tar.bz2"
HOMEPAGE="http://crazney.net/programs/itunes/libopendaap.html"
SLOT="0"
LICENSE="crazney APSL-2"
KEYWORDS="amd64 x86 ppc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-types.h
}
src_install() {
make DESTDIR="${D}" install || die
dodoc AUTHORS COPYING ChangeLog INSTALL NEWS README
}
|