| 1 |
# Copyright 1999-2012 Gentoo Foundation
|
| 2 |
# Distributed under the terms of the GNU General Public License v2
|
| 3 |
# $Header: /var/cvsroot/gentoo-x86/net-news/blam/blam-1.8.6.ebuild,v 1.8 2009/12/27 08:52:24 josejx Exp $
|
| 4 |
|
| 5 |
EAPI=2
|
| 6 |
|
| 7 |
inherit mono eutils
|
| 8 |
|
| 9 |
DESCRIPTION="A RSS aggregator written in C#"
|
| 10 |
HOMEPAGE="http://www.cmartin.tk/blam.html"
|
| 11 |
SRC_URI="http://www.cmartin.tk/blam/${PN}_${PV}.orig.tar.gz"
|
| 12 |
|
| 13 |
LICENSE="GPL-2"
|
| 14 |
SLOT="0"
|
| 15 |
KEYWORDS="amd64 ppc x86"
|
| 16 |
IUSE=""
|
| 17 |
|
| 18 |
RDEPEND=">=dev-lang/mono-2
|
| 19 |
>=dev-dotnet/gtk-sharp-2.12.6
|
| 20 |
>=dev-dotnet/glade-sharp-2.12.6
|
| 21 |
>=dev-dotnet/gnome-sharp-2.16.1
|
| 22 |
>=dev-dotnet/gconf-sharp-2.8.2
|
| 23 |
>=dev-dotnet/webkit-sharp-0.2
|
| 24 |
>=gnome-base/libgnomeui-2.2
|
| 25 |
>=gnome-base/gconf-2.4"
|
| 26 |
DEPEND="${RDEPEND}
|
| 27 |
sys-devel/gettext
|
| 28 |
virtual/pkgconfig
|
| 29 |
>=dev-util/intltool-0.25"
|
| 30 |
|
| 31 |
# Disable parallel builds
|
| 32 |
MAKEOPTS="${MAKEOPTS} -j1"
|
| 33 |
|
| 34 |
src_prepare() {
|
| 35 |
# fix test suite
|
| 36 |
echo "blam.desktop.in" >> po/POTFILES.in || die
|
| 37 |
}
|
| 38 |
|
| 39 |
src_install() {
|
| 40 |
make DESTDIR="${D}" install || die
|
| 41 |
dodoc AUTHORS ChangeLog INSTALL NEWS README
|
| 42 |
mono_multilib_comply
|
| 43 |
}
|