# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit git eutils EGIT_REPO_URI="git://live.polito.it/var/git/libnemesi.git" EGIT_BOOTSTRAP="NOCONFIGURE=1 ./autogen.sh" DESCRIPTION="Standard rtsp streaming client library" HOMEPAGE="http://streaming.polito.it/client/library" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~ppc64" IUSE="" # self contained RDEPEND="" DEPEND="${RDEPEND}" src_compile() { ./configure --prefix=/usr \ --mandir=/usr/share/man \ --libdir=/usr/$(get_libdir) \ --infodir=/usr/share/info \ --datadir=/usr/share \ --sysconfdir=/etc \ --localstatedir=/var \ --disable-fhs23 || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR=${D} install || die "make install failed" dodoc README dodoc ChangeLog }