diff options
author | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
---|---|---|
committer | Nicolás Reynolds <fauno@endefensadelsl.org> | 2013-12-27 23:55:53 +0000 |
commit | 65eeff79fff8a1bfdf67ca51d147384f46f4d5c0 (patch) | |
tree | fbfdff322b28d9a3c37e6e31c94caf1d8e48dac1 /extra/doxygen | |
parent | d53c44f055929b18d7d1b25f8367ee5836c435fc (diff) |
Fri Dec 27 23:54:04 UTC 2013
Diffstat (limited to 'extra/doxygen')
-rw-r--r-- | extra/doxygen/PKGBUILD | 18 | ||||
-rw-r--r-- | extra/doxygen/doxygen-configure-python2.patch | 11 |
2 files changed, 22 insertions, 7 deletions
diff --git a/extra/doxygen/PKGBUILD b/extra/doxygen/PKGBUILD index f17b7e395..4a3acbcd5 100644 --- a/extra/doxygen/PKGBUILD +++ b/extra/doxygen/PKGBUILD @@ -1,23 +1,27 @@ -# $Id: PKGBUILD 193586 2013-08-24 16:53:45Z dan $ +# $Id: PKGBUILD 202708 2013-12-25 21:15:10Z dan $ # Maintainer: Dan McGee <dan@archlinux.org> pkgbase=doxygen pkgname=('doxygen' 'doxygen-docs') -pkgver=1.8.5 +pkgver=1.8.6 pkgrel=1 license=('GPL') arch=(i686 x86_64) url="http://www.doxygen.org/" makedepends=('gcc-libs' 'flex' 'qt4' 'texlive-core' 'ghostscript' - 'texlive-latexextra' 'graphviz') -source=(http://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz) -md5sums=('db51274568755e2c75c2657e30a78a55') -sha1sums=('1fc5ceec21122fe5037edee4c308ac94b59ee33e') + 'texlive-latexextra' 'graphviz' 'python2') +source=(http://ftp.stack.nl/pub/users/dimitri/${pkgname}-${pkgver}.src.tar.gz + doxygen-configure-python2.patch) +md5sums=('9385dc52f0627875f8fa758e754ec674' + 'a16ef06cd207292eda73801ea3835f1e') +sha1sums=('204f1b3695c73efac44a521609c5360241d64045' + '98f9f473f906c5cd363b29c65b54bbe998c0793e') build() { export PATH=$PATH:/usr/lib/qt4/bin cd "${srcdir}/${pkgbase}-${pkgver}" - QTDIR=/usr ./configure --prefix /usr --with-doxywizard + patch -Np1 < ../doxygen-configure-python2.patch + QTDIR=/usr/lib/qt4 ./configure --prefix /usr --with-doxywizard make } diff --git a/extra/doxygen/doxygen-configure-python2.patch b/extra/doxygen/doxygen-configure-python2.patch new file mode 100644 index 000000000..9750d1eb2 --- /dev/null +++ b/extra/doxygen/doxygen-configure-python2.patch @@ -0,0 +1,11 @@ +--- doxygen-1.8.6/configure.orig 2013-12-25 20:54:22.171988706 +0000 ++++ doxygen-1.8.6/configure 2013-12-25 20:54:33.405247482 +0000 +@@ -560,7 +560,7 @@ + + printf " Checking for python... " + if test "$f_python" = NO; then +- python_names="python" ++ python_names="python2 python" + python_dirs="$bin_dirs /usr/bin /usr/local/bin /bin /sbin" + python_prog=NO + python_found=NO |