blob: 076f4a3376679a06540e544e724e711b27a9647d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmpeg2/libmpeg2-0.2.1.ebuild,v 1.3 2002/08/14 13:08:09 murphy Exp $
inherit libtool
MY_P="${P/libmpeg2/mpeg2dec}"
S="${WORKDIR}/${MY_P}"
DESCRIPTION="This is a sample skeleton ebuild file"
SRC_URI="http://libmpeg2.sourceforge.net/files/${MY_P}.tar.gz"
HOMEPAGE="http://libmpeg2.sourceforge.net/"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86 sparc sparc64"
DEPEND="sdl? ( media-libs/libsdl )
X? ( virtual/x11 )"
src_unpack() {
unpack ${A}
# get rid of the -mcpu
cd ${S} ; cp configure configure.orig
sed -e 's:OPT_CFLAGS=\"$CFLAGS -mcpu=.*\":OPT_CFLAGS=\"$CFLAGS\":g' \
configure.orig > configure
}
src_compile() {
elibtoolize
local myconf=""
use sdl || myconf="${myconf} --disable-sdl"
use X && myconf="${myconf} --with-x" \
|| myconf="${myconf} --without-x"
econf --enable-shared \
${myconf} || die "./configure failed"
emake || die
}
src_install() {
make DESTDIR=${D} install || die
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
}
|