summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTristan Heaven <tristan@gentoo.org>2008-05-13 12:25:49 +0000
committerTristan Heaven <tristan@gentoo.org>2008-05-13 12:25:49 +0000
commitbcbfb446a015cd16fd7afa74ae416381fa30176a (patch)
tree805507a9c7c5eb7ffe74459fc35b24da2ad34fa8 /media-libs
parentMoved into app-text category (diff)
downloadhistorical-bcbfb446a015cd16fd7afa74ae416381fa30176a.tar.gz
historical-bcbfb446a015cd16fd7afa74ae416381fa30176a.tar.bz2
historical-bcbfb446a015cd16fd7afa74ae416381fa30176a.zip
rm old
Package-Manager: portage-2.1.5_rc10
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/allegro/allegro-4.1.14.ebuild74
-rw-r--r--media-libs/allegrogl/allegrogl-0.2.4-r1.ebuild43
-rw-r--r--media-libs/allegrogl/files/allegrogl-0.2.4-agl_write_line_c.patch20
-rw-r--r--media-libs/allegrogl/files/allegrogl-0.2.4-destdir.patch65
-rw-r--r--media-libs/allegrogl/files/allegrogl-0.2.4-gcc41.patch10
-rw-r--r--media-libs/allegrogl/files/allegrogl-0.2.4-noasm.patch11
6 files changed, 0 insertions, 223 deletions
diff --git a/media-libs/allegro/allegro-4.1.14.ebuild b/media-libs/allegro/allegro-4.1.14.ebuild
deleted file mode 100644
index 54533d9e166f..000000000000
--- a/media-libs/allegro/allegro-4.1.14.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-4.1.14.ebuild,v 1.18 2008/05/12 23:24:02 nyhm Exp $
-
-IUSE="static mmx sse oss alsa esd arts X fbcon svga doc"
-
-inherit flag-o-matic
-
-DESCRIPTION="cross-platform multimedia library"
-HOMEPAGE="http://alleg.sourceforge.net/"
-SRC_URI="mirror://sourceforge/alleg/${P}.tar.gz"
-
-LICENSE="Allegro"
-SLOT="0"
-KEYWORDS="alpha ~amd64 ia64 ppc sparc ~x86"
-
-RDEPEND="alsa? ( media-libs/alsa-lib )
- esd? ( media-sound/esound )
- arts? ( kde-base/arts )
- X? (
- x11-libs/libXxf86vm
- x11-libs/libXxf86dga
- )
- svga? ( media-libs/svgalib )"
-DEPEND="${RDEPEND}
- >=sys-apps/sed-4
- X? (
- x11-proto/xextproto
- x11-proto/xf86dgaproto
- x11-proto/xf86vidmodeproto
- )"
-
-src_compile() {
- filter-flags -fPIC -fprefetch-loop-arrays
- econf \
- --enable-linux \
- --enable-vga \
- $(use_enable static) \
- $(use_enable static staticprog) \
- $(use_enable mmx) \
- $(use_enable sse) \
- $(use_enable oss ossdigi) \
- $(use_enable oss ossmidi) \
- $(use_enable alsa alsadigi) \
- $(use_enable alsa alsamidi) \
- $(use_enable esd esddigi) \
- $(use_enable arts artsdigi) \
- $(use_with X x) \
- $(use_enable X xwin-shm) \
- $(use_enable X xwin-vidmode) \
- $(use_enable X xwin-dga) \
- $(use_enable X xwin-dga2) \
- $(use_enable fbcon) \
- $(use_enable svga svgalib) \
- || die
-
- sed -i \
- -e "/CFLAGS =.*/s:$: ${CFLAGS}:" \
- makefile || die "sed makefile failed"
- emake -j1 || die # parallel fails
-}
-
-src_install() {
- addpredict /usr/share/info
- make DESTDIR="${D}" install install-gzipped-man install-gzipped-info || die
-
- # Different format versions of the Allegro documentation
- dodoc AUTHORS CHANGES THANKS readme.txt todo.txt
- use doc && dodoc examples/*
- dohtml docs/html/*
- docinto txt ; dodoc docs/txt/*.txt
- docinto rtf ; dodoc docs/rtf/*.rtf
- docinto build ; dodoc docs/build/*.txt
-}
diff --git a/media-libs/allegrogl/allegrogl-0.2.4-r1.ebuild b/media-libs/allegrogl/allegrogl-0.2.4-r1.ebuild
deleted file mode 100644
index 4b67e365418e..000000000000
--- a/media-libs/allegrogl/allegrogl-0.2.4-r1.ebuild
+++ /dev/null
@@ -1,43 +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/allegrogl/allegrogl-0.2.4-r1.ebuild,v 1.5 2007/09/18 04:38:06 mr_bones_ Exp $
-
-inherit eutils
-
-MY_PN="alleggl"
-DESCRIPTION="A library to mix OpenGL graphics with Allegro routines"
-HOMEPAGE="http://allegrogl.sourceforge.net"
-SRC_URI="mirror://sourceforge/allegrogl/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~sparc x86"
-IUSE="doc"
-
-DEPEND="virtual/opengl
- virtual/glu
- >=media-libs/allegro-4.0.0"
-
-S=${WORKDIR}/${MY_PN}
-
-src_unpack() {
- unpack ${A}
-
- cd "${S}"
- epatch \
- "${FILESDIR}"/${P}-destdir.patch \
- "${FILESDIR}"/${P}-noasm.patch \
- "${FILESDIR}"/${P}-agl_write_line_c.patch \
- "${FILESDIR}/${P}"-gcc41.patch
-}
-
-src_compile() {
- econf || die
- emake -j1 || die "emake failed"
-}
-
-src_install() {
- emake DESTDIR="${D}" install || die "emake install failed"
- dodoc *txt
- use doc && dodoc examp/*
-}
diff --git a/media-libs/allegrogl/files/allegrogl-0.2.4-agl_write_line_c.patch b/media-libs/allegrogl/files/allegrogl-0.2.4-agl_write_line_c.patch
deleted file mode 100644
index 9a58e925bdbf..000000000000
--- a/media-libs/allegrogl/files/allegrogl-0.2.4-agl_write_line_c.patch
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/scrmode.c 2004-01-02 19:34:35.000000000 +0100
-+++ /var/tmp/portage/scrmode.c 2006-01-14 18:54:58.000000000 +0100
-@@ -15,7 +15,7 @@
-
-
- /* C write/unwrite line routines -- defined in full later on */
--static unsigned long agl_write_line_c(BITMAP * bmp, int line);
-+unsigned long agl_write_line_c(BITMAP * bmp, int line);
- static void agl_unwrite_line_c(BITMAP * bmp);
-
-
-@@ -109,7 +109,7 @@
- * This routine will be called by Allegro whenever the user
- * tries to write to a line of the `__allegro_gl_memory' bitmap.
- */
--static unsigned long agl_write_line_c(BITMAP * bmp, int line)
-+unsigned long agl_write_line_c(BITMAP * bmp, int line)
- {
- switch (__allegro_gl_screen_mode) {
-
diff --git a/media-libs/allegrogl/files/allegrogl-0.2.4-destdir.patch b/media-libs/allegrogl/files/allegrogl-0.2.4-destdir.patch
deleted file mode 100644
index b05299b16c2c..000000000000
--- a/media-libs/allegrogl/files/allegrogl-0.2.4-destdir.patch
+++ /dev/null
@@ -1,65 +0,0 @@
-diff -Naur make.orig/makefile.all make/makefile.all
---- make.orig/makefile.all 2004-02-21 07:12:46.000000000 -0800
-+++ make/makefile.all 2004-10-15 02:37:05.009659749 -0700
-@@ -42,22 +42,22 @@
- install: $(LIB_PATH_U) $(HEADERS_U) $(EXT_HEADERS_U)
- ifdef UNIX_TOOLS
- define CP_INSTALL
-- $(foreach file, $(HEADERS_U), - $(INSTALLER) $(file) $(subst include,$(COMPILER_INCLUDE_DIR_U),$(file))
-+ $(foreach file, $(HEADERS_U), - $(INSTALLER) $(file) $(DESTDIR)$(subst include,$(COMPILER_INCLUDE_DIR_U),$(file))
- )
-- $(foreach file, $(EXT_HEADERS_U), - $(INSTALLER) $(file) $(subst include,$(COMPILER_INCLUDE_DIR_U),$(file))
-+ $(foreach file, $(EXT_HEADERS_U), - $(INSTALLER) $(file) $(DESTDIR)$(subst include,$(COMPILER_INCLUDE_DIR_U),$(file))
- )
- endef
- ifeq ($(wildcard $(COMPILER_INCLUDE_DIR_U)/allegrogl),)
-- mkdir -p $(COMPILER_INCLUDE_DIR_U)/allegrogl
-+ mkdir -p $(DESTDIR)$(COMPILER_INCLUDE_DIR_U)/allegrogl
- endif
- ifeq ($(wildcard $(COMPILER_INCLUDE_DIR_U)/allegrogl/GLext),)
-- mkdir -p $(COMPILER_INCLUDE_DIR_U)/allegrogl/GLext
-+ mkdir -p $(DESTDIR)$(COMPILER_INCLUDE_DIR_U)/allegrogl/GLext
- endif
- ifeq ($(wildcard $(COMPILER_LIB_DIR_U)),)
-- mkdir -p $(COMPILER_LIB_DIR_U)
-+ mkdir -p $(DESTDIR)$(COMPILER_LIB_DIR_U)
- endif
- - $(CP_INSTALL)
-- $(INSTALLER) $(LIB_PATH_U) $(subst $(LIB_DIR), $(COMPILER_LIB_DIR_U), $(LIB_PATH_U))
-+ $(INSTALLER) $(LIB_PATH_U) $(DESTDIR)$(subst $(LIB_DIR),$(COMPILER_LIB_DIR_U),$(LIB_PATH_U))
- else
- define CP_INSTALL
- $(foreach file, $(HEADERS_D), - copy /y $(file) $(subst include,$(COMPILER_INCLUDE_DIR_D),$(file))
-diff -Naur make.orig/makefile.dep make/makefile.dep
---- make.orig/makefile.dep 1969-12-31 16:00:00.000000000 -0800
-+++ make/makefile.dep 2004-10-15 02:33:19.195936613 -0700
-@@ -0,0 +1,29 @@
-+# Automatically generated by depend.sh
-+$(OBJ_DIR)/aglf.o: $(SRC_DIR)/aglf.c include/alleggl.h include/allglint.h
-+$(OBJ_DIR)/alleggl.o: $(SRC_DIR)/alleggl.c include/alleggl.h include/allglint.h
-+$(OBJ_DIR)/djgpp.o: $(SRC_DIR)/djgpp.c include/alleggl.h include/allglint.h include/glvtable.h
-+$(OBJ_DIR)/fontconv.o: $(SRC_DIR)/fontconv.c include/alleggl.h include/allglint.h
-+$(OBJ_DIR)/glext.o: $(SRC_DIR)/glext.c include/alleggl.h include/allglint.h include/allegrogl/GLext/gl_ext_api.h include/allegrogl/GLext/wgl_ext_api.h include/allegrogl/GLext/glx_ext_api.h include/GL/amesa.h include/allegrogl/GLext/gl_ext_api.h include/allegrogl/GLext/wgl_ext_api.h include/allegrogl/GLext/glx_ext_api.h include/allegrogl/GLext/gl_ext_api.h include/allegrogl/GLext/wgl_ext_api.h include/allegrogl/GLext/gl_ext_api.h include/allegrogl/GLext/glx_ext_api.h include/allegrogl/GLext/gl_ext_api.h include/allegrogl/GLext/gl_ext_api.h include/allegrogl/GLext/wgl_ext_api.h include/allegrogl/GLext/glx_ext_api.h include/allegrogl/GLext/gl_ext_list.h include/allegrogl/GLext/glx_ext_list.h include/allegrogl/GLext/wgl_ext_list.h
-+$(OBJ_DIR)/glvtable.o: $(SRC_DIR)/glvtable.c include/alleggl.h include/allglint.h include/glvtable.h
-+$(OBJ_DIR)/gui.o: $(SRC_DIR)/gui.c include/alleggl.h include/allglint.h
-+$(OBJ_DIR)/math.o: $(SRC_DIR)/math.c include/alleggl.h include/allglint.h
-+$(OBJ_DIR)/scorer.o: $(SRC_DIR)/scorer.c include/alleggl.h include/allglint.h
-+$(OBJ_DIR)/scrmode.o: $(SRC_DIR)/scrmode.c include/alleggl.h include/allglint.h include/glvtable.h
-+$(OBJ_DIR)/texture.o: $(SRC_DIR)/texture.c include/alleggl.h include/allglint.h
-+$(OBJ_DIR)/videovtb.o: $(SRC_DIR)/videovtb.c include/alleggl.h include/allglint.h include/glvtable.h
-+$(OBJ_DIR)/win.o: $(SRC_DIR)/win.c include/alleggl.h include/glvtable.h include/allglint.h
-+$(OBJ_DIR)/x.o: $(SRC_DIR)/x.c include/alleggl.h include/allglint.h include/glvtable.h
-+$(OBJ_DIR)/amesa.o: $(SRC_DIR)/amesa/amesa.c include/GL/amesa.h $(SRC_DIR)/amesa/raster.h
-+$(OBJ_DIR)/raster.o: $(SRC_DIR)/amesa/raster.c include/GL/amesa.h $(SRC_DIR)/amesa/raster.h $(SRC_DIR)/amesa/generic.h
-+$(EXAMPLE_DIR)/dialog: $(EXAMPLE_DIR)/dialog.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/dumbtest: $(EXAMPLE_DIR)/dumbtest.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/exalleg: $(EXAMPLE_DIR)/exalleg.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/exalpfnt: $(EXAMPLE_DIR)/exalpfnt.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/excamera: $(EXAMPLE_DIR)/excamera.c $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/exext: $(EXAMPLE_DIR)/exext.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/exgui: $(EXAMPLE_DIR)/exgui.c $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/exmasked: $(EXAMPLE_DIR)/exmasked.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/extext: $(EXAMPLE_DIR)/extext.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/extextur: $(EXAMPLE_DIR)/extextur.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/test: $(EXAMPLE_DIR)/test.c include/alleggl.h $(LIB_PATH_U)
-+$(EXAMPLE_DIR)/tex: $(EXAMPLE_DIR)/tex.c include/alleggl.h $(LIB_PATH_U)
diff --git a/media-libs/allegrogl/files/allegrogl-0.2.4-gcc41.patch b/media-libs/allegrogl/files/allegrogl-0.2.4-gcc41.patch
deleted file mode 100644
index 44ef57bdb90c..000000000000
--- a/media-libs/allegrogl/files/allegrogl-0.2.4-gcc41.patch
+++ /dev/null
@@ -1,10 +0,0 @@
---- include/alleggl.h.old 2006-05-28 23:25:57.000000000 +0200
-+++ include/alleggl.h 2006-05-28 23:26:15.000000000 +0200
-@@ -443,7 +443,6 @@
-
-
- extern BITMAP *allegro_gl_screen;
--extern BITMAP *__allegro_gl_memory;
-
-
- /** \name Screen update modes
diff --git a/media-libs/allegrogl/files/allegrogl-0.2.4-noasm.patch b/media-libs/allegrogl/files/allegrogl-0.2.4-noasm.patch
deleted file mode 100644
index 1df0049dad23..000000000000
--- a/media-libs/allegrogl/files/allegrogl-0.2.4-noasm.patch
+++ /dev/null
@@ -1,11 +0,0 @@
---- configure.in.old 2005-01-29 18:19:08.000000000 +0000
-+++ configure.in 2005-01-29 18:30:16.000000000 +0000
-@@ -143,7 +143,7 @@
- fi
-
-
--CPPFLAGS="`allegro-config --cflags` $CPPFLAGS"
-+CPPFLAGS="`allegro-config --cflags` $CPPFLAGS -DALLEGRO_NO_ASM"
-
-
- dnl Prepare makefile