blob: 7fc568bd7e8b7b8c7230ec33977f5b58e6b1fa01 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2004 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.11 2004/03/19 07:56:04 mr_bones_ Exp $
MY_P=${PN/-docs/}-${PV/_/}
S=${WORKDIR}/${MY_P}
DESCRIPTION="Id3 library for C++ -- API Refrence"
HOMEPAGE="http://id3lib.sourceforge.net/"
SRC_URI="mirror://sourceforge/id3lib/${MY_P}.tar.gz"
SLOT="0"
KEYWORDS="x86 sparc"
LICENSE="LGPL-2"
DEPEND="app-doc/doxygen
media-libs/id3lib"
src_compile() {
cd doc/
doxygen Doxyfile || die
}
src_install() {
# Using ${D} here dosent seem to work. Advice?
#dodir /usr/share/doc/${P}
#cp -a doc/* ${D}/usr/share/doc/${P}
dohtml -r doc
dodoc AUTHORS COPYING ChangeLog HISTORY NEWS README THANKS TODO
}
|