diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2002-03-21 12:08:57 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2002-03-21 12:08:57 +0000 |
commit | 93c8928afc2737c66f5ff1e53264fe5ff4ac359a (patch) | |
tree | 42deb7833794d3805d24ca7ab1f491d08eb30f1e /media-libs/libogg | |
parent | No more gzipped HTML documentation. (diff) | |
download | gentoo-2-93c8928afc2737c66f5ff1e53264fe5ff4ac359a.tar.gz gentoo-2-93c8928afc2737c66f5ff1e53264fe5ff4ac359a.tar.bz2 gentoo-2-93c8928afc2737c66f5ff1e53264fe5ff4ac359a.zip |
No more gzipped HTML documentation
Diffstat (limited to 'media-libs/libogg')
-rw-r--r-- | media-libs/libogg/ChangeLog | 9 | ||||
-rw-r--r-- | media-libs/libogg/files/digest-libogg-1.0_rc3-r1 | 1 | ||||
-rw-r--r-- | media-libs/libogg/libogg-1.0_rc3-r1.ebuild | 30 |
3 files changed, 39 insertions, 1 deletions
diff --git a/media-libs/libogg/ChangeLog b/media-libs/libogg/ChangeLog index 066549e91e2f..e4a3bc44bc8d 100644 --- a/media-libs/libogg/ChangeLog +++ b/media-libs/libogg/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for media-libs/libogg # Copyright 2002 Gentoo Technologies, Inc.; Distributed under the GPL -# $Header: /var/cvsroot/gentoo-x86/media-libs/libogg/ChangeLog,v 1.1 2002/02/01 21:53:30 gbevin Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/libogg/ChangeLog,v 1.2 2002/03/21 12:08:57 seemant Exp $ + +*libogg-1.0_rc3-r1 (21 Mar 2002) + + 21 Mar 2002; Seemant Kulleen <seemant@gentoo.org> libogg-1.0_rc3-r1.ebuild : + + HTML documentation is no longer getting gzipped because of dodoc. dohtml + is now handling it. Thanks to stefan@mdy.univie.ac.at for the bug report. *libogg-1.0_rc3 (1 Feb 2002) diff --git a/media-libs/libogg/files/digest-libogg-1.0_rc3-r1 b/media-libs/libogg/files/digest-libogg-1.0_rc3-r1 new file mode 100644 index 000000000000..9e151af59529 --- /dev/null +++ b/media-libs/libogg/files/digest-libogg-1.0_rc3-r1 @@ -0,0 +1 @@ +MD5 6425cd5659aa7595b30f2c024d1b8eab libogg-1.0rc3.tar.gz 207366 diff --git a/media-libs/libogg/libogg-1.0_rc3-r1.ebuild b/media-libs/libogg/libogg-1.0_rc3-r1.ebuild new file mode 100644 index 000000000000..11642321e44f --- /dev/null +++ b/media-libs/libogg/libogg-1.0_rc3-r1.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2002 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License, v2 or later +# Author Peter Gavin <pbg1854@garnet.acns.fsu.edu> +# $Header: /var/cvsroot/gentoo-x86/media-libs/libogg/libogg-1.0_rc3-r1.ebuild,v 1.1 2002/03/21 12:08:57 seemant Exp $ + +S=${WORKDIR}/libogg-1.0rc3 +DESCRIPTION="the Ogg media file format library" +SRC_URI="http://www.vorbis.com/files/rc3/unix/${PN}-1.0rc3.tar.gz" +HOMEPAGE="http://www.xiph.org/ogg/vorbis/index.html" + +DEPEND="virtual/glibc" + +src_compile() { + ./configure --prefix=/usr --host=${CHOST} || die + + emake || die +} + +src_install () { + make DESTDIR=${D} install || die + + # remove the docs installed by make install, since I'll install + # them in portage package doc directory + echo "Removing docs installed by make install" + rm -rf ${D}/usr/share/doc + + dodoc AUTHORS CHANGES COPYING README + dohtml doc/*.{html,png} +} + |