diff options
author | 2005-11-21 06:46:45 +0000 | |
---|---|---|
committer | 2005-11-21 06:46:45 +0000 | |
commit | 9c3c0e666e898cabe69c690a3dcb0de0979d3d0b (patch) | |
tree | b0f4a981b8d6dc9a9c94c826658fbbd8a1ba9216 /dev-dotnet/gtk-sharp | |
parent | New upstream version. (diff) | |
download | historical-9c3c0e666e898cabe69c690a3dcb0de0979d3d0b.tar.gz historical-9c3c0e666e898cabe69c690a3dcb0de0979d3d0b.tar.bz2 historical-9c3c0e666e898cabe69c690a3dcb0de0979d3d0b.zip |
Remove older version.
Package-Manager: portage-2.0.51.22-r2
Diffstat (limited to 'dev-dotnet/gtk-sharp')
-rw-r--r-- | dev-dotnet/gtk-sharp/ChangeLog | 6 | ||||
-rw-r--r-- | dev-dotnet/gtk-sharp/files/digest-gtk-sharp-2.3.92 | 2 | ||||
-rw-r--r-- | dev-dotnet/gtk-sharp/files/digest-gtk-sharp-2.5.92 | 2 | ||||
-rw-r--r-- | dev-dotnet/gtk-sharp/gtk-sharp-2.3.92.ebuild | 91 | ||||
-rw-r--r-- | dev-dotnet/gtk-sharp/gtk-sharp-2.5.92.ebuild | 91 |
5 files changed, 5 insertions, 187 deletions
diff --git a/dev-dotnet/gtk-sharp/ChangeLog b/dev-dotnet/gtk-sharp/ChangeLog index 7b34c1663f02..65737de02326 100644 --- a/dev-dotnet/gtk-sharp/ChangeLog +++ b/dev-dotnet/gtk-sharp/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for dev-dotnet/gtk-sharp # Copyright 2002-2005 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gtk-sharp/ChangeLog,v 1.51 2005/11/21 02:54:16 latexer Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gtk-sharp/ChangeLog,v 1.52 2005/11/21 06:43:14 latexer Exp $ + + 21 Nov 2005; Peter Johanson <latexer@gentoo.org> -gtk-sharp-2.3.92.ebuild, + -gtk-sharp-2.5.92.ebuild: + Remove older version. 21 Nov 2005; Peter Johanson <latexer@gentoo.org> gtk-sharp-2.4.0.ebuild, gtk-sharp-2.6.0.ebuild: diff --git a/dev-dotnet/gtk-sharp/files/digest-gtk-sharp-2.3.92 b/dev-dotnet/gtk-sharp/files/digest-gtk-sharp-2.3.92 deleted file mode 100644 index c0864f90e0e8..000000000000 --- a/dev-dotnet/gtk-sharp/files/digest-gtk-sharp-2.3.92 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 e001420e14786e89c4e3dbb4da8408f8 gtk-sharp-2.3.92.tar.gz 2125688 -MD5 bbfac654036343921a8c340568abf544 gtk-sharp-2.3.92-configurable.diff.gz 1354 diff --git a/dev-dotnet/gtk-sharp/files/digest-gtk-sharp-2.5.92 b/dev-dotnet/gtk-sharp/files/digest-gtk-sharp-2.5.92 deleted file mode 100644 index 75906dc71ed9..000000000000 --- a/dev-dotnet/gtk-sharp/files/digest-gtk-sharp-2.5.92 +++ /dev/null @@ -1,2 +0,0 @@ -MD5 90156b3ee48fa270e7cadbae0e75b768 gtk-sharp-2.5.92.tar.gz 2135657 -MD5 a59b811287fd1853810f63a2c6b9e3be gtk-sharp-2.5.92-configurable.diff.gz 1355 diff --git a/dev-dotnet/gtk-sharp/gtk-sharp-2.3.92.ebuild b/dev-dotnet/gtk-sharp/gtk-sharp-2.3.92.ebuild deleted file mode 100644 index 1d229dd0ae87..000000000000 --- a/dev-dotnet/gtk-sharp/gtk-sharp-2.3.92.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gtk-sharp/gtk-sharp-2.3.92.ebuild,v 1.1 2005/10/16 06:54:38 latexer Exp $ - -inherit eutils mono - -DESCRIPTION="Gtk# is a C# language binding for the GTK2 toolkit and GNOME libraries" -SRC_URI="http://go-mono.com/sources/${PN}-2.0/${P}.tar.gz - mirror://gentoo/${P}-configurable.diff.gz" -HOMEPAGE="http://gtk-sharp.sourceforge.net/" - -LICENSE="LGPL-2.1" -SLOT="2" -IUSE="doc" -RESTRICT="test" - -RDEPEND=">=sys-apps/sed-4.0 - >=dev-lang/mono-1.0 - >=x11-libs/gtk+-2.4 - >=gnome-base/orbit-2.8.3" - -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -KEYWORDS="~x86 ~ppc ~amd64" - -src_unpack() { - unpack ${A} - cd ${S} - - epatch ${WORKDIR}/${P}-configurable.diff - #fixes support with pkgconfig-0.17, bug #92503 - sed -i -e 's/\<PKG_PATH\>/GTK_SHARP_PKG_PATH/g' configure.in - - # Use correct libdir in pkgconfig files - sed -i -e 's:^libdir.*:libdir=@libdir@:' \ - ${S}/*/{,GConf}/*.pc.in || die - - export WANT_AUTOMAKE="1.8" - aclocal || die - automake || die - autoconf || die - libtoolize --copy --force - - # disable building of samples (#16015) - sed -i -e "s:sample::" Makefile.in -} - -src_compile() { - - local myconf="" - # These are the same as from gtk-sharp-component.eclass - for package in art glade gnome gnomevfs gtkhtml rsvg vte - do - myconf="${myconf} --disable-${package}" - done - - econf ${myconf} || die "./configure failed" - LANG=C emake -j1 || die - - #if use doc && has_version dev-util/monodoc - #then - # cd ${S}/doc - # emake -j1 assemble || die "Failed to generate docs" - #fi -} - -src_install () { - make GACUTIL_FLAGS="/root ${D}/usr/$(get_libdir) /gacdir /usr/$(get_libdir) /package ${PN}-2.0" \ - DESTDIR=${D} install || die - - dodoc README* ChangeLog - - #if use doc && has_version dev-util/monodoc - #then - # cd ${S}/doc - # insinto $(monodoc --get-sourcesdir) - # doins gtk-sharp-docs.{tree,zip} - #fi -} - -pkg_postinst() { - if use doc && ! has_version dev-util/monodoc - then - ewarn - ewarn "Although 'doc' is in the USE flag list, gtk-sharp will" - ewarn "not install its monodoc documentation unless you have monodoc" - ewarn "installed. If you want the documentation to be available in" - ewarn "monodoc, please emerge monodoc then re-emerge gtk-sharp." - fi -} diff --git a/dev-dotnet/gtk-sharp/gtk-sharp-2.5.92.ebuild b/dev-dotnet/gtk-sharp/gtk-sharp-2.5.92.ebuild deleted file mode 100644 index 66f3113f4bf7..000000000000 --- a/dev-dotnet/gtk-sharp/gtk-sharp-2.5.92.ebuild +++ /dev/null @@ -1,91 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-dotnet/gtk-sharp/gtk-sharp-2.5.92.ebuild,v 1.1 2005/10/16 06:54:38 latexer Exp $ - -inherit eutils mono - -DESCRIPTION="Gtk# is a C# language binding for the GTK2 toolkit and GNOME libraries" -SRC_URI="http://go-mono.com/sources/${PN}-2.0/${P}.tar.gz - mirror://gentoo/${P}-configurable.diff.gz" -HOMEPAGE="http://gtk-sharp.sourceforge.net/" - -LICENSE="LGPL-2.1" -SLOT="2" -IUSE="doc" -RESTRICT="test" - -RDEPEND=">=sys-apps/sed-4.0 - >=dev-lang/mono-1.0 - >=x11-libs/gtk+-2.6 - >=gnome-base/orbit-2.8.3" - -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -KEYWORDS="~x86 ~ppc ~amd64" - -src_unpack() { - unpack ${A} - cd ${S} - - epatch ${WORKDIR}/${P}-configurable.diff - #fixes support with pkgconfig-0.17, bug #92503 - sed -i -e 's/\<PKG_PATH\>/GTK_SHARP_PKG_PATH/g' configure.in - - # Use correct libdir in pkgconfig files - sed -i -e 's:^libdir.*:libdir=@libdir@:' \ - ${S}/*/{,GConf}/*.pc.in || die - - export WANT_AUTOMAKE="1.8" - aclocal || die - automake || die - autoconf || die - libtoolize --copy --force - - # disable building of samples (#16015) - sed -i -e "s:sample::" Makefile.in -} - -src_compile() { - - local myconf="" - # These are the same as from gtk-sharp-component.eclass - for package in art glade gnome gnomevfs gtkhtml rsvg vte - do - myconf="${myconf} --disable-${package}" - done - - econf ${myconf} || die "./configure failed" - LANG=C emake -j1 || die - - #if use doc && has_version dev-util/monodoc - #then - # cd ${S}/doc - # emake -j1 assemble || die "Failed to generate docs" - #fi -} - -src_install () { - make GACUTIL_FLAGS="/root ${D}/usr/$(get_libdir) /gacdir /usr/$(get_libdir) /package ${PN}-2.0" \ - DESTDIR=${D} install || die - - dodoc README* ChangeLog - - #if use doc && has_version dev-util/monodoc - #then - # cd ${S}/doc - # insinto $(monodoc --get-sourcesdir) - # doins gtk-sharp-docs.{tree,zip} - #fi -} - -pkg_postinst() { - if use doc && ! has_version dev-util/monodoc - then - ewarn - ewarn "Although 'doc' is in the USE flag list, gtk-sharp will" - ewarn "not install its monodoc documentation unless you have monodoc" - ewarn "installed. If you want the documentation to be available in" - ewarn "monodoc, please emerge monodoc then re-emerge gtk-sharp." - fi -} |