blob: d78b131a48e3897e21455f2e9c34d1a0b44fcf83 (
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
|
# Copyright 1999-2004 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/libebml-0.6.0.ebuild,v 1.3 2004/06/24 23:15:57 agriffis Exp $
inherit flag-o-matic
IUSE=""
S=${WORKDIR}/${PN}
DESCRIPTION="Extensible binary format library (kinda like XML)"
SRC_URI="http://matroska.free.fr/downloads/${PN}/${P}.tar.gz"
HOMEPAGE="http://www.matroska.org"
SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86 ~ppc amd64"
DEPEND="virtual/glibc"
src_compile() {
cd ${S}/make/linux
make PREFIX=/usr || die "make failed"
}
src_install () {
cd ${S}/make/linux
einstall || die "make install failed"
dodoc ${S}/LICENSE.*
}
|