blob: eac67b1622e95ca8b90d593615c8537dce2c0ea4 (
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
|
# Copyright 1999-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Martin Schlemmer <azarah@gentoo.org>
# $Header: /var/cvsroot/gentoo-x86/media-libs/libdvdcss/libdvdcss-1.0.0.ebuild,v 1.2 2002/02/12 19:42:47 verwilst Exp $
S="${WORKDIR}/${P}"
DESCRIPTION="A portable abstraction library for DVD decryption"
SRC_URI="http://www.videolan.org/pub/videolan/libdvdcss/${PV}/${P}.tar.bz2"
HOMEPAGE="http://www.videolan.org/libdvdcss/"
DEPEND="virtual/glibc"
src_compile() {
./configure --prefix=/usr \
--mandir=/usr/share/man \
--infodir=/usr/share/info ||die
make || die
}
src_install() {
make prefix=${D}/usr \
mandir=${D}/usr/share/man \
infodir=${D}/usr/share/info \
install || die
dodoc AUTHORS COPYING ChangeLog INSTALL README TODO
}
|