0a72ce8233
- Added dev-dotnet/libanculus-sharp, one of galaxium dependencies - Added dev-dotnet/gecko-sharp, an ebuild from gentoo that works with firefox 3 git-svn-id: http://svn.sabayonlinux.org/overlay@2434 d7aec97c-591d-0410-af39-a8856400b30a
30 lines
587 B
Bash
30 lines
587 B
Bash
# Copyright 1999-2008 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: $
|
|
|
|
inherit mono autotools
|
|
|
|
DESCRIPTION="A reusable utility library written in C#"
|
|
HOMEPAGE="http://code.google.com/p/libanculus-sharp/"
|
|
SRC_URI="http://libanculus-sharp.googlecode.com/files/${P}.tar.bz2"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~x86 ~amd64"
|
|
IUSE=""
|
|
|
|
DEPEND=">=dev-lang/mono-1.2.3
|
|
>=dev-dotnet/gtk-sharp-2.8.0"
|
|
RDEPEND="${DEPEND}"
|
|
|
|
src_unpack() {
|
|
unpack ${A}
|
|
cd "${S}"
|
|
eautoreconf
|
|
}
|
|
|
|
src_install() {
|
|
make DESTDIR="${D}" install || die "install failed"
|
|
}
|
|
|