summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGilles Dartiguelongue <eva@gentoo.org>2009-11-23 21:41:57 +0000
committerGilles Dartiguelongue <eva@gentoo.org>2009-11-23 21:41:57 +0000
commitc2f9f71ef54f06d993b34651c0198dd4500edfd5 (patch)
tree0ed40eebdce170d6d0fc079a87951259878a7f78 /dev-dotnet/galago-sharp
parentarm/x86 stable, bug #292314 (diff)
downloadgentoo-2-c2f9f71ef54f06d993b34651c0198dd4500edfd5.tar.gz
gentoo-2-c2f9f71ef54f06d993b34651c0198dd4500edfd5.tar.bz2
gentoo-2-c2f9f71ef54f06d993b34651c0198dd4500edfd5.zip
Clean up old revision, bug #285760 and bug #292252.
(Portage version: 2.2_rc51/cvs/Linux x86_64)
Diffstat (limited to 'dev-dotnet/galago-sharp')
-rw-r--r--dev-dotnet/galago-sharp/ChangeLog6
-rw-r--r--dev-dotnet/galago-sharp/galago-sharp-0.5.0.ebuild54
2 files changed, 5 insertions, 55 deletions
diff --git a/dev-dotnet/galago-sharp/ChangeLog b/dev-dotnet/galago-sharp/ChangeLog
index 28a3c42c676b..53bba50fa05b 100644
--- a/dev-dotnet/galago-sharp/ChangeLog
+++ b/dev-dotnet/galago-sharp/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for dev-dotnet/galago-sharp
# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/galago-sharp/ChangeLog,v 1.20 2009/11/21 18:51:59 nixnut Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/galago-sharp/ChangeLog,v 1.21 2009/11/23 21:41:57 eva Exp $
+
+ 23 Nov 2009; Gilles Dartiguelongue <eva@gentoo.org>
+ -galago-sharp-0.5.0.ebuild:
+ Clean up old revision, bug #285760 and bug #292252.
21 Nov 2009; nixnut <nixnut@gentoo.org> galago-sharp-0.5.0-r1.ebuild:
ppc stable #292273
diff --git a/dev-dotnet/galago-sharp/galago-sharp-0.5.0.ebuild b/dev-dotnet/galago-sharp/galago-sharp-0.5.0.ebuild
deleted file mode 100644
index cb74d7a69a89..000000000000
--- a/dev-dotnet/galago-sharp/galago-sharp-0.5.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/galago-sharp/galago-sharp-0.5.0.ebuild,v 1.9 2009/03/20 03:37:47 jmbsvicetto Exp $
-
-inherit eutils mono autotools
-
-DESCRIPTION="Mono bindings to Galago"
-HOMEPAGE="http://galago-project.org"
-SRC_URI="http://galago-project.org/files/releases/source/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86"
-IUSE=""
-
-RDEPEND=">=dev-lang/mono-1.0
- >=sys-apps/dbus-0.36
- =dev-dotnet/gtk-sharp-2*
- >=dev-libs/libgalago-0.5.0"
-DEPEND="${RDEPEND}
- >=dev-util/pkgconfig-0.9"
-
-pkg_setup() {
- if [[ -z $(best_version '>=sys-apps/dbus-0.90') ]] ; then
- if ! built_with_use 'sys-apps/dbus' mono ; then
- eerror "Please build dbus with mono support"
- die "dbus without mono support detected"
- fi
- fi
-}
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
-
- # Hard enable/disable tests
- epatch "${FILESDIR}/${PN}-0.5.0-tests.patch"
-
- # Nasty hack to prevent building of the tests
- sed -i -e 's/ tests//' "${S}/Makefile.am"
-
- einfo "Rebuilding the build environment, this may take a few minutes..."
- eautoreconf
-}
-
-src_compile() {
- econf --disable-tests || die "configure failed"
- emake || die "make failed"
-}
-
-src_install() {
- make DESTDIR="${D}" install || die "install failed"
- dodoc AUTHORS ChangeLog NEWS README
-}