You've already forked linux-packaging-mono
Imported Upstream version 5.0.0.42
Former-commit-id: fd56571888259555122d8a0f58c68838229cea2b
This commit is contained in:
parent
1190d13a04
commit
6bdd276d05
51
external/bockbuild/packages/pango.py
vendored
Normal file
51
external/bockbuild/packages/pango.py
vendored
Normal file
@ -0,0 +1,51 @@
|
||||
class PangoPackage (GnomeXzPackage):
|
||||
|
||||
def __init__(self):
|
||||
GnomePackage.__init__(self,
|
||||
'pango',
|
||||
version_major='1.35',
|
||||
version_minor='0',
|
||||
configure_flags=[
|
||||
'--without-x',
|
||||
'--enable-gtk-doc-html=no'
|
||||
]
|
||||
)
|
||||
|
||||
self.sources.extend([
|
||||
# 1
|
||||
# Bug 321419 - Allow environment var substitution in Pango config
|
||||
# https://bugzilla.gnome.org/show_bug.cgi?id=321419
|
||||
'patches/pango-relative-config-file.patch',
|
||||
|
||||
# BXC 10257 - Characters outside the Basic Multilingual Plane don't render correctly
|
||||
# https://bugzilla.xamarin.com/show_bug.cgi?id=10257
|
||||
'patches/pango-coretext-astral-plane-1.patch',
|
||||
'patches/pango-coretext-astral-plane-2.patch',
|
||||
|
||||
# Bug 15787 - Caret position is wrong when there are ligatures
|
||||
# https://bugzilla.xamarin.com/show_bug.cgi?id=15787
|
||||
'patches/pango-disable-ligatures.patch',
|
||||
|
||||
# https://bugzilla.xamarin.com/show_bug.cgi?id=22199
|
||||
'patches/pango-fix-ct_font_descriptor_get_weight-crasher.patch',
|
||||
|
||||
# https://bugzilla.gnome.org/show_bug.cgi?id=734372
|
||||
'patches/pango-coretext-condensed-trait.patch',
|
||||
|
||||
# https://bugzilla.xamarin.com/show_bug.cgi?id=32938
|
||||
'patches/pango-coretext-fix-yosemite-crasher.patch',
|
||||
|
||||
'patches/pango-system-font-single.patch',
|
||||
'patches/pango-system-font-check-version.patch'
|
||||
])
|
||||
|
||||
def prep(self):
|
||||
GnomePackage.prep(self)
|
||||
if Package.profile.name == 'darwin':
|
||||
for p in range(1, len(self.local_sources)):
|
||||
self.sh('patch -p1 < "%{local_sources[' + str(p) + ']}"')
|
||||
|
||||
def deploy(self):
|
||||
self.sh('pango-querymodules --update-cache')
|
||||
|
||||
PangoPackage()
|
Reference in New Issue
Block a user