diff options
author | Peter Johanson <latexer@gentoo.org> | 2005-05-20 19:51:27 +0000 |
---|---|---|
committer | Peter Johanson <latexer@gentoo.org> | 2005-05-20 19:51:27 +0000 |
commit | f1cf3aa7e513f9246fbfb8fb1c8ecb5be5baf853 (patch) | |
tree | 9ee8b101d7340e9cdcd8c9f98381f834be6e60fd /eclass/gtk-sharp-component.eclass | |
parent | dont install jar with a version number any longer, stable on amd64 (diff) | |
download | gentoo-2-f1cf3aa7e513f9246fbfb8fb1c8ecb5be5baf853.tar.gz gentoo-2-f1cf3aa7e513f9246fbfb8fb1c8ecb5be5baf853.tar.bz2 gentoo-2-f1cf3aa7e513f9246fbfb8fb1c8ecb5be5baf853.zip |
Add *-sharp-1.9.5 compat.
Diffstat (limited to 'eclass/gtk-sharp-component.eclass')
-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):" \ |