diff options
author | Mike Frysinger <vapier@gentoo.org> | 2003-07-25 23:08:36 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2003-07-25 23:08:36 +0000 |
commit | 75f3f8d0ae5f9a6811c0408c8c8a1f3e551b1613 (patch) | |
tree | 80e3a1c19792c7e19da79c3f4b02dfee812d1848 /media-libs | |
parent | initial ebuild (diff) | |
download | gentoo-2-75f3f8d0ae5f9a6811c0408c8c8a1f3e551b1613.tar.gz gentoo-2-75f3f8d0ae5f9a6811c0408c8c8a1f3e551b1613.tar.bz2 gentoo-2-75f3f8d0ae5f9a6811c0408c8c8a1f3e551b1613.zip |
typo fix thx mike lundry
Diffstat (limited to 'media-libs')
-rw-r--r-- | media-libs/id3lib-docs/id3lib-docs-3.8.0_pre2.ebuild | 16 |
1 files changed, 6 insertions, 10 deletions
diff --git a/media-libs/id3lib-docs/id3lib-docs-3.8.0_pre2.ebuild b/media-libs/id3lib-docs/id3lib-docs-3.8.0_pre2.ebuild index 297a5e2a3534..c3ed75487741 100644 --- a/media-libs/id3lib-docs/id3lib-docs-3.8.0_pre2.ebuild +++ b/media-libs/id3lib-docs/id3lib-docs-3.8.0_pre2.ebuild @@ -1,33 +1,29 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib-docs/id3lib-docs-3.8.0_pre2.ebuild,v 1.8 2003/02/13 12:45:42 vapier Exp $ +# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib-docs/id3lib-docs-3.8.0_pre2.ebuild,v 1.9 2003/07/25 23:08:36 vapier Exp $ MY_P=${PN/-docs/}-${PV/_/} S=${WORKDIR}/${MY_P} DESCRIPTION="Id3 library for C/C++ -- API Refrence" -SRC_URI="mirror://sourceforge/id3lib/${MY_P}.tar.gz" HOMEPAGE="http://id3lib.sourceforge.net/" +SRC_URI="mirror://sourceforge/id3lib/${MY_P}.tar.gz" SLOT="0" -LICENSE="LGPL-2" -KEYWORDS="x86 sparc " +KEYWORDS="x86 sparc" +LICENSE="LGPL-2" DEPEND="app-doc/doxygen media-libs/id3lib" src_compile() { - cd doc/ - /usr/bin/doxygen Doxyfile - + doxygen Doxyfile || die } src_install() { - # Using ${D} here dosent seem to work. Advice? #dodir /usr/share/doc/${P} - c#p -a doc/* ${D}/usr/share/doc/${P} + #cp -a doc/* ${D}/usr/share/doc/${P} dohtml -r doc - dodoc AUTHORS COPYING ChangeLog HISTORY NEWS README THANKS TODO } |