summaryrefslogtreecommitdiff
blob: 6354ff38cacb755de1a6f0535eadd8059695af22 (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
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-doc/kdelibs-apidocs/kdelibs-apidocs-3.1_rc5.ebuild,v 1.3 2003/02/15 07:06:51 gerk Exp $

PN=kdelibs P=$PN-$PVR inherit kde kde.org 

IUSE=""
DESCRIPTION="API documentation autogenerated from the kde-base/kdelibs package" 
KEYWORDS="~x86 ppc"
HOMEPAGE="http//developer.kde.org/"
SLOT="3.1"
LICENSE="GPL-2"
S="${WORKDIR}/kdelibs-3.1rc5"

DEPEND="app-doc/doxygen app-doc/qt-docs"
RDEPEND=""

# get locations without messing with deps
set-qtdir 3
set-kdedir $PV

src_compile() {

	./configure # just give us a tolerable makefile
	make apidox
	
}

src_install() {

	#make DESTDIR="$D" install-apidox # doesn't install all files ?
	einfo "Copying files..."
	dodir $KDEDIR/share/doc/HTML/en/kdelibs-apidocs
	cp -r $S/apidocs/* $D/$KDEDIR/share/doc/HTML/en/kdelibs-apidocs
	
	#cd $S/apidocs
	#for x in k*; do
	#    MANDIRS="$MANDIRS:$KDEDIR/share/doc/HTML/en/kdelibs-apidocs/$x/man"
	#done
	#dodir /etc/env.d
	#echo "MANPATH=$MANDIRS" > $D/etc/env.d/80kdelibs-apidocs
	
}