diff options
-rw-r--r-- | eclass/gtk-sharp-component.eclass | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/eclass/gtk-sharp-component.eclass b/eclass/gtk-sharp-component.eclass index 085cfdc6bde3..c5830d35371d 100644 --- a/eclass/gtk-sharp-component.eclass +++ b/eclass/gtk-sharp-component.eclass @@ -1,6 +1,6 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-component.eclass,v 1.13 2005/05/19 16:45:49 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/eclass/gtk-sharp-component.eclass,v 1.14 2005/05/20 19:51:27 latexer Exp $ # Author : Peter Johanson <latexer@gentoo.org> # Based off of original work in gst-plugins.eclass by <foser@gentoo.org> @@ -15,7 +15,7 @@ LICENSE="LGPL-2" HOMEPAGE="http://gtk-sharp.sourceforge.net/" LICENSE="LGPL-2.1" -( [ ${PV} == "1.9.3.1" ] || [ ${PV:0:1} == "2" ] ) \ +( [ ${PV} == "1.9.3.1" ] || [ ${PV} == "1.9.5" ] || [ ${PV:0:1} == "2" ] ) \ && SOURCE_SERVER="http://www.go-mono.com/sources/gtk-sharp-2.0/" \ || SOURCE_SERVER="mirror://sourceforge/gtk-sharp/" @@ -79,6 +79,7 @@ gtk-sharp-component_fix_makefiles() { # Changes specific to 1.9.3 if [ "${PV:0:5}" == "1.9.3" ] || \ + [ "${PV:0:5}" == "1.9.5" ] || \ [ "${PV:0:3}" == "2.5" ] ; then sed -i -e "s:\$(API) \$(top_builddir)/parser/gapi-fixup.exe:\$(API):" \ -e "s:\$(API) \$(top_builddir)/generator/gapi_codegen.exe:\$(API):" \ |