diff options
author | Robin H. Johnson <robbat2@gentoo.org> | 2003-11-13 15:44:53 +0000 |
---|---|---|
committer | Robin H. Johnson <robbat2@gentoo.org> | 2003-11-13 15:44:53 +0000 |
commit | 8acdb2868ac406e178f7bbe63c6e6fb6964df8ea (patch) | |
tree | 1be72381b19b398d27102143c9ef59b467a1c104 /dev-php | |
parent | fix accidental readline reversion (diff) | |
download | historical-8acdb2868ac406e178f7bbe63c6e6fb6964df8ea.tar.gz historical-8acdb2868ac406e178f7bbe63c6e6fb6964df8ea.tar.bz2 historical-8acdb2868ac406e178f7bbe63c6e6fb6964df8ea.zip |
fix accidental readline reversion
Diffstat (limited to 'dev-php')
-rw-r--r-- | dev-php/php/Manifest | 6 | ||||
-rw-r--r-- | dev-php/php/php-4.3.4.ebuild | 11 |
2 files changed, 8 insertions, 9 deletions
diff --git a/dev-php/php/Manifest b/dev-php/php/Manifest index 3d1346a901c8..9cccd98c4996 100644 --- a/dev-php/php/Manifest +++ b/dev-php/php/Manifest @@ -2,12 +2,11 @@ MD5 49677578b21e86c1db7a1561d04f754a php-5.0_beta1-r1.ebuild 1295 MD5 0d9585a857a06f4d336cf647dd8728d4 php-4.3.2-r3.ebuild 1140 MD5 c8cc2dc8ab39618308726f1749d14d61 php-4.3.3-r2.ebuild 1207 MD5 25f97fc9df6d134f3da1b4e5c1414830 php-4.3.2.ebuild 2418 -MD5 22f945edb933a5ee4f2d36e69784f740 php-4.3.4-r1.ebuild 1247 MD5 3eeafc4e390ffd783e014a5ec877e820 php-4.3.2-r2.ebuild 1182 -MD5 916c5f3be4284c778802477371649523 php-4.3.4.ebuild 1209 +MD5 b42895c3592ff7dc9a6ea70184d848b4 php-4.3.4.ebuild 1215 MD5 f1385520cac897796eeae1ad974ac15c php-4.3.3-r1.ebuild 1208 MD5 ff00712ef064fedea5c310204c367b1a php-5.0_beta1.ebuild 1176 -MD5 bb50635b261c01209a6c9591355afd1c ChangeLog 9791 +MD5 59841f09ddab661d54578afe585c31b5 ChangeLog 9899 MD5 38fe937e954ab7109395cefa86fcd2d4 metadata.xml 384 MD5 db16022e0ec00d919b30ab222f073577 php-4.3.3-r3.ebuild 1218 MD5 ce0950f7facac1bcd6c3f99321f4648a php-4.3.2-r1.ebuild 990 @@ -18,7 +17,6 @@ MD5 63f7765d77e10eeef4b306480cd5d200 files/digest-php-4.3.2-r3 137 MD5 e007fc4a17373504abd024180c0d0b3f files/digest-php-4.3.3-r1 137 MD5 e007fc4a17373504abd024180c0d0b3f files/digest-php-4.3.3-r2 137 MD5 e007fc4a17373504abd024180c0d0b3f files/digest-php-4.3.3-r3 137 -MD5 5547bf31e6a425747226d5984cff04e9 files/digest-php-4.3.4-r1 137 MD5 2a7311fb659555c4711a4ed8b70e9594 files/digest-php-5.0_beta1-r1 65 MD5 663577b8f4b90d61f245bb6052629194 files/pear_config.diff 422 MD5 63f7765d77e10eeef4b306480cd5d200 files/digest-php-4.3.2 137 diff --git a/dev-php/php/php-4.3.4.ebuild b/dev-php/php/php-4.3.4.ebuild index 4ca62562acaa..ba9ab6759cbb 100644 --- a/dev-php/php/php-4.3.4.ebuild +++ b/dev-php/php/php-4.3.4.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2003 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/dev-php/php/php-4.3.4.ebuild,v 1.1 2003/11/07 23:18:29 robbat2 Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-php/php/php-4.3.4.ebuild,v 1.2 2003/11/13 15:44:51 robbat2 Exp $ PHPSAPI="cli" inherit php eutils @@ -17,11 +17,12 @@ DEPEND="${DEPEND} ${DEPEND_EXTRA}" RDEPEND="${RDEPEND} ${DEPEND_EXTRA}" src_compile() { + myconf="${myconf} `use_with readline readline /usr`" # Readline and Ncurses are CLI PHP only - # readline implies ncurses - use ncurses || use readline && use_ncurses="--with-" || use_ncurses="--without-" - myconf="${myconf} `use_with readline`" - myconf="${myconf} ${use_ncurses}-ncurses" + # readline needs ncurses + use ncurses || use readline \ + && myconf="${myconf} --with-ncurses=/usr" \ + || myconf="${myconf} --without-ncurses" myconf="${myconf} \ --disable-cgi \ |