summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'media-libs/gd/gd-2.0.32.ebuild')
-rw-r--r--media-libs/gd/gd-2.0.32.ebuild37
1 files changed, 0 insertions, 37 deletions
diff --git a/media-libs/gd/gd-2.0.32.ebuild b/media-libs/gd/gd-2.0.32.ebuild
deleted file mode 100644
index fc33b1081d75..000000000000
--- a/media-libs/gd/gd-2.0.32.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/gd-2.0.32.ebuild,v 1.9 2007/02/15 21:37:58 grobian Exp $
-
-inherit eutils
-
-DESCRIPTION="A graphics library for fast image creation"
-HOMEPAGE="http://www.boutell.com/gd/"
-SRC_URI="http://www.boutell.com/gd/http/${P}.tar.gz"
-
-LICENSE="|| ( as-is BSD )"
-SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 s390 sh sparc x86"
-IUSE="fontconfig jpeg png truetype xpm"
-
-DEPEND="fontconfig? ( media-libs/fontconfig )
- jpeg? ( >=media-libs/jpeg-6b )
- png? ( >=media-libs/libpng-1.2.5 sys-libs/zlib )
- truetype? ( >=media-libs/freetype-2.1.5 )
- xpm? ( || ( ( x11-libs/libXpm x11-libs/libXt ) virtual/x11 ) )"
-
-src_compile() {
- econf \
- $(use_with fontconfig) \
- $(use_with png) \
- $(use_with truetype freetype) \
- $(use_with jpeg) \
- $(use_with xpm) \
- || die
- emake || die
-}
-
-src_install() {
- make DESTDIR="${D}" install || die
- dodoc INSTALL README*
- dohtml -r ./
-}