Skip to content
Permalink
b20945e8ad
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
executable file 32 lines (25 sloc) 1.14 KB
#!/bin/env beesh
# BEE_VERSION gtk2-2.24.13-0
SRCURL[0]="http://ftp.gnome.org/pub/gnome/sources/gtk+/${PKGVERSION[2]}/gtk+-${PKGVERSION}.tar.xz"
# official pre 2.24.13 patches from git (remove with next version)
PATCHURL+=( \
/src/mariux/download/gtk2-2.24.13-0001-Update-Visual-C-property-sheets.patch \
/src/mariux/download/gtk2-2.24.13-0002-Really-move-the-docs-to-a-new-location.patch \
/src/mariux/download/gtk2-2.24.13-0003-Fix-garbage-content-when-windows-are-initially-mappe.patch \
/src/mariux/download/gtk2-2.24.13-0004-gtk-.props-VS2010-Update-include-paths.patch \
/src/mariux/download/gtk2-2.24.13-0005-quartz-Actually-use-the-window-background-PATTERN-co.patch \
)
# additional fix to enable collate by default in gtk printing (for firefox, evince, etc)
# may also apply to > 2.24.13 releases..
PATCHURL+=( \
/src/mariux/download/gtk2-2.24.13-0006-Make-collate-default-to-enabled.patch \
)
mee_configure() {
bee_configure \
--enable-introspection \
--enable-xinerama \
--disable-gtk-doc-html
}
mee_install_post() {
mv -v ${D}${BINDIR}/gtk-update-icon-cache{,2}
}