You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
86 lines
3.3 KiB
86 lines
3.3 KiB
8 years ago
|
#!/usr/bin/env python
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
# PyQt4 bindings for th QTermWidget project.
|
||
|
#
|
||
|
# Copyright (C) 2009 Piotr "Riklaunim" Maliński <riklaunim@gmail.com>,
|
||
|
# Alexander Slesarev <alex.slesarev@gmail.com>
|
||
|
#
|
||
|
# This program is free software: you can redistribute it and/or modify
|
||
|
# it under the terms of the GNU General Public License as published by
|
||
|
# the Free Software Foundation, either version 3 of the License, or
|
||
|
# (at your option) any later version.
|
||
|
#
|
||
|
# This program is distributed in the hope that it will be useful,
|
||
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||
|
# GNU General Public License for more details.
|
||
|
#
|
||
|
# You should have received a copy of the GNU General Public License
|
||
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||
|
|
||
|
import os
|
||
|
import sipconfig
|
||
|
from PyQt4 import pyqtconfig
|
||
|
|
||
|
# The name of the SIP build file generated by SIP and used by the build
|
||
|
# system.
|
||
|
build_file = "qtermwidget.sbf"
|
||
|
|
||
|
# Get the PyQt configuration information.
|
||
|
config = pyqtconfig.Configuration()
|
||
|
|
||
|
# Get the extra SIP flags needed by the imported qt module. Note that
|
||
|
# this normally only includes those flags (-x and -t) that relate to SIP's
|
||
|
# versioning system.
|
||
|
qt_sip_flags = config.pyqt_sip_flags
|
||
|
|
||
|
# Run SIP to generate the code. Note that we tell SIP where to find the qt
|
||
|
# module's specification files using the -I flag.
|
||
|
os.system(" ".join([config.sip_bin, "-c", ".", "-b", build_file, "-I",
|
||
|
config.pyqt_sip_dir, qt_sip_flags, "qtermwidget.sip"]))
|
||
|
|
||
|
# We are going to install the SIP specification file for this module and
|
||
|
# its configuration module.
|
||
|
installs = []
|
||
|
|
||
|
installs.append(["qtermwidget.sip", os.path.join(config.default_sip_dir,
|
||
|
"qtermwidget")])
|
||
|
|
||
|
installs.append(["qtermwidgetconfig.py", config.default_mod_dir])
|
||
|
|
||
|
# Create the Makefile. The QtModuleMakefile class provided by the
|
||
|
# pyqtconfig module takes care of all the extra preprocessor, compiler and
|
||
|
# linker flags needed by the Qt library.
|
||
|
makefile = pyqtconfig.QtGuiModuleMakefile(
|
||
|
configuration = config,
|
||
|
build_file = build_file,
|
||
|
installs = installs)
|
||
|
|
||
|
# Add the library we are wrapping. The name doesn't include any platform
|
||
|
# specific prefixes or extensions (e.g. the "lib" prefix on UNIX, or the
|
||
|
# ".dll" extension on Windows).
|
||
|
makefile.extra_lib_dirs.append("..")
|
||
|
makefile.extra_libs = ["qtermwidget4"]
|
||
|
|
||
|
# Generate the Makefile itself.
|
||
|
makefile.generate()
|
||
|
|
||
|
# Now we create the configuration module. This is done by merging a Python
|
||
|
# dictionary (whose values are normally determined dynamically) with a
|
||
|
# (static) template.
|
||
|
content = {
|
||
|
# Publish where the SIP specifications for this module will be
|
||
|
# installed.
|
||
|
"qtermwidget_sip_dir": config.default_sip_dir,
|
||
|
|
||
|
# Publish the set of SIP flags needed by this module. As these are the
|
||
|
# same flags needed by the qt module we could leave it out, but this
|
||
|
# allows us to change the flags at a later date without breaking
|
||
|
# scripts that import the configuration module.
|
||
|
"qtermwidget_sip_flags": qt_sip_flags}
|
||
|
|
||
|
# This creates the qtermwidgetconfig.py module from the qtermwidgetconfig.py.in
|
||
|
# template and the dictionary.
|
||
|
sipconfig.create_config_module("qtermwidgetconfig.py", "config.py.in", content)
|