12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394 |
- #!/usr/bin/python
- # -*- 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 autotools
- from inary.actionsapi import inarytools
- from inary.actionsapi import shelltools
- from inary.actionsapi import get
- def setup():
- inarytools.dosed("Configure", " $prefix/$libdir/engines ", " /%{_lib}/engines ")
- options = " --prefix=/usr \
- --libdir=lib \
- --openssldir=/etc/ssl \
- shared -Wa,--noexecstack \
- zlib enable-camellia enable-idea \
- enable-seed enable-rfc3779 enable-rc5 \
- enable-cms enable-md2 enable-mdc2 threads"
- if get.buildTYPE() == "_emul32":
- options += " --prefix=/_emul32 --libdir=lib32".format(get.installDIR())
- shelltools.export("CC", "%s -m32" % get.CC())
- shelltools.export("CXX", "%s -m32" % get.CXX())
- shelltools.system("./Configure linux-elf %s" % options)
- shelltools.export("PKG_CONFIG_PATH","/usr/lib32/pkgconfig")
- elif get.ARCH() == "i686":
- shelltools.system("./Configure linux-elf %s" % options)
- inarytools.dosed("Makefile", "^(SHARED_LDFLAGS=).*", "\\1 ${LDFLAGS}")
- inarytools.dosed("Makefile", "^(CFLAG=.*)", "\\1 ${CFLAGS}")
- else:
- options += " enable-ec_nistp_64_gcc_128"
- shelltools.system("./Configure linux-x86_64 %s" % options)
- inarytools.dosed("Makefile", "^(SHARED_LDFLAGS=).*", "\\1 ${LDFLAGS}")
- inarytools.dosed("Makefile", "^(CFLAG=.*)", "\\1 ${CFLAGS}")
- def build():
- autotools.make("depend")
- autotools.make("-j1")
- #autotools.make("rehash")
- #def check():
- #Revert ca-dir patch not to fail test
- #shelltools.system("patch -p1 -R < openssl-1.0.0-beta4-ca-dir.patch")
- # homeDir = "%s/test-home" % get.workDIR()
- # shelltools.export("HOME", homeDir)
- # shelltools.makedirs(homeDir)
- # autotools.make("-j1 test")
- #Passed. So, re-patch
- #shelltools.system("patch -p1 < openssl-1.0.0-beta4-ca-dir.patch")
- def install():
- shelltools.system("sed -i '/INSTALL_LIBS/s/libcrypto.a libssl.a//' Makefile")
- autotools.rawInstall("DESTDIR=%s MANDIR=/usr/share/man" % get.installDIR())
- # Rename conflicting manpages
- inarytools.rename("/usr/share/man/man1/passwd.1", "ssl-passwd.1")
- inarytools.remove("/usr/share/man/man1/openssl-passwd.1")
- inarytools.dosym("ssl-passwd.1", "/usr/share/man/man1/openssl-passwd.1")
- inarytools.rename("/usr/share/man/man1/rand.1", "ssl-rand.1")
- inarytools.remove("/usr/share/man/man1/openssl-rand.1")
- inarytools.dosym("ssl-passwd.1", "/usr/share/man/man1/openssl-rand.1")
- #inarytools.rename("/usr/share/man/man3/err.3", "ssl-err.3")
- if get.buildTYPE() == "_emul32":
- #from distutils.dir_util import copy_tree
- shelltools.copytree("%s/_emul32/lib32/" % get.installDIR(), "%s/usr/lib32" % get.installDIR())
- inarytools.removeDir("/_emul32")
- path = "%s/usr/lib32/pkgconfig" % get.installDIR()
- inarytools.domove("/usr/lib32/engines-1.1", "/usr/lib32/openssl")
- for f in shelltools.ls(path): inarytools.dosed("%s/%s" % (path, f), "^(prefix=\/)_emul32", r"\1usr")
- return
- # Move engines to /usr/lib/openssl/engines
- inarytools.dodir("/usr/lib/openssl")
- inarytools.domove("/usr/lib/engines-1.1", "/usr/lib/openssl")
- # Certificate stuff
- inarytools.dobin("tools/c_rehash")
- # Create needed dirs
- for cadir in ["misc", "private"]:
- inarytools.dodir("/etc/ssl/%s" % cadir)
- inarytools.dohtml("doc/*")
- inarytools.dodoc("CHANGES*", "FAQ", "LICENSE", "NEWS", "README", "doc/*.txt")
|