25 lines
551 B
Bash
25 lines
551 B
Bash
# Copyright 1999-2017 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
inherit eutils
|
|
|
|
DESCRIPTION="A library to 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"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 ppc ppc64 sparc x86"
|
|
IUSE=""
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
|
|
epatch "${FILESDIR}"/${P}-freebsd.patch
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR="${D}" install || die
|
|
dodoc AUTHORS ChangeLog
|
|
}
|