blob: a48c900c2f8980e06a240c790f15aa2f9368a15b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2003 Gentoo Technologies, Inc. and Luke-Jr
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-video/emovix/emovix-0.8.0.ebuild,v 1.1 2003/09/23 04:36:13 luke-jr Exp $
DESCRIPTION="eMoviX makes a LiveCD that plays multimedia."
HOMEPAGE="http://movix.sourceforge.net"
SRC_URI="mirror://sourceforge/movix/${P/_rc/rc}.tar.gz"
S=${WORKDIR}/${P/_rc/rc}
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86"
DEPEND="app-cdr/cdrtools"
src_compile () {
econf || die 'Configure failed'
emake || die 'Make failed'
}
src_install () {
# This ver has a b0rked Makefile... -.-
mkdir -p ${D}/usr/share/emovix
einstall DESTDIR=${D} || die 'Install failed'
}
|