summaryrefslogtreecommitdiff
blob: 1ee7fc132507489c35540adb287f5b8ca705312d (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
# Copyright 2001-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Author Sean Mitchell <sean@arawak.on.ca>, updated Tom von Schwerdtner <tvon@etria.org>
# $Header: /var/cvsroot/gentoo-x86/app-doc/doxygen/doxygen-1.2.15.ebuild,v 1.2 2002/07/08 15:08:29 sunflare Exp $

S=${WORKDIR}/${P}
DESCRIPTION="Doxygen is a documentation system for C++, Java, IDL (Corba, Microsoft and KDE-DCOP flavors) and C"

SRC_URI="ftp://ftp.stack.nl/pub/users/dimitri/${P}.src.tar.gz"
HOMEPAGE="http://www.doxygen.org"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="x86"

DEPEND="qt? ( =x11-libs/qt-2* )"

src_unpack() {

    unpack ${A}
    cd ${S}/addon/doxywizard
    patch -p0 < ${FILESDIR}/${P}-gentoo.diff
    
}

src_compile()
{

   use qt && CONFIGURE_OPTIONS="--with-doxywizard"
   
   QTDIR=/usr/qt/2 ./configure  --install install --prefix ${D}/usr ${CONFIGURE_OPTIONS} || die
   make all || die

}

src_install()
{

   make install || die
   dodoc README VERSION LICENSE LANGUAGE.HOWTO PLATFORMS

}