summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSeemant Kulleen <seemant@gentoo.org>2002-07-07 03:16:17 +0000
committerSeemant Kulleen <seemant@gentoo.org>2002-07-07 03:16:17 +0000
commitae6abfd4e6ec2bcfa7db0d9ce23ab01d66bb00f2 (patch)
treeee7f19b610ac8eb5ae6b242b791b2f1bdf4199b0 /media-libs
parentdont libtoolize (diff)
downloadhistorical-ae6abfd4e6ec2bcfa7db0d9ce23ab01d66bb00f2.tar.gz
historical-ae6abfd4e6ec2bcfa7db0d9ce23ab01d66bb00f2.tar.bz2
historical-ae6abfd4e6ec2bcfa7db0d9ce23ab01d66bb00f2.zip
version bump
Diffstat (limited to 'media-libs')
-rw-r--r--media-libs/allegro/ChangeLog9
-rw-r--r--media-libs/allegro/allegro-4.0.1.ebuild102
-rw-r--r--media-libs/allegro/allegro-4.0.2.ebuild (renamed from media-libs/allegro/allegro-4.0.1-r1.ebuild)50
-rw-r--r--media-libs/allegro/files/digest-allegro-4.0.11
-rw-r--r--media-libs/allegro/files/digest-allegro-4.0.1-r11
-rw-r--r--media-libs/allegro/files/digest-allegro-4.0.21
6 files changed, 49 insertions, 115 deletions
diff --git a/media-libs/allegro/ChangeLog b/media-libs/allegro/ChangeLog
index 0859b11e94ca..8532e3d2224c 100644
--- a/media-libs/allegro/ChangeLog
+++ b/media-libs/allegro/ChangeLog
@@ -1,6 +1,13 @@
# ChangeLog for media-libs/allegro
# Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.4 2002/05/13 06:09:54 mkennedy Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/ChangeLog,v 1.5 2002/07/07 03:16:17 seemant Exp $
+
+*allegro-4.0.2 (06 Jul 2002)
+
+ 06 Jul 2002; Seemant Kulleen <seemant@gentoo.org> allegro-4.0.2.ebuild
+ files/digest-allegro-4.0.2 :
+
+ Version bump.
*allegro-4.0.1 (30 Apr 2002)
diff --git a/media-libs/allegro/allegro-4.0.1.ebuild b/media-libs/allegro/allegro-4.0.1.ebuild
deleted file mode 100644
index 74c99229cf35..000000000000
--- a/media-libs/allegro/allegro-4.0.1.ebuild
+++ /dev/null
@@ -1,102 +0,0 @@
-# Copyright 1999-2002 Gentoo Technologies, Inc.
-# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Dan Armak <danarmak@gantoo.org>
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-4.0.1.ebuild,v 1.3 2002/05/27 17:27:38 drobbins Exp $
-
-S=${WORKDIR}/${P}
-DESCRIPTION="Allegro is a cross-platform multimedia library"
-SRC_URI="mirror://sourceforge/alleg/${P}.tar.gz"
-HOMEPAGE="http://alleg.sourceforge.net/"
-
-DEPEND="X? ( virtual/x11 )"
-
-src_compile() {
-
- confopts="--infodir=/usr/share/info \
- --mandir=/usr/share/man \
- --prefix=/usr \
- --host=${CHOST}"
-
- # Always enable Linux console support and accompanying drivers
- confopts="${confopts} --enable-linux --enable-vga"
-
- # if USE static defined, use static library as default to link with
- use static \
- && confopts="${confopts} --enable-staticprog --enable-static"
-
- # Pentium optimizations
- if [ ${CHOST} = "i586-pc-linux-gnu" -o ${CHOST} = "i686-pc-linux-gnu" ]
- then
- confopts="${confopts} --enable-pentiumopts"
- fi
-
- # Use MMX instructions
- use mmx \
- && confopts="${confopts} --enable-mmx" \
- || confopts="${confopts} --enable-mmx=no"
-
- # Have OSS support
- use oss \
- && confopts="${confopts} --enable-ossdigi --enable-ossmidi" \
- || confopts="${confopts} --disable-ossdigi --disable-ossmidi"
-
- # Have ALSA support
- use alsa \
- && confopts="${confopts} --enable-alsadigi --enable-alsamidi" \
- || confopts="${confopts} --disable-alsadigi --disable-alsamidi"
-
- # Have ESD support
- use esd \
- && confopts="${confopts} --enable-esddigi" \
- || confopts="${confopts} --disable-esddigi"
-
- # Have X11 support
- use X \
- && confopts="${confopts} \
- --with-x \
- --enable-xwin-shm \
- --enable-xwin-vidmode \
- --enable-xwin-dga \
- --enable-xwin-dga2" \
- || confopts="${confopts} --without-x \
- --disable-xwin-shm \
- --disable-xwin-vidmode \
- --disable-xwin-dga \
- --disable-xwin-dga2"
-
- # Have SVGALib support
- use svga \
- && confopts="${confopts} --enable-svgalib" \
- || confopts="${confopts} --disable-svgalib"
-
- # Have fbcon support
- use fbcon \
- && confopts="${confopts} --enable-fbcon" \
- || confopts="${confopts} --disable-fbcon"
-
- # --------------
-
- ./configure \
- ${confopts} || die
-
- # emake doesn't work
- make || die
-
- make docs-ps docs-dvi || die
-
-}
-
-src_install () {
-
- make \
- prefix=${D}/usr \
- infodir=${D}/usr/share/info \
- mandir=${D}/usr/share/man \
- install install-gzipped-man install-gzipped-info || die
-
- cd ${S}
- # Different format versions of the Allegro documentation
- dohtml allegro.dvi allegro.ps
- dodoc allegro.txt
-
-}
diff --git a/media-libs/allegro/allegro-4.0.1-r1.ebuild b/media-libs/allegro/allegro-4.0.2.ebuild
index c67d9730f14f..270f6b8f1c8b 100644
--- a/media-libs/allegro/allegro-4.0.1-r1.ebuild
+++ b/media-libs/allegro/allegro-4.0.2.ebuild
@@ -1,19 +1,30 @@
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
-# Author Dan Armak <danarmak@gantoo.org>
-# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-4.0.1-r1.ebuild,v 1.2 2002/05/27 17:27:38 drobbins Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/allegro/allegro-4.0.2.ebuild,v 1.1 2002/07/07 03:16:17 seemant Exp $
+
+LICENSE="Allegro"
S=${WORKDIR}/${P}
DESCRIPTION="Allegro is a cross-platform multimedia library"
SRC_URI="mirror://sourceforge/alleg/${P}.tar.gz"
HOMEPAGE="http://alleg.sourceforge.net/"
-DEPEND="X? ( virtual/x11 )
+
+SLOT="0"
+KEYWORDS="x86"
+
+
+RDEPEND="X? ( virtual/x11 )
+ alsa? ( media-libs/alsa-lib )
+ esd? ( media-sound/esound )
+ svga? ( media-libs/svgalib )"
+
+DEPEND="${RDEPEND}
tetex? ( app-text/tetex )"
src_compile() {
- use tetex && einfo "TETEX baby!!"
+ use tetex
# Always enable Linux console support and accompanying drivers
confopts="${confopts} --enable-linux --enable-vga"
@@ -78,11 +89,15 @@ src_compile() {
econf ${confopts} || die
# emake doesn't work
- make || die
+ make CFLAGS="${CFLAGS}" || die
- use tetex && ( \
+ if use tetex;
+ then
+ addwrite "/var/lib/texmf"
+ addwrite "/usr/share/texmf"
+ addwrite "/var/cache/fonts"
make docs-dvi docs-ps || die
- )
+ fi
}
@@ -94,8 +109,23 @@ src_install () {
mandir=${D}/usr/share/man \
install install-gzipped-man install-gzipped-info || die
- cd ${S}
# Different format versions of the Allegro documentation
- dodoc allegro.txt
- use tetex && dohtml allegro.dvi allegro.ps
+
+ dodoc AUTHORS CHANGES THANKS readme.txt todo.txt
+
+ if use tetex;
+ then
+ dodoc docs/allegro.dvi docs/allegro.ps
+ fi
+
+ 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/allegro/files/digest-allegro-4.0.1 b/media-libs/allegro/files/digest-allegro-4.0.1
deleted file mode 100644
index d431fa1df4e3..000000000000
--- a/media-libs/allegro/files/digest-allegro-4.0.1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 224296524ffafc8369f3b29f5b73cdcb allegro-4.0.1.tar.gz 2391111
diff --git a/media-libs/allegro/files/digest-allegro-4.0.1-r1 b/media-libs/allegro/files/digest-allegro-4.0.1-r1
deleted file mode 100644
index d431fa1df4e3..000000000000
--- a/media-libs/allegro/files/digest-allegro-4.0.1-r1
+++ /dev/null
@@ -1 +0,0 @@
-MD5 224296524ffafc8369f3b29f5b73cdcb allegro-4.0.1.tar.gz 2391111
diff --git a/media-libs/allegro/files/digest-allegro-4.0.2 b/media-libs/allegro/files/digest-allegro-4.0.2
new file mode 100644
index 000000000000..0712ede593aa
--- /dev/null
+++ b/media-libs/allegro/files/digest-allegro-4.0.2
@@ -0,0 +1 @@
+MD5 c9b610c7868d0986dfb3153ca9d12f2a allegro-4.0.2.tar.gz 2398855