diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-06-21 16:15:27 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-06-21 16:15:27 +0000 |
commit | 3432b8bcf93126cc09cadb3231d316c5159af9a1 (patch) | |
tree | e2fdaed8c8264f03062f06322a30d821279dde30 /media-video/xmovie | |
parent | Added support for optional quicktime output (diff) | |
download | historical-3432b8bcf93126cc09cadb3231d316c5159af9a1.tar.gz historical-3432b8bcf93126cc09cadb3231d316c5159af9a1.tar.bz2 historical-3432b8bcf93126cc09cadb3231d316c5159af9a1.zip |
New version
Diffstat (limited to 'media-video/xmovie')
-rw-r--r-- | media-video/xmovie/files/digest-xmovie-1.8 | 1 | ||||
-rw-r--r-- | media-video/xmovie/xmovie-1.8.ebuild | 42 |
2 files changed, 43 insertions, 0 deletions
diff --git a/media-video/xmovie/files/digest-xmovie-1.8 b/media-video/xmovie/files/digest-xmovie-1.8 new file mode 100644 index 000000000000..e8f31c03ba7d --- /dev/null +++ b/media-video/xmovie/files/digest-xmovie-1.8 @@ -0,0 +1 @@ +MD5 cffbbc1ed8031375a91dce43759c5c65 xmovie-1.8.tar.gz diff --git a/media-video/xmovie/xmovie-1.8.ebuild b/media-video/xmovie/xmovie-1.8.ebuild new file mode 100644 index 000000000000..7f5422b2d00f --- /dev/null +++ b/media-video/xmovie/xmovie-1.8.ebuild @@ -0,0 +1,42 @@ +# Copyright 1999-2000 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Achim Gottinger <achim@gentoo.org> +# $Header: /var/cvsroot/gentoo-x86/media-video/xmovie/xmovie-1.8.ebuild,v 1.1 2001/06/21 16:15:27 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="A Player for MPEG and Quicktime movies" +SRC_URI="http://heroinewarrior.com/${A}" +HOMEPAGE="http://heroines.sourceforge.net/" + +DEPEND="virtual/glibc virtual/x11 >=sys-devel/gcc-2.95.2 + >=dev-lang/nasm-0.98 + >=dev-libs/glib-1.2.8 + >=media-libs/libpng-1.0.7" + +RDEPEND="virtual/glibc virtual/x11 >=sys-devel/gcc-2.95.2 + >=dev-libs/glib-1.2.8 + >=media-libs/libpng-1.0.7" + +src_compile() { + if [ "`use mmx`" ] ; then + try ./configure + else + try ./configure --no-mmx + fi + try make + +} + +src_install () { + + into /usr/X11R6 + dobin xmovie/`uname -m`/xmovie + dodoc README + docinto html + dodoc docs/index.html + +} + + + |