summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Sterrett <mr_bones_@gentoo.org>2008-02-10 08:34:13 +0000
committerMichael Sterrett <mr_bones_@gentoo.org>2008-02-10 08:34:13 +0000
commitb0150ad57b0a7173ecc43c4c3c135a378fa725b8 (patch)
treec0984789135b0d2253f5e1dc4e7fe52db82333ee /media-libs
parentstaable for x86 (diff)
downloadgentoo-2-b0150ad57b0a7173ecc43c4c3c135a378fa725b8.tar.gz
gentoo-2-b0150ad57b0a7173ecc43c4c3c135a378fa725b8.tar.bz2
gentoo-2-b0150ad57b0a7173ecc43c4c3c135a378fa725b8.zip
old
(Portage version: 2.1.3.19)
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/jpgalleg/jpgalleg-1.1.ebuild43
1 files changed, 0 insertions, 43 deletions
diff --git a/media-libs/jpgalleg/jpgalleg-1.1.ebuild b/media-libs/jpgalleg/jpgalleg-1.1.ebuild
deleted file mode 100644
index 7436d9233f1c..000000000000
--- a/media-libs/jpgalleg/jpgalleg-1.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/jpgalleg/jpgalleg-1.1.ebuild,v 1.6 2004/06/24 23:04:21 agriffis Exp $
-
-DESCRIPTION="The jpeg loading routines are able to load almost any JPG image file with Allegro."
-HOMEPAGE="http://orbflux.com/jpgalleg/"
-SRC_URI="http://orbflux.com/jpgalleg/${PN}.zip
- http://www.dribin.org/dave/game_launcher/jpgal11b.zip"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="x86"
-IUSE=""
-DEPEND=">=media-libs/allegro-4.0.0
- >=app-arch/unzip-5.50"
-RDEPEND="${DEPEND}"
-S="${WORKDIR}"
-
-src_compile() {
- mv jpgal11b.pat jpgal11b.pat_orig
- sed s/'jpgal11\/'/''/ jpgal11b.pat_orig > jpgal11b.pat
- patch -p0 <jpgal11b.pat
- mv jpeg.c jpeg.c_orig
- sed s/'allegro\/aintern\.h'/'allegro\/internal\/aintern.h'/ jpeg.c_orig > jpeg.c
- emake -f makefile.dj libjpgal.a || die
-
-}
-
-src_install() {
- cd ${S}/
- dodir /usr/include
- dodir /usr/lib
-
- insinto /usr/include
- doins jpgalleg.h
-
- insinto /usr/lib
- doins libjpgal.a
-
- dodoc README
-
- insinto /usr/share/doc/${P}/examples
- doins * # maybe not a good idea but it's not really a 'package'
-}