diff options
author | Leonardo Boshell <leonardop@gentoo.org> | 2005-09-26 23:33:58 +0000 |
---|---|---|
committer | Leonardo Boshell <leonardop@gentoo.org> | 2005-09-26 23:33:58 +0000 |
commit | df7b5f23458994c60290fa48f1fceed38484fec0 (patch) | |
tree | 8e2bbce90ceae2c62b311dcac19381a5521d92fa /app-text/gtkspell | |
parent | Moved get_bmake function here. (diff) | |
download | gentoo-2-df7b5f23458994c60290fa48f1fceed38484fec0.tar.gz gentoo-2-df7b5f23458994c60290fa48f1fceed38484fec0.tar.bz2 gentoo-2-df7b5f23458994c60290fa48f1fceed38484fec0.zip |
Removing old ebuilds.
(Portage version: 2.0.52-r1)
Diffstat (limited to 'app-text/gtkspell')
-rw-r--r-- | app-text/gtkspell/files/digest-gtkspell-2.0.2 | 1 | ||||
-rw-r--r-- | app-text/gtkspell/files/digest-gtkspell-2.0.4 | 1 | ||||
-rw-r--r-- | app-text/gtkspell/gtkspell-2.0.2.ebuild | 26 | ||||
-rw-r--r-- | app-text/gtkspell/gtkspell-2.0.4.ebuild | 46 |
4 files changed, 0 insertions, 74 deletions
diff --git a/app-text/gtkspell/files/digest-gtkspell-2.0.2 b/app-text/gtkspell/files/digest-gtkspell-2.0.2 deleted file mode 100644 index f9167ed2b810..000000000000 --- a/app-text/gtkspell/files/digest-gtkspell-2.0.2 +++ /dev/null @@ -1 +0,0 @@ -MD5 385daba9bebfdc7fdbdf524e07deb920 gtkspell-2.0.2.tar.gz 189818 diff --git a/app-text/gtkspell/files/digest-gtkspell-2.0.4 b/app-text/gtkspell/files/digest-gtkspell-2.0.4 deleted file mode 100644 index d708aca87daf..000000000000 --- a/app-text/gtkspell/files/digest-gtkspell-2.0.4 +++ /dev/null @@ -1 +0,0 @@ -MD5 4ded985b8eefdf9ac6fbf79cad69ccbd gtkspell-2.0.4.tar.gz 197288 diff --git a/app-text/gtkspell/gtkspell-2.0.2.ebuild b/app-text/gtkspell/gtkspell-2.0.2.ebuild deleted file mode 100644 index 74ed976f689b..000000000000 --- a/app-text/gtkspell/gtkspell-2.0.2.ebuild +++ /dev/null @@ -1,26 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-2.0.2.ebuild,v 1.13 2005/01/01 16:18:02 eradicator Exp $ - -DESCRIPTION="spell library for GTK2" -HOMEPAGE="http://gtkspell.sourceforge.net/" -SRC_URI="http://gtkspell.sourceforge.net/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 sparc ~ppc" -IUSE="nls" - -RDEPEND=">=dev-libs/glib-2 - >=x11-libs/gtk+-2 - virtual/aspell-dict" - -src_compile() { - econf `use_enable nls` || die - emake || die "compile failure" -} - -src_install() { - einstall || die - dodoc AUTHORS ChangeLog NEWS README -} diff --git a/app-text/gtkspell/gtkspell-2.0.4.ebuild b/app-text/gtkspell/gtkspell-2.0.4.ebuild deleted file mode 100644 index e5e65d8ea8ae..000000000000 --- a/app-text/gtkspell/gtkspell-2.0.4.ebuild +++ /dev/null @@ -1,46 +0,0 @@ -# Copyright 1999-2005 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/gtkspell/gtkspell-2.0.4.ebuild,v 1.17 2005/01/01 16:18:02 eradicator Exp $ - -inherit libtool eutils - -DESCRIPTION="spell library for GTK2" -HOMEPAGE="http://gtkspell.sourceforge.net/" -SRC_URI="http://${PN}.sourceforge.net/download/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="x86 sparc ppc alpha hppa amd64 ia64" -IUSE="doc" - -DEPEND=">=x11-libs/gtk+-2 - virtual/aspell-dict - doc? ( >=dev-util/gtk-doc-0.6 )" - -src_unpack() { - unpack ${A} - - # fix the config script's gtkdoc check (bug #16997) - cd ${S} - libtoolize --copy --force # See bug #73563, comment #9 - sed -i "s:GTKDOC=true::" configure - - # workaround missing docbook 4.2 xml dtd in /etc/xml/docbook - epatch ${FILESDIR}/${P}-docbookx.patch -} - -src_compile() { - local myconf - - use doc \ - && myconf="--enable-gtk-doc" \ - || myconf="--disable-gtk-doc" - - econf ${myconf} || die - emake || die "compile failure" -} - -src_install() { - einstall || die - dodoc AUTHORS ChangeLog NEWS README -} |