wok diff pangox-compat/receipt @ rev 18802

syslinux/iso2exe.sh: fix clear_custom_config
author Pascal Bellard <pascal.bellard@slitaz.org>
date Tue Jan 12 15:40:40 2016 +0100 (2016-01-12)
parents ea30d4b8fb16
children 86790a278e70
line diff
     1.1 --- a/pangox-compat/receipt	Tue Jul 15 19:21:23 2014 -0300
     1.2 +++ b/pangox-compat/receipt	Tue Jan 12 15:40:40 2016 +0100
     1.3 @@ -3,27 +3,30 @@
     1.4  PACKAGE="pangox-compat"
     1.5  VERSION="0.0.2"
     1.6  CATEGORY="x-window"
     1.7 -LICENSE="GPL3"
     1.8 -SHORT_DESC="Pango compatibility library (see: pangox)."
     1.9 +SHORT_DESC="X Window System font support for Pango"
    1.10  MAINTAINER="yuripourre@gmail.com"
    1.11 +LICENSE="LGPL2"
    1.12 +WEB_SITE="http://www.gnome.org/"
    1.13  TARBALL="$PACKAGE-$VERSION.tar.xz"
    1.14 -WEB_SITE="https://wiki.gnome.org/Apps/Calculator"
    1.15 -WGET_URL="http://ftp.gnome.org/pub/gnome/sources/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.16 +WGET_URL="$GNOME_MIRROR/$PACKAGE/${VERSION%.*}/$TARBALL"
    1.17  
    1.18 -DEPENDS="pango"
    1.19 -BUILD_DEPENDS="pango-dev"
    1.20 +DEPENDS="glib glibc-base libffi pango pcre xorg-libX11"
    1.21 +BUILD_DEPENDS="pango-dev glib-dev xorg-libX11-dev"
    1.22  
    1.23  # Rules to configure and make the package.
    1.24  compile_rules()
    1.25  {
    1.26  	./configure \
    1.27  		--prefix=/usr \
    1.28 +		--sysconfdir=/etc \
    1.29  		$CONFIGURE_ARGS &&
    1.30  	make &&
    1.31 -	make DESTDIR=$DESTDIR install
    1.32 +	make install
    1.33  }
    1.34  
    1.35  genpkg_rules()
    1.36  {
    1.37 -	cp -a $install/usr $fs
    1.38 +	mkdir -p $fs/usr/lib
    1.39 +	cp -a $install/etc $fs
    1.40 +	cp -a $install/usr/lib/*.so* $fs/usr/lib
    1.41  }