blob: 6883486e982cafc1199cfe7d26f7972e4ff3da74 (
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
30
31
32
33
|
# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# $Header: /var/cvsroot/gentoo-x86/media-libs/id3lib-docs/id3lib-docs-3.8.0_pre2.ebuild,v 1.5 2002/08/14 13:08:09 murphy 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/"
SLOT="0"
LICENSE="LGPL-2"
KEYWORDS="x86 sparc sparc64"
DEPEND="app-doc/doxygen
media-libs/id3lib"
src_compile() {
cd doc/
/usr/bin/doxygen Doxyfile
}
src_install() {
# Using ${D} here dosent seem to work. Advice?
#dodir /usr/share/doc/${P}
c#p -a doc/* ${D}/usr/share/doc/${P}
dohtml -r doc
dodoc AUTHORS COPYING ChangeLog HISTORY NEWS README THANKS TODO
}
|