25 lines
721 B
Bash
25 lines
721 B
Bash
# Copyright 1999-2010 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/libnut/libnut-661.ebuild,v 1.15 2010/05/01 15:50:52 aballier Exp $
|
|
|
|
inherit flag-o-matic
|
|
|
|
DESCRIPTION="Library and tools to create NUT multimedia files"
|
|
HOMEPAGE="http://svn.mplayerhq.hu/nut/
|
|
http://wiki.multimedia.cx/index.php?title=NUT
|
|
http://www.nut-container.org/"
|
|
SRC_URI="mirror://gentoo/${P}.tar.bz2"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 hppa ppc ppc64 sparc x86 ~x86-fbsd"
|
|
IUSE=""
|
|
DEPEND=""
|
|
RDEPEND=""
|
|
|
|
src_install() {
|
|
emake PREFIX="${D}/usr" install || die "make install died"
|
|
dodoc README
|
|
cd "${S}"/nututils
|
|
dobin nutindex nutmerge nutparse
|
|
}
|