You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
41 lines
1.1 KiB
41 lines
1.1 KiB
# Copyright 1999-2012 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Header: /var/cvsroot/gentoo-x86/media-libs/schroedinger/schroedinger-1.0.10-r1.ebuild,v 1.2 2012/05/05 08:02:26 jdhore Exp $
|
|
|
|
EAPI=3
|
|
inherit autotools eutils
|
|
|
|
DESCRIPTION="C-based libraries for the Dirac video codec"
|
|
HOMEPAGE="http://www.diracvideo.org/"
|
|
SRC_URI="http://www.diracvideo.org/download/${PN}/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2 LGPL-2 MIT MPL-1.1"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
|
|
IUSE=""
|
|
|
|
RDEPEND=">=dev-lang/orc-0.4.13"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
dev-util/gtk-doc-am"
|
|
|
|
src_prepare() {
|
|
epatch "${FILESDIR}"/${P}-orc-symbols.patch
|
|
sed -i \
|
|
-e '/AS_COMPILER_FLAG(-O3/d' \
|
|
configure.ac || die
|
|
|
|
AT_M4DIR="m4" eautoreconf
|
|
}
|
|
|
|
src_configure() {
|
|
econf \
|
|
--disable-dependency-tracking \
|
|
--with-html-dir="${EPREFIX}/usr/share/doc/${PF}/html"
|
|
}
|
|
|
|
src_install() {
|
|
emake DESTDIR="${D}" install || die
|
|
dodoc AUTHORS NEWS README TODO
|
|
}
|