diff options
Diffstat (limited to 'extra/cvs/PKGBUILD')
-rw-r--r-- | extra/cvs/PKGBUILD | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/extra/cvs/PKGBUILD b/extra/cvs/PKGBUILD index 9121db0d8..52db75700 100644 --- a/extra/cvs/PKGBUILD +++ b/extra/cvs/PKGBUILD @@ -1,14 +1,16 @@ -# $Id: PKGBUILD 146046 2012-01-04 17:18:48Z dan $ +# $Id: PKGBUILD 185415 2013-05-14 01:35:08Z dan $ # Contributor: dorphell <dorphell@archlinux.org> +# Maintainer: Dan McGee <dan@archlinux.org> pkgname=cvs pkgver=1.11.23 -pkgrel=8.1 +pkgrel=9 pkgdesc="Concurrent Versions System - a source control system" arch=(i686 x86_64 'mips64el') url="http://cvs.nongnu.org/" license=('GPL') depends=('krb5' 'zlib') +makedepends=('vim') optdepends=('openssh: for using cvs over ssh' 'inetutils: for using cvs over rsh') install=cvs.install @@ -30,7 +32,9 @@ build() { # CVE-2010-3864, https://www.redhat.com/security/data/cve/CVE-2010-3846.html patch -Np1 < ../cvs-1.11.23-cve-2010-3846.patch - autoreconf + sed -i -e 's/AM_CONFIG_HEADER/AC_CONFIG_HEADERS/' configure.in + find . -name Makefile.am | xargs sed -i -e 's/^INCLUDES/AM_CPPFLAGS/' + AUTOMAKE='automake --add-missing' autoreconf ./configure --prefix=/usr make } |