12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #!/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 pisi.actionsapi import get
- from pisi.actionsapi import autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import shelltools
- def setup():
- # Remove -Wall from default flags. The makefiles enable enough warnings
- # themselves, and they use -Werror.
-
-
- options ='-disable-nls --program-prefix=\"eu-\" --with-zlib --disable-debuginfod --disable-libdebuginfod'
-
- if get.buildTYPE() == "emul32":
- shelltools.export("PKG_CONFIG_PATH","/usr/lib32/pkgconfig")
- options += " --libdir=/usr/lib32 \
- --bindir=/usr/emul32 \
- "
-
- elif get.ARCH() == "x86_64":
- pisitools.flags.add("-fexceptions")
- autotools.autoreconf("-vfi")
- pisitools.cflags.remove("-Wall")
-
- options +=" \
- --enable-dwz \
- --enable-thread-safety \
- --with-bzlib \
- --with-lzma"
- #shelltools.export("LDFLAGS", "-L/lib -lbz2")
- autotools.autoreconf("-fiv")
- autotools.configure(options)
- def build():
- autotools.make()
- #def check():
- #autotools.make("check")
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
-
- if get.buildTYPE() == "emul32":
- pisitools.remove("/usr/lib32/libelf.a")
- pisitools.remove("/usr/lib32/libasm.a")
- pisitools.remove("/usr/lib32/libdw.a")
- pisitools.removeDir("/usr/emul32")
-
-
- elif get.ARCH() == "x86_64":
- # Don't remove all the static libs as libebl.a is needed by other packages
- pisitools.remove("/usr/lib/libelf.a")
- pisitools.remove("/usr/lib/libasm.a")
- pisitools.remove("/usr/lib/libdw.a")
- pisitools.dodoc("AUTHORS", "COPYING", "ChangeLog", "NEWS", "NOTES", "README", "THANKS", "TODO")
|