blob: 9aae09b3d4bc24b7d39bf92fd3dd8ebb5d5a3ff2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmpd/libmpd-0.01.ebuild,v 1.7 2005/11/11 23:23:56 hansmi Exp $
DESCRIPTION="A library handling connection to a MPD server."
HOMEPAGE="http://www.qballcow.nl/libmpd/"
SRC_URI="http://download.qballcow.nl/programs/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0.01"
KEYWORDS="~amd64 ppc sparc x86"
IUSE=""
DEPEND="virtual/libc
sys-devel/libtool"
src_install() {
make DESTDIR="${D}" install || die "make install failed"
dodoc README ChangeLog
}
|