# Copyright 1999-2006 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit git autotools EGIT_REPO_URI="git://live.polito.it/var/git/felix.git" EGIT_BOOTSTRAP="eautoreconf" DESCRIPTION="Simple stream multiplexer" HOMEPAGE="http://live.polito.it/documentation/felix" LICENSE="GPL-2" SLOT="0" KEYWORDS="~amd64 ~ppc ~x86 ~ppc64" IUSE="" RDEPEND="dev-libs/bufferpool-git dev-libs/libnemesi-git >=dev-libs/xmlrpc-c-1.06.09 >=media-sound/mpg123-1.3.0" DEPEND="${RDEPEND}" src_compile() { econf --localstatedir=/var || die "econf failed" emake || die "emake failed" } src_install() { make DESTDIR="${D}" install || die "make install failed" dodoc README ChangeLog find "${S}/TOOLS" -type d | xargs -- chmod 0755 find "${S}/TOOLS" -type f | xargs -- chmod 0644 cp -r "${S}/TOOLS" "${D}/usr/share/doc/${PF}/" || die }