# HG changeset patch # User Pascal Bellard # Date 1224794154 0 # Node ID 4da89e6150fecc80d1845bdb03e49f0cb6ab747e # Parent eea0bde9b32e171d37246a62349f68efe382fa4d Add CONFIG_FILES for alsa-utils gtk+ pango ppp diff -r eea0bde9b32e -r 4da89e6150fe alsa-utils/receipt --- a/alsa-utils/receipt Thu Oct 23 20:33:28 2008 +0000 +++ b/alsa-utils/receipt Thu Oct 23 20:35:54 2008 +0000 @@ -10,6 +10,7 @@ TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.alsa-project.org/" WGET_URL="ftp://ftp.alsa-project.org/pub/utils/$TARBALL" +CONFIG_FILES="/etc/asound.state" # Rules to configure and make the package. compile_rules() diff -r eea0bde9b32e -r 4da89e6150fe gtk+/receipt --- a/gtk+/receipt Thu Oct 23 20:33:28 2008 +0000 +++ b/gtk+/receipt Thu Oct 23 20:35:54 2008 +0000 @@ -12,6 +12,7 @@ TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.gtk.org/" WGET_URL="http://ftp.gnome.org/pub/GNOME/sources/gtk+/2.12/$TARBALL" +CONFIG_FILES="/etc/gtk-2.0" # Rules to configure and make the package. compile_rules() @@ -22,8 +23,8 @@ --sysconfdir=/etc \ --mandir=/usr/share/man \ --with-html-dir=/usr/share/doc \ - $CONFIGURE_ARGS - make + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install } diff -r eea0bde9b32e -r 4da89e6150fe pango/receipt --- a/pango/receipt Thu Oct 23 20:33:28 2008 +0000 +++ b/pango/receipt Thu Oct 23 20:35:54 2008 +0000 @@ -9,6 +9,7 @@ TARBALL="$PACKAGE-$VERSION.tar.bz2" WEB_SITE="http://www.pango.org/" WGET_URL="ftp://ftp.gtk.org/pub/pango/1.20/$TARBALL" +CONFIG_FILES="/etc/pango" # Rules to configure and make the package. compile_rules() @@ -19,8 +20,8 @@ --sysconfdir=/etc \ --mandir=/usr/share/man \ --with-html-dir=/usr/share/doc \ - $CONFIGURE_ARGS - make + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg install } diff -r eea0bde9b32e -r 4da89e6150fe ppp/receipt --- a/ppp/receipt Thu Oct 23 20:33:28 2008 +0000 +++ b/ppp/receipt Thu Oct 23 20:35:54 2008 +0000 @@ -8,14 +8,15 @@ TARBALL="$PACKAGE-$VERSION.tar.gz" WEB_SITE="http://ppp.samba.org/" WGET_URL="ftp://ftp.samba.org/pub/ppp/$TARBALL" +CONFIG_FILES="/etc/ppp" # Rules to configure and make the package. compile_rules() { cd $src ./configure --prefix=/usr --mandir=/usr/share/man \ - $CONFIGURE_ARGS - make + $CONFIGURE_ARGS && + make && make DESTDIR=$PWD/_pkg/usr install }