From 5e5a6c6ad4ad4653ab8c6fd626a7ab615049c9eb Mon Sep 17 00:00:00 2001 From: Peter Marquardt Date: Thu, 17 Sep 2020 12:41:42 +0200 Subject: [PATCH] gdk-pixbuf: fix empty man pages - man pages were 'empty': ``` # cat /usr/share/man/man1/gdk-pixbuf-csource.1 Man generation disabled. Remove this file, configure with --enable-man, and rebuild ``` - best IT solution after 'reboot' : rm - persistent SRCURL - remove potential language typos --- gdk-pixbuf.be0 | 25 +++++++++---------------- 1 file changed, 9 insertions(+), 16 deletions(-) diff --git a/gdk-pixbuf.be0 b/gdk-pixbuf.be0 index 049994d97..fefe465b4 100755 --- a/gdk-pixbuf.be0 +++ b/gdk-pixbuf.be0 @@ -1,22 +1,9 @@ #!/usr/bin/env beesh -# BEE_VERSION gdk-pixbuf-2.36.12-0 - -SRCURL[0]="https://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/${PKGVERSION[2]}/gdk-pixbuf-${PKGVERSION}.tar.xz" - -PATCHURL[0]="" - -# BEE_CONFIGURE=compat - -# BEE_BUILDTYPE= - -# EXCLUDE="" - -# build_in_sourcedir - - - +# BEE_VERSION gdk-pixbuf-2.36.12-1 +# SRCURL[0]="https://ftp.gnome.org/pub/gnome/sources/gdk-pixbuf/${PKGVERSION[2]}/gdk-pixbuf-${PKGVERSION}.tar.xz" +SRCURL[0]="https://beehive.molgen.mpg.de/7305ab43d741270ffa53ad2896d7f530/gdk-pixbuf-2.36.12.tar.xz" #mee_extract() { # bee_extract ${@} @@ -28,6 +15,7 @@ PATCHURL[0]="" mee_configure() { bee_configure \ + --disable-nls \ --with-x11 } @@ -38,3 +26,8 @@ mee_configure() { #mee_install() { # bee_install #} +mee_install_post() { + + rm -rvf ${D}/usr/share/man + +}