doxygen: update to 1.7.3.

This commit is contained in:
Juan RP 2011-01-19 00:14:27 +01:00
parent 7600d1f5c5
commit 695b2e1099
1 changed files with 13 additions and 9 deletions

View File

@ -1,16 +1,11 @@
# Template file for 'doxygen'
pkgname=doxygen
version=1.7.2
version=1.7.3
distfiles="http://ftp.stack.nl/pub/users/dimitri/$pkgname-$version.src.tar.gz"
build_style=configure
configure_script="env QTDIR=/usr ./configure"
configure_args="--prefix /usr --with-doxywizard --with-doxyapp"
make_install_target="
INSTALL=$XBPS_DESTDIR/$pkgname-$version/usr
MAN1DIR=share/man/man1 install"
build_style=custom-install
short_desc="Source code documentation generator tool"
maintainer="Juan RP <xtraeme@gmail.com>"
checksum=1f6de57f7fe9acc65dc86bbdade21fc84bd013b66daeebc497e16e3a54ad91a1
checksum=c7857d246f75ea287328023a6af71dec8f45a765932a86fcfcc951920a647766
long_desc="
Doxygen is a documentation system for C++, C, Java, Objective-C, Python,
IDL (Corba and Microsoft flavors), Fortran, VHDL, PHP, C#, and to some
@ -24,7 +19,16 @@ Add_dependency build perl
Add_dependency build flex
Add_dependency build qt-devel
pre_build()
do_build()
{
export QMAKESPEC=/usr/share/qt/mkspecs/linux-g++
env QTDIR=/usr ./configure \
--prefix /usr --with-doxywizard --with-doxyapp
make ${makejobs}
}
do_install()
{
make INSTALL=${DESTDIR}/usr MAN1DIR=share/man/man1 install
}