diff options
author | Achim Gottinger <achim@gentoo.org> | 2001-01-05 07:03:30 +0000 |
---|---|---|
committer | Achim Gottinger <achim@gentoo.org> | 2001-01-05 07:03:30 +0000 |
commit | 1b930f5ba4888fe1da30a60785577e653281ebc1 (patch) | |
tree | c770ba336beaed865c48f230f5fd49ff13c7c55c /media-video/xmovie | |
parent | *** empty log message *** (diff) | |
download | gentoo-2-1b930f5ba4888fe1da30a60785577e653281ebc1.tar.gz gentoo-2-1b930f5ba4888fe1da30a60785577e653281ebc1.tar.bz2 gentoo-2-1b930f5ba4888fe1da30a60785577e653281ebc1.zip |
*** empty log message ***
Diffstat (limited to 'media-video/xmovie')
-rw-r--r-- | media-video/xmovie/xmovie-1.5.3.ebuild | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/media-video/xmovie/xmovie-1.5.3.ebuild b/media-video/xmovie/xmovie-1.5.3.ebuild new file mode 100644 index 000000000000..1a270903696f --- /dev/null +++ b/media-video/xmovie/xmovie-1.5.3.ebuild @@ -0,0 +1,39 @@ +# 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.5.3.ebuild,v 1.1 2001/01/05 07:03:30 achim Exp $ + +A=${P}.tar.gz +S=${WORKDIR}/${P} +DESCRIPTION="A Player for MPEG and Quicktime movies" +SRC_URI="ftp://heroines.sourceforge.net/pub/heroines/${A}" +HOMEPAGE="http://heroines.sourceforge.net/" + +DEPEND=">=sys-devel/gcc-2.95.2 + >=sys-libs/glibc-2.1.3 + >=dev-lang/nasm-0.98 + >=dev-libs/glib-1.2.8 + >=media-libs/libpng-1.0.7 + >=x11-base/xfree-4.0.1" + +src_compile() { + + cd ${S} + try ./configure + try make + +} + +src_install () { + + cd ${S} + into /usr/X11R6 + dobin xmovie/xmovie + dodoc README + docinto html + dodoc docs/index.html + +} + + + |