blob: a50b56ba2dc3553cda44705d9d3b5e4ccdf16efc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/libebml/libebml-0.7.7-r1.ebuild,v 1.2 2006/11/07 06:39:49 opfer Exp $
inherit multilib
DESCRIPTION="Extensible binary format library (kinda like XML)"
HOMEPAGE="http://www.matroska.org/"
SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc-macos ~ppc64 ~sparc x86"
IUSE=""
src_install() {
cd "${S}"/make/linux
einstall libdir="${D}/usr/$(get_libdir)" || die "make install failed"
dodoc "${S}"/ChangeLog
}
|