List Archive: gentoo-commits
flameeyes 09/11/07 16:05:49
Modified: ChangeLog
Added: galago-sharp-0.5.0-r1.ebuild
Log:
Fix bug #285760 (remove built_with_use usage, by bumping dbus dep), fix bug #292252 (fetch libgalago-0.5.0 within the ebuild and move it in the right place).
(Portage version: 2.2_rc49/cvs/Linux x86_64)
Revision Changes Path
1.18 dev-dotnet/galago-sharp/ChangeLog
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/galago-sharp/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/galago-sharp/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/galago-sharp/ChangeLog?r1=1.17&r2=1.18
Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-dotnet/galago-sharp/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog 20 Mar 2009 03:37:47 -0000 1.17
+++ ChangeLog 7 Nov 2009 16:05:48 -0000 1.18
@@ -1,6 +1,14 @@
# 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.17 2009/03/20 03:37:47 jmbsvicetto Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/galago-sharp/ChangeLog,v 1.18 2009/11/07 16:05:48 flameeyes Exp $
+
+*galago-sharp-0.5.0-r1 (07 Nov 2009)
+
+ 07 Nov 2009; Diego E. Pettenò <flameeyes@g.o>
+ +galago-sharp-0.5.0-r1.ebuild:
+ Fix bug #285760 (remove built_with_use usage, by bumping dbus dep), fix
+ bug #292252 (fetch libgalago-0.5.0 within the ebuild and move it in the
+ right place).
20 Mar 2009; Jorge Manuel B. S. Vicetto <jmbsvicetto@g.o>
metadata.xml, galago-sharp-0.5.0.ebuild:
1.1 dev-dotnet/galago-sharp/galago-sharp-0.5.0-r1.ebuild
file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/galago-sharp/galago-sharp-0.5.0-r1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/dev-dotnet/galago-sharp/galago-sharp-0.5.0-r1.ebuild?rev=1.1&content-type=text/plain
Index: galago-sharp-0.5.0-r1.ebuild
===================================================================
# 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-r1.ebuild,v 1.1 2009/11/07 16:05:48 flameeyes 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
http://galago-project.org/files/releases/source/libgalago/libgalago-${PV}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE=""
RDEPEND=">=dev-lang/mono-1.0
>=sys-apps/dbus-0.90
=dev-dotnet/gtk-sharp-2*
>=dev-libs/libgalago-0.5.0"
DEPEND="${RDEPEND}
>=dev-util/pkgconfig-0.9"
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"
sed -i -e 's:\$(GET_METHOD)::' "${S}"/sources/Makefile.am || die
mv "${WORKDIR}"/libgalago-${PV} "${S}"/sources/libgalago
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
}
|
|