12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- #!/usr/bin/env python3
- # -*- coding: utf-8 -*-
- #
- # Licensed under the GNU General Public License, version 3.
- # See the file http://www.gnu.org/licenses/gpl.txt
- from inary.actionsapi import get
- from inary.actionsapi import autotools
- from inary.actionsapi import inarytools
- from inary.actionsapi import shelltools
- from inary.actionsapi import perlmodules
- def setup():
- # Respect the user LDFLAGS
- shelltools.system("./autogen.sh")
- shelltools.export("EXTRA_LDFLAGS", get.LDFLAGS())
- autotools.configure("PYTHON=python2 \
- --prefix=/usr \
- --disable-static \
- --with-apache-libexecdir \
- --with-lz4=internal \
- --with-utf8proc=internal")
- inarytools.dosed("libtool"," -shared ", " -Wl,--as-needed -shared ")
- def build():
- # svn
- autotools.make()
- autotools.make('LT_LDFLAGS="-L{}/usr/lib"'.format(get.installDIR()))
- autotools.make("swig_pydir=/usr/lib/python2.7/site-packages/libsvn \
- swig_pydir_extra=/usr/lib/python2.7/site-packages/svnswig-py swig-pl swig-rb")
- def install():
- # install svn
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- # install swig-py
- autotools.rawInstall("DESTDIR=%s" % get.installDIR(), "install-swig-py")
- # install swig-pl
- autotools.rawInstall("DESTDIR=%s" % get.installDIR(), "install-swig-pl")
- # install javahl
- #autotools.rawInstall("DESTDIR=%s" % get.installDIR(), "install-javahl")
- # Move py/c'into proper dir
- inarytools.domove("/usr/lib/svn-python/svn", "/usr/lib/%s/site-packages" % get.curPYTHON())
- inarytools.domove("/usr/lib/svn-python/libsvn", "/usr/lib/%s/site-packages" % get.curPYTHON())
- inarytools.removeDir("/usr/lib/svn-python")
- # some helper tools
- inarytools.insinto("/usr/bin", "tools/backup/hot-backup.py", "svn-hot-backup")
- # FIXME: these tools are replaced by new ones
- # inarytools.insinto("/usr/bin", "contrib/client-side/svn_load_dirs.pl", "svn-load-dirs")
- # inarytools.insinto("/usr/bin", "contrib/client-side/svnmerge.py", "svnmerge")
- # shelltools.chmod("%s/usr/bin/svnmerge" % get.installDIR(), 0755)
- # Install upstream bash completion script
- inarytools.insinto("/etc/bash_completion.d", "tools/client-side/bash_completion", "subversion")
- # Documentation and etc.
- #inarytools.insinto("/usr/share/doc/%s" % get.srcNAME(), "contrib")
- inarytools.insinto("/usr/share/doc/%s" % get.srcNAME(), "tools/xslt")
- inarytools.insinto("/var/www/localhost/htdocs", "tools/xslt/*")
- # Create virtual repository root
- inarytools.dodir("/var/svn")
- inarytools.dodoc("README")
- # remove unnecessary files i.e. perllocal.pod, .packlist
- perlmodules.removePacklist()
- perlmodules.removePodfiles()
|