33 lines
873 B
Bash
33 lines
873 B
Bash
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/libmimic/libmimic-1.0.4-r1.ebuild,v 1.15 2012/10/02 21:24:51 maekke Exp $
|
|
|
|
EAPI="2"
|
|
|
|
DESCRIPTION="Video encoding/decoding library for the codec used by msn"
|
|
HOMEPAGE="http://farsight.sourceforge.net/"
|
|
SRC_URI="mirror://sourceforge/farsight/${P}.tar.gz"
|
|
|
|
LICENSE="LGPL-2.1"
|
|
SLOT="0"
|
|
KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-fbsd"
|
|
IUSE="doc"
|
|
|
|
RDEPEND="dev-libs/glib:2"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
doc? ( app-doc/doxygen )"
|
|
|
|
src_configure() {
|
|
econf $(use_enable doc doxygen-docs)
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die "emake install failed"
|
|
|
|
dodoc AUTHORS ChangeLog NEWS README || die "dodoc failed"
|
|
|
|
if use doc; then
|
|
dohtml doc/api/html/* || die "dohtml failed"
|
|
fi
|
|
}
|