# Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 # $Header: $ MY_P=${PN}core-${PV/_rc/-rc} S="${WORKDIR}/${MY_P}/build/generic" DESCRIPTION="XviD, a high performance/quality MPEG-4 video de-/encoding solution." SRC_URI="http://files.xvid.org/downloads/${MY_P}.tar.bz2" HOMEPAGE="http://www.xvid.org/" DEPEND="virtual/glibc x86? ( >=dev-lang/nasm-0.98.36 )" SLOT="1" LICENSE="GPL-2" KEYWORDS="~x86 ~ppc ~sparc ~alpha ~hppa ~amd64 ~ia64" src_compile() { [ -z "${CC}" ] && export CC="gcc" econf || die emake || die } src_install() { dodir /usr/{include,lib} einstall || die cd ${S}/../../ dodoc AUTHORS ChangeLog LICENSE README TODO doc/* dosym /usr/lib/libxvidcore.so.4.0 /usr/lib/libxvidcore.so.4 dosym /usr/lib/libxvidcore.so.4 /usr/lib/libxvidcore.so if [ "`use doc`" ] then dodoc CodingStyle doc/README insinto /usr/share/doc/${PF}/examples doins examples/* # Empty for this release ... #insinto /usr/share/doc/${PF}/examples/ex1 #doins examples/ex1/* fi }