# Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/app-mobilephone/p2kmoto/p2kmoto-9999.ebuild,v 1.6 2007/09/07 20:07:51 jokey Exp $ # moto4lin-9999 -> SVN inherit eutils subversion autotools #inherit subversion autotools DESCRIPTION="p2kmoto is a library for communicating with supported Motorola P2K phones." HOMEPAGE="http://moto4lin.sourceforge.net/" SRC_URI="" ESVN_REPO_URI="https://moto4lin.svn.sourceforge.net/svnroot/moto4lin/trunk" S=${WORKDIR}/trunk LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" DEPEND="dev-libs/libusb" src_unpack() { eerror "This is the latest svn version:" eerror "That means there are NO promises it will work" eerror "or the dependecies are not up to date and cannot be solved correctly" subversion_src_unpack S=${S}/p2kmoto cd ${S} eautoreconf || die "eautoreconf failed" # elibtoolize || die "Libtoolize failed." } src_compile() { econf || die "Configure failed." emake || die "Make failed." } src_install() { # einstall emake DESTDIR="${D}" install || die "make install failed" dodoc Changelog README }