1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #!/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 autotools
- from pisi.actionsapi import pisitools
- from pisi.actionsapi import get
- from pisi.actionsapi import shelltools
- from pisi.actionsapi import libtools
- def setup():
- options = "-with-xinput=yes \
- --enable-man"
- #shelltools.export("CFLAGS", get.CFLAGS().replace("-fomit-frame-pointer",""))
- #gtk2 needs -DGTK_COMPILATION CPPFLAG when compiling itself
- #Avoid "Only <gtk/gtk.h> can be included directly error"
- shelltools.export("CPPFLAGS", "-DGTK_COMPILATION")
- if get.buildTYPE() == "emul32":
- options += " --libdir=/usr/lib32 \
- --bindir=/usr/bin32 \
- --sbindir=/usr/sbin32 \
- --disable-cups"
- shelltools.export("CC", "%s -m32" % get.CC())
- shelltools.export("CXX", "%s -m32" % get.CC())
- shelltools.export("CXXFLAGS", "%s -m32" % get.CFLAGS())
- shelltools.export("LDFLAGS", "%s -m32" % get.LDFLAGS())
- shelltools.export("CPPFLAGS", "-DGTK_COMPILATION")
- autotools.autoconf()
- autotools.configure(options)
- pisitools.dosed("libtool"," -shared ", " -Wl,-O1,--as-needed -shared ")
- def build():
- autotools.make()
- def install():
- autotools.rawInstall("DESTDIR=%s" % get.installDIR())
- # remove empty dir
- #pisitools.removeDir("/usr/share/man")
- pisitools.dodoc("AUTHORS", "README*", "HACKING", "ChangeLog*", "NEWS*")
- if get.buildTYPE() == "emul32":
- for binaries in ["gtk-query-immodules-2.0", "gtk-demo"]:
- pisitools.domove("/usr/bin32/%s" % binaries, "/usr/bin/", "%s-32bit" % binaries)
- pisitools.removeDir("/usr/bin32")
- #hack to install gdkconfig.h in gdk headers dir
- pisitools.dosym("/usr/lib/gtk-2.0/include/gdkconfig.h","/usr/include/gtk-2.0/gdk/gdkconfig.h")
|