summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-08-20 03:50:24 +0000
committerMike Frysinger <vapier@gentoo.org>2005-08-20 03:50:24 +0000
commitd514b337aa5dbc37f708f5a57d2bfe149053b005 (patch)
tree0fc296813283e618068d023ff5d40e242921adb0 /media-libs/gd
parentBefore starting sshd, sanity check the config file #101893 by Eric Brown. (diff)
downloadgentoo-2-d514b337aa5dbc37f708f5a57d2bfe149053b005.tar.gz
gentoo-2-d514b337aa5dbc37f708f5a57d2bfe149053b005.tar.bz2
gentoo-2-d514b337aa5dbc37f708f5a57d2bfe149053b005.zip
old
Diffstat (limited to 'media-libs/gd')
-rw-r--r--media-libs/gd/files/digest-gd-2.0.281
-rw-r--r--media-libs/gd/gd-2.0.28.ebuild41
2 files changed, 0 insertions, 42 deletions
diff --git a/media-libs/gd/files/digest-gd-2.0.28 b/media-libs/gd/files/digest-gd-2.0.28
deleted file mode 100644
index b1a39c5eb9fe..000000000000
--- a/media-libs/gd/files/digest-gd-2.0.28
+++ /dev/null
@@ -1 +0,0 @@
-MD5 14bf0b840b309ae8a29934a7a0743fd3 gd-2.0.28.tar.gz 568797
diff --git a/media-libs/gd/gd-2.0.28.ebuild b/media-libs/gd/gd-2.0.28.ebuild
deleted file mode 100644
index ac7f797f9494..000000000000
--- a/media-libs/gd/gd-2.0.28.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/gd/gd-2.0.28.ebuild,v 1.6 2005/02/10 01:50:35 j4rg0n Exp $
-
-inherit gnuconfig
-
-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 sparc x86 ppc-macos"
-IUSE="jpeg png X truetype"
-
-DEPEND="jpeg? ( >=media-libs/jpeg-6b )
- png? ( >=media-libs/libpng-1.2.5 sys-libs/zlib )
- truetype? ( >=media-libs/freetype-2.1.5 )
- X? ( virtual/x11 )"
-
-src_unpack() {
- unpack ${A}
- cd ${S}
- gnuconfig_update
-}
-
-src_compile() {
- econf \
- `use_with png` \
- `use_with truetype freetype` \
- `use_with jpeg` \
- `use_with X xpm` \
- || die
- emake || die
-}
-
-src_install() {
- make DESTDIR=${D} install || die
- dodoc INSTALL README*
- dohtml -r ./
-}