blob: 90f312edc2b43abe0363d2bdd233aa1dbce068dd (
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-2000 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
PARENT=id3lib-3.8.0pre2
A=${PARENT}.tar.gz
S=${WORKDIR}/${PARENT}
DESCRIPTION="Id3 library for C/C++ -- API Refrence"
SRC_URI="mirror://sourceforge/id3lib/${A}"
HOMEPAGE="http://id3lib.sourceforge.net/"
DEPEND="virtual/glibc
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}
cp -a doc/* ${D}/usr/share/doc/${P}
}
|