summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetteri Räty <betelgeuse@gentoo.org>2007-04-09 00:43:12 +0000
committerPetteri Räty <betelgeuse@gentoo.org>2007-04-09 00:43:12 +0000
commitebf4cc7bf3c98a4100e680a3fbfcf717a00fdcd2 (patch)
tree97eeabbb327c1c6e0a63a658ba218da679b5f5fc /media-gfx/k3d
parentStable on x86. Bug #173793. (diff)
downloadgentoo-2-ebf4cc7bf3c98a4100e680a3fbfcf717a00fdcd2.tar.gz
gentoo-2-ebf4cc7bf3c98a4100e680a3fbfcf717a00fdcd2.tar.bz2
gentoo-2-ebf4cc7bf3c98a4100e680a3fbfcf717a00fdcd2.zip
Removed old ebuild with broken autotools handling for bug #160014.
(Portage version: 2.1.2.3)
Diffstat (limited to 'media-gfx/k3d')
-rw-r--r--media-gfx/k3d/ChangeLog5
-rw-r--r--media-gfx/k3d/files/digest-k3d-0.4.5.03
-rw-r--r--media-gfx/k3d/k3d-0.4.5.0.ebuild73
3 files changed, 4 insertions, 77 deletions
diff --git a/media-gfx/k3d/ChangeLog b/media-gfx/k3d/ChangeLog
index f5def63eb9db..a95db8f6dc58 100644
--- a/media-gfx/k3d/ChangeLog
+++ b/media-gfx/k3d/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for media-gfx/k3d
# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/k3d/ChangeLog,v 1.31 2007/01/04 23:07:18 beandog Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-gfx/k3d/ChangeLog,v 1.32 2007/04/09 00:43:12 betelgeuse Exp $
+
+ 09 Apr 2007; Petteri Räty <betelgeuse@gentoo.org> -k3d-0.4.5.0.ebuild:
+ Removed old ebuild with broken autotools handling for bug #160014.
04 Jan 2007; Steve Dibb <beandog@gentoo.org> k3d-0.4.5.0.ebuild,
k3d-0.5.0.37-r1.ebuild, k3d-0.6.2.0.ebuild:
diff --git a/media-gfx/k3d/files/digest-k3d-0.4.5.0 b/media-gfx/k3d/files/digest-k3d-0.4.5.0
deleted file mode 100644
index 5ae5fbf0cade..000000000000
--- a/media-gfx/k3d/files/digest-k3d-0.4.5.0
+++ /dev/null
@@ -1,3 +0,0 @@
-MD5 dfe46f3cfb43159bd5bfcc28ca843cda k3d-0.4.5.0-2.tar.bz2 4379421
-RMD160 0bd1d92b64974aa3a5feba1833adc3f4717161b0 k3d-0.4.5.0-2.tar.bz2 4379421
-SHA256 e9602c48286cedffc09a1b691ae2070af831ac910604cf7d94e056e901dd4ecd k3d-0.4.5.0-2.tar.bz2 4379421
diff --git a/media-gfx/k3d/k3d-0.4.5.0.ebuild b/media-gfx/k3d/k3d-0.4.5.0.ebuild
deleted file mode 100644
index 28d7f951801c..000000000000
--- a/media-gfx/k3d/k3d-0.4.5.0.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-gfx/k3d/k3d-0.4.5.0.ebuild,v 1.2 2007/01/04 23:07:18 beandog Exp $
-
-inherit eutils
-
-MY_P="${P}-2"
-IUSE="truetype doc python ruby"
-
-DESCRIPTION="K-3D is a free 3D modeling, animation, and rendering system."
-HOMEPAGE="http://www.k-3d.org/"
-SRC_URI="mirror://sourceforge/k3d/${MY_P}.tar.bz2"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~sparc ~ppc"
-
-#virtual/x11
-DEPEND="
- virtual/opengl
- virtual/glu
- >=dev-libs/glib-2.2.1
- =x11-libs/gtk+-1.2*
- =dev-libs/libsigc++-1.0*
- >=media-libs/netpbm-10
- media-libs/plib
- media-gfx/imagemagick
- truetype? ( >=media-libs/freetype-2 )
- doc? ( app-text/xmlto )
- python? ( >=dev-lang/python-2.3 )
- " ##ruby support deprecated ruby? ( virtual/ruby )
-
-S="${WORKDIR}/${MY_P}"
-
-src_unpack() {
- unpack ${A}
- cd "${S}"
- libtoolize --force --copy --automake
- aclocal
- automake --add-missing
- autoconf
-}
-
-src_compile(){
- local myconf="--with-plib --without-graphviz"
-
- use truetype \
- && myconf="${myconf} --with-freetype" \
- || myconf="${myconf} --without-freetype"
-
- use doc \
- && myconf="${myconf} --with-docbook" \
- || myconf="${myconf} --without-docbook"
-
- use python \
- && myconf="${myconf} --with-python" \
- || myconf="${myconf} --without-python"
-
-# use ruby \
-# && myconf="${myconf} --with-ruby=`ruby -rrbconfig -e 'puts Config::CONFIG["archdir"]'`" \
-# || myconf="${myconf} --without-ruby"
-
-
- econf "CXXFLAGS=${CXXFLAGS}" ${myconf} \
- --without-new-pnmtotiff || die
- emake || die
-
-}
-
-src_install() {
- einstall || die
- dodoc AUTHORS NEWS README TODO
-}