# Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: $ inherit eutils DESCRIPTION="Prints out information on all devices attached to the ADB bus" HOMEPAGE="http://www.cymes.de/members/joker/projects/lsadb/lsadb.html" SRC_URI="http://www.cymes.de/members/joker/projects/lsadb/tar/${P}.tar.gz" LICENSE="GPL-2" SLOT="0" KEYWORDS="-* ~ppc" IUSE="" DEPEND="" RDEPEND="$DEPEND" src_unpack() { unpack ${A} mkdir ${S} mv Makefile README lsadb.1 lsadb.c lsadb.h ${S} cd ${S} } src_compile() { emake || die "emake failed" } src_install() { dobin lsadb doman lsadb.1 dodoc README }