# HG changeset patch # User Christopher Rogers # Date 1297103912 0 # Node ID 03933a919f81c90d930af4bd1ea91e584e296acc # Parent 62929db3cad5949f4c5398a8c55c72ec618fbc0f Fixed some receipts that used PACKAGE-VERSION installed of src. diff -r 62929db3cad5 -r 03933a919f81 bc/receipt --- a/bc/receipt Mon Feb 07 18:10:30 2011 +0000 +++ b/bc/receipt Mon Feb 07 18:38:32 2011 +0000 @@ -14,7 +14,7 @@ # Rules to configure and make the package. compile_rules() { - cd $PACKAGE-$VERSION + cd $src ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man $CONFIGURE_ARGS && make && diff -r 62929db3cad5 -r 03933a919f81 gtkperf/receipt --- a/gtkperf/receipt Mon Feb 07 18:10:30 2011 +0000 +++ b/gtkperf/receipt Mon Feb 07 18:38:32 2011 +0000 @@ -14,7 +14,7 @@ # Rules to configure and make the package. compile_rules() { - cd gtkperf + cd $src ./configure --prefix=/usr --infodir=/usr/share/info \ --mandir=/usr/share/man $CONFIGURE_ARGS && make && diff -r 62929db3cad5 -r 03933a919f81 keepassx/receipt --- a/keepassx/receipt Mon Feb 07 18:10:30 2011 +0000 +++ b/keepassx/receipt Mon Feb 07 18:38:32 2011 +0000 @@ -16,7 +16,7 @@ # Rules to configure and make the package. compile_rules() { - cd $WOK/$PACKAGE/$PACKAGE-$VERSION/src + cd $src/src qmake PREFIX=/usr && make && make INSTALL_ROOT=../_pkg install diff -r 62929db3cad5 -r 03933a919f81 lives/receipt --- a/lives/receipt Mon Feb 07 18:10:30 2011 +0000 +++ b/lives/receipt Mon Feb 07 18:38:32 2011 +0000 @@ -16,7 +16,7 @@ # compile_rules() { - cd $PACKAGE-$VERSION + cd $src ./configure \ --prefix=/usr \ --disable-jack \ diff -r 62929db3cad5 -r 03933a919f81 pidgin-musictracker/receipt --- a/pidgin-musictracker/receipt Mon Feb 07 18:10:30 2011 +0000 +++ b/pidgin-musictracker/receipt Mon Feb 07 18:38:32 2011 +0000 @@ -14,7 +14,7 @@ # Rules to configure and make the package. compile_rules() { - cd $PACKAGE-$VERSION + cd $src ./configure make && make DESTDIR=$PWD/_pkg install }