38 lines
842 B
Bash
38 lines
842 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/dev-util/monodevelop-debugger-gdb/monodevelop-debugger-gdb-2.6.ebuild,v 1.4 2012/05/05 02:18:58 jdhore Exp $
|
|
|
|
EAPI="4"
|
|
|
|
inherit mono multilib versionator
|
|
|
|
DESCRIPTION="GDB Extension for MonoDevelop"
|
|
HOMEPAGE="http://www.monodevelop.com/"
|
|
SRC_URI="http://download.mono-project.com/sources/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 x86"
|
|
IUSE="debug"
|
|
|
|
RDEPEND=">=dev-lang/mono-2.4
|
|
=dev-util/monodevelop-$(get_version_component_range 1-2)*
|
|
sys-devel/gdb"
|
|
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig"
|
|
|
|
src_configure() {
|
|
./configure \
|
|
--prefix=/usr \
|
|
|| die "configure failed"
|
|
}
|
|
|
|
src_compile() {
|
|
emake -j1
|
|
}
|
|
|
|
src_install() {
|
|
emake -j1 DESTDIR="${D}" install
|
|
mono_multilib_comply
|
|
}
|