summaryrefslogtreecommitdiff
blob: 2f3d4170eaaa415a36331df54b2c8864af1fa3a6 (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
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmpd/libmpd-0.12.0.ebuild,v 1.2 2006/03/27 06:39:43 ticho Exp $

DESCRIPTION="A library handling connection to a MPD server."
HOMEPAGE="http://cms.qballcow.nl/index.php?page=libmpd"
SRC_URI="http://download.qballcow.nl/programs/gmpc-0.13/${P}.tar.gz"
LICENSE="GPL-2"

SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE=""
DEPEND="virtual/libc
		sys-devel/libtool"

src_compile() {
	econf || die "econf failed"
	emake || die "emake failed"
}

src_install() {
	make DESTDIR="${D}" install || die "make install failed"
	dodoc README ChangeLog
}