diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-21 17:03:23 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-21 17:03:23 +0000 |
commit | 67b42b067d110697bc28eed08be81126a92be882 (patch) | |
tree | 92c6f62de0f3707d755983f57f8dfbfc0f1c9f70 /media-libs | |
parent | New version (diff) | |
download | gentoo-2-67b42b067d110697bc28eed08be81126a92be882.tar.gz gentoo-2-67b42b067d110697bc28eed08be81126a92be882.tar.bz2 gentoo-2-67b42b067d110697bc28eed08be81126a92be882.zip |
New libs for flash animations and mpeg clips
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/libflash/files/digest-libflash-0.4.10 | 1 | ||||
-rw-r--r-- | media-libs/libflash/libflash-0.4.10.ebuild | 26 | ||||
-rw-r--r-- | media-libs/libmpeg3/files/digest-libmpeg3-1.2.3 | 1 | ||||
-rw-r--r-- | media-libs/libmpeg3/libmpeg3-1.2.3.ebuild | 32 |
4 files changed, 60 insertions, 0 deletions
diff --git a/media-libs/libflash/files/digest-libflash-0.4.10 b/media-libs/libflash/files/digest-libflash-0.4.10 new file mode 100644 index 000000000000..07b325a28593 --- /dev/null +++ b/media-libs/libflash/files/digest-libflash-0.4.10 @@ -0,0 +1 @@ +MD5 8dcb1b64115f67bd0982d5e8cc842ad0 libflash-0.4.10.tar.gz diff --git a/media-libs/libflash/libflash-0.4.10.ebuild b/media-libs/libflash/libflash-0.4.10.ebuild new file mode 100644 index 000000000000..094a4c6e70dd --- /dev/null +++ b/media-libs/libflash/libflash-0.4.10.ebuild @@ -0,0 +1,26 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Your Name <your email> +# $Header: /var/cvsroot/gentoo-x86/media-libs/libflash/libflash-0.4.10.ebuild,v 1.1 2001/06/21 17:03:23 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="A library for flash animations" +SRC_URI="http://www.directfb.org/download/contrib/${A}" +HOMEPAGE="http://" + +DEPEND="virtual/glibc" + +src_compile() { + + try ./configure --prefix=/usr --host=${CHOST} + try make + +} + +src_install () { + + try make DESTDIR=${D} install + dodoc AUTHORS COPYING ChangeLog NEWS README +} + diff --git a/media-libs/libmpeg3/files/digest-libmpeg3-1.2.3 b/media-libs/libmpeg3/files/digest-libmpeg3-1.2.3 new file mode 100644 index 000000000000..ba79c856bcfa --- /dev/null +++ b/media-libs/libmpeg3/files/digest-libmpeg3-1.2.3 @@ -0,0 +1 @@ +MD5 c379b4507c4a429436b4538cd3148a1e libmpeg3-1.2.3.tar.gz diff --git a/media-libs/libmpeg3/libmpeg3-1.2.3.ebuild b/media-libs/libmpeg3/libmpeg3-1.2.3.ebuild new file mode 100644 index 000000000000..659a428293da --- /dev/null +++ b/media-libs/libmpeg3/libmpeg3-1.2.3.ebuild @@ -0,0 +1,32 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Your Name <your email> +# $Header: /var/cvsroot/gentoo-x86/media-libs/libmpeg3/libmpeg3-1.2.3.ebuild,v 1.1 2001/06/21 17:03:23 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="An mpeg library for linux" +SRC_URI="http://www.directfb.org/download/contrib/${A}" +HOMEPAGE="http://" + +DEPEND="virtual/glibc" + +src_compile() { + if [ -z "`use mmx`" ] ; then + try ./configure --no-css --no-mmx + else + try ./configure --no-css + fi + try make +} + +src_install () { + + dolib.a libmpeg3.a + insinto /usr/include/libmpeg3 + doins *.h + dodoc README + docinto html + dodoc docs/*.html +} + |