# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/dev-libs/dope/dope-0.1.0.ebuild,v 1.1 2005/12/27 16:59:29 egore Exp $ inherit autotools DESCRIPTION="Distributed Object Programing Environment for C++" HOMEPAGE="http://dope.berlios.de/" #SRC_URI="http://download.berlios.de/${PN}/${P}.tar.gz" horribly broken! SRC_URI="http://www.egore911.de/vype/${P}.tar.bz2" LICENSE="GPL-2" SLOT="0" KEYWORDS="~x86" IUSE="" src_unpack() { unpack ${A} cd "${S}" } src_compile() { eautoreconf || die "eautoreconf failed" econf || die "econf failed" emake || die "emake failed" } src_install() { emake DESTDIR=${D} install || die "emake install failed" }