diff options
author | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 01:58:21 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2002-11-30 01:58:21 +0000 |
commit | 4d70ce48cf063aa65c77a02558ec50d8c958a5e7 (patch) | |
tree | 17d2d66904e523de5abb06e18fdb324d94a5b274 /media-libs | |
parent | Changed mkdir ${D} to dodir ${D} (diff) | |
download | historical-4d70ce48cf063aa65c77a02558ec50d8c958a5e7.tar.gz historical-4d70ce48cf063aa65c77a02558ec50d8c958a5e7.tar.bz2 historical-4d70ce48cf063aa65c77a02558ec50d8c958a5e7.zip |
Changed mkdir ${D} to dodir ${D}
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/divx4linux/divx4linux-20020418.ebuild | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/media-libs/divx4linux/divx4linux-20020418.ebuild b/media-libs/divx4linux/divx4linux-20020418.ebuild index 436c10663d09..67eed7f8f4d0 100644 --- a/media-libs/divx4linux/divx4linux-20020418.ebuild +++ b/media-libs/divx4linux/divx4linux-20020418.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2002 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/divx4linux/divx4linux-20020418.ebuild,v 1.9 2002/10/04 05:46:41 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/divx4linux/divx4linux-20020418.ebuild,v 1.10 2002/11/30 01:58:21 vapier Exp $ DXVER=501 S="${WORKDIR}/${PN}-${PV}" @@ -8,12 +8,11 @@ DESCRIPTION="Binary release of DivX Codec 5.0.1" SRC_URI="http://download.divx.com/divx/${PN}${DXVER}-${PV}.tgz" HOMEPAGE="http://www.divx.com/" -DEPEND="virtual/glibc" - SLOT="0" LICENSE="DIVX" KEYWORDS="x86 -ppc -sparc -sparc64" +DEPEND="virtual/glibc" # Make sure Portage does _NOT_ strip symbols. Need both lines for # Portage 1.8.9+ @@ -21,7 +20,6 @@ DEBUG="yes" RESTRICT="nostrip" src_install() { - dodir /usr/{lib,include} # Do the divx50 decoder stuff @@ -29,6 +27,6 @@ src_install() { insinto /usr/include doins *.h dodoc README.linux license.txt - mkdir ${D}/usr/share/doc/${P}/html + dodir /usr/share/doc/${P}/html cp -a 'DivX MPEG-4 Codec and Its Interface.htm' ${D}/usr/share/doc/${P}/html } |