# Copyright 1999-2005 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Header: /var/cvsroot/gentoo-x86/media-libs/xvid/xvid-1.0.1.ebuild,v 1.9 2005/01/09 07:04:18 luckyduck Exp $ inherit eutils MY_P=${PN}core-${PV} DESCRIPTION="high performance/quality MPEG-4 video de-/encoding solution" HOMEPAGE="http://www.xvid.org/" SRC_URI="http://files.xvid.org/downloads/${MY_P}.tar.bz2" LICENSE="GPL-2" SLOT="1" KEYWORDS="~x86 ~ppc ~sparc ~alpha hppa ~amd64 ~ia64 ppc64 ~mips" IUSE="doc" DEPEND="virtual/libc x86? ( >=dev-lang/nasm-0.98.36 )" S="${WORKDIR}/${MY_P}/build/generic" src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${PV}-DESTDIR.patch # Appliying 64bit patch unconditionally. # Simple patch that works arch independent. # Danny van Dyk 2004/06/22 cd ${S}/../.. epatch ${FILESDIR}/${P}-64bit-clean.patch } src_install() { make install DESTDIR=${D} || die cd ${S}/../../ dodoc AUTHORS ChangeLog README TODO doc/* local mylib="$(basename $(ls ${D}/usr/$(get_libdir)/libxvidcore.so*))" dosym ${mylib} /usr/$(get_libdir)/libxvidcore.so dosym ${mylib} /usr/$(get_libdir)/${mylib/.0} if use doc ; then dodoc CodingStyle doc/README insinto /usr/share/doc/${PF}/examples doins examples/* fi }