summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHans de Graaff <graaff@gentoo.org>2011-01-23 11:10:04 +0000
committerHans de Graaff <graaff@gentoo.org>2011-01-23 11:10:04 +0000
commitf041069599f7fa7f19c8668a1658eef731361ec8 (patch)
treeea0bfaea846a2f20b370f9fda2dc46e346756840 /dev-ruby/ruby-gd
parentFix compilation on PPC Darwin hosts (diff)
downloadgentoo-2-f041069599f7fa7f19c8668a1658eef731361ec8.tar.gz
gentoo-2-f041069599f7fa7f19c8668a1658eef731361ec8.tar.bz2
gentoo-2-f041069599f7fa7f19c8668a1658eef731361ec8.zip
Remove old version.
(Portage version: 2.1.9.25/cvs/Linux x86_64)
Diffstat (limited to 'dev-ruby/ruby-gd')
-rw-r--r--dev-ruby/ruby-gd/ChangeLog5
-rw-r--r--dev-ruby/ruby-gd/ruby-gd-0.7.4-r1.ebuild60
2 files changed, 4 insertions, 61 deletions
diff --git a/dev-ruby/ruby-gd/ChangeLog b/dev-ruby/ruby-gd/ChangeLog
index 995616364758..e012c4ab1490 100644
--- a/dev-ruby/ruby-gd/ChangeLog
+++ b/dev-ruby/ruby-gd/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for dev-ruby/ruby-gd
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gd/ChangeLog,v 1.27 2011/01/23 11:02:10 xarthisius Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gd/ChangeLog,v 1.28 2011/01/23 11:10:03 graaff Exp $
+
+ 23 Jan 2011; Hans de Graaff <graaff@gentoo.org> -ruby-gd-0.7.4-r1.ebuild:
+ Remove old version.
23 Jan 2011; Kacper Kowalik <xarthisius@gentoo.org> ruby-gd-0.8.0.ebuild:
ppc64 stable wrt #344737
diff --git a/dev-ruby/ruby-gd/ruby-gd-0.7.4-r1.ebuild b/dev-ruby/ruby-gd/ruby-gd-0.7.4-r1.ebuild
deleted file mode 100644
index d1f07eb10ffb..000000000000
--- a/dev-ruby/ruby-gd/ruby-gd-0.7.4-r1.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-ruby/ruby-gd/ruby-gd-0.7.4-r1.ebuild,v 1.9 2010/11/08 19:53:49 graaff Exp $
-
-EAPI="2"
-
-inherit ruby
-USE_RUBY="ruby18"
-
-MY_P="${P/gd/GD}"
-S="${WORKDIR}/${MY_P}"
-
-DESCRIPTION="ruby-gd: an interface to Boutell GD library"
-HOMEPAGE="http://tam.0xfa.com/ruby-gd/"
-SRC_URI="http://tam.0xfa.com/ruby-gd/${MY_P}-1.tar.gz"
-PATCHES=( "${FILESDIR}/ruby-gd-0.7.4-fix-interlace.patch" )
-
-LICENSE="Ruby"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 ~ppc ppc64 x86"
-IUSE="jpeg truetype X"
-
-DEPEND="
- >=media-libs/gd-2.0[png]
- jpeg? ( virtual/jpeg )
- truetype? ( media-libs/freetype )
- X? ( x11-libs/libX11 )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
- local myconf="${myconf} --enable-gd2_0 --with-xpm"
-
- if use X; then
- myconf="${myconf} --with-xpm"
- fi
-
- if use jpeg; then
- myconf="${myconf} --with-jpeg"
- fi
-
- if use truetype; then
- myconf="${myconf} --with-ttf --with-freetype"
- fi
-
- ruby extconf.rb ${myconf} || die
-}
-
-# don't use the one from ruby.eclass
-src_compile() {
- default
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die
-
- dodoc Changes TODO readme.* doc/manual.rd doc/INSTALL.* || die
- dohtml doc/manual.html doc/manual_index.html
- insinto /usr/share/doc/${PF}/sample
- doins sample/*
-}