Re: [gentoo-user] dev-lang/php - making binary

2023-04-15 Thread Michael Orlitzky
On Sat, 2023-04-15 at 21:29 -0400, jul...@jroy.ca wrote:
> 
> You can keep a copy of the ebuild so even if it's removed from portage
> you will be able to install it.
> 
> Even without a copy, you will be able to retrieve it from git history.

This is a better idea.

I'll warn you though, PHP upstream has aggressively discontinued
support for php-7.4. You may soon find that it stops working with your
compiler or OpenSSL, for example, and you'll be vulnerable to the
security issues fixed in php-8.x.




Re: [gentoo-user] dev-lang/php - making binary

2023-04-15 Thread jul...@jroy.ca
On Sat, 2023-04-15 at 18:57 -0600, the...@sys-concept.com wrote:
> So I want to make a binary of the current dev-lang/php-7.4.33-r2 just
> in case in the near future they will pull out the old version out of
> the portage.
> 
> Will making binary allow me to install dev-lang/php-7.4.33-r2
> (binary) with future upgrades (after PHP-7.4 is gone from the
> portage)?

You can keep a copy of the ebuild so even if it's removed from portage
you will be able to install it.

Even without a copy, you will be able to retrieve it from git history.

-- 
Julien


signature.asc
Description: This is a digitally signed message part


[gentoo-user] dev-lang/php - making binary

2023-04-15 Thread thelma

php-7.4 will be getting obsolete in the future and converting my code to php-8 
might not be easy.
So I want to make a binary of the current dev-lang/php-7.4.33-r2 just in case 
in the near future they will pull out the old version out of the portage.

Will making binary allow me to install dev-lang/php-7.4.33-r2 (binary) with 
future upgrades (after PHP-7.4 is gone from the portage)?

Do I need to make binary of packages  dev-lang/php-7.4 depends on?

equery d dev-lang/php
 * These packages depend on dev-lang/php:
dev-db/phpmyadmin-5.2.1 (dev-lang/php[ctype,filter,json(+),session,ssl,unicode])
(dev-lang/php[mysqli])
(dev-lang/php[mysql])
media-libs/libvpx-1.12.0-r1 (doc ? dev-lang/php)
virtual/httpd-php-7.4 (dev-lang/php:7.4[fpm])
  (dev-lang/php:7.4[apache2])
  (dev-lang/php:7.4[cgi]

Step to make PHP-7.4 binary (am I missing anything)?

1. add package to:  /etc/portage/package.use
echo " dev-lang/php mysql mysqli gd" >>  /etc/portage/package.use

2.) emerge --buildpk dev-lang/php

3.)  The binary package file will be created in the /usr/portage/packages 
directory.

4.) To install the binary package on another Gentoo system, copy the .tbz2 file 
to the other system's /usr/portage/packages directory and run the following 
command:

emerge --usepkg dev-lang/php

Am I missing anything?

--
Thelma



Re: [SOLVED][gentoo-user] dev-lang/php-7.4.21-r1::gentoo failed (compile phase)

2021-07-17 Thread thelma
On 7/17/21 3:30 PM, tastytea wrote:
> On 2021-07-17 15:13-0600 the...@sys-concept.com wrote:
> 
>> On of my system is giving me an error when compiling php
>>
>> In file included from /usr/include/libxml2/libxml/parser.h:812,
>>  from
>> /var/tmp/portage/dev-lang/php-7.4.21-r1/work/sapis-build/cli/ext/libxml/libxml.c:34:
>> /usr/include/libxml2/libxml/encoding.h:31:10: fatal error:
>> unicode/ucnv.h: No such file or directory 31 | #include
>>  |  ^~~~ compilation terminated.
>> make: *** [Makefile:461: ext/libxml/libxml.lo] Error 1
>> make: *** Waiting for unfinished jobs
>>  * ERROR: dev-lang/php-7.4.21-r1::gentoo failed (compile phase):
> 
> /usr/include/unicode/ucnv.h belongs to dev-libs/icu. It looks like
> dev-libs/libxml2 needs it even if it is installed with USE="-icu". Could
> you report the bug on ?
> 
> As a workaround, re-install dev-libs/libxml2 with USE="icu".
> 
> Kind regards, tastytea

Thanks for the suggestion.
I installed: dev-libs/icu (as it was missing).
This will creates the ucnv.h file that is missing.




Re: [gentoo-user] dev-lang/php-7.4.21-r1::gentoo failed (compile phase)

2021-07-17 Thread Michael Orlitzky
On Sat, 2021-07-17 at 15:13 -0600, the...@sys-concept.com wrote:
> On of my system is giving me an error when compiling php
> 
> In file included from /usr/include/libxml2/libxml/parser.h:812,
>  from 
> /var/tmp/portage/dev-lang/php-7.4.21-r1/work/sapis-build/cli/ext/libxml/libxml.c:34:
> /usr/include/libxml2/libxml/encoding.h:31:10: fatal error: unicode/ucnv.h: No 
> such file or directory
>31 | #include 
>   |  ^~~~
> 

Was your dev-libs/libxml2 built with USE=icu? And is icu installed? If
you look in /usr/include/libxml2/libxml/encoding.h you probably see,

  #ifdef LIBXML_ICU_ENABLED
  #include 
  #endif

so that unicode header should only be used when libxml2 was built with
USE=icu. In that case, USE=icu also pulls in dev-libs/icu, which is
what provides the header.





Re: [gentoo-user] dev-lang/php-7.4.21-r1::gentoo failed (compile phase)

2021-07-17 Thread tastytea
On 2021-07-17 15:13-0600 the...@sys-concept.com wrote:

> On of my system is giving me an error when compiling php
> 
> In file included from /usr/include/libxml2/libxml/parser.h:812,
>  from
> /var/tmp/portage/dev-lang/php-7.4.21-r1/work/sapis-build/cli/ext/libxml/libxml.c:34:
> /usr/include/libxml2/libxml/encoding.h:31:10: fatal error:
> unicode/ucnv.h: No such file or directory 31 | #include
>  |  ^~~~ compilation terminated.
> make: *** [Makefile:461: ext/libxml/libxml.lo] Error 1
> make: *** Waiting for unfinished jobs
>  * ERROR: dev-lang/php-7.4.21-r1::gentoo failed (compile phase):

/usr/include/unicode/ucnv.h belongs to dev-libs/icu. It looks like
dev-libs/libxml2 needs it even if it is installed with USE="-icu". Could
you report the bug on ?

As a workaround, re-install dev-libs/libxml2 with USE="icu".

Kind regards, tastytea

-- 
Get my PGP key with `gpg --locate-keys tasty...@tastytea.de` or at
.


pgp1aDvT4lpaM.pgp
Description: Digitale Signatur von OpenPGP


[gentoo-user] dev-lang/php-7.4.21-r1::gentoo failed (compile phase)

2021-07-17 Thread thelma
On of my system is giving me an error when compiling php

In file included from /usr/include/libxml2/libxml/parser.h:812,
 from 
/var/tmp/portage/dev-lang/php-7.4.21-r1/work/sapis-build/cli/ext/libxml/libxml.c:34:
/usr/include/libxml2/libxml/encoding.h:31:10: fatal error: unicode/ucnv.h: No 
such file or directory
   31 | #include 
  |  ^~~~
compilation terminated.
make: *** [Makefile:461: ext/libxml/libxml.lo] Error 1
make: *** Waiting for unfinished jobs
 * ERROR: dev-lang/php-7.4.21-r1::gentoo failed (compile phase):




Re: [gentoo-user] dev-lang/php-5.6

2017-02-27 Thread thelma
On 02/27/2017 02:11 PM, Alan McKinnon wrote:
> On 27/02/2017 22:14, the...@sys-concept.com wrote:
>> When will they drop the dev-lang/php-5.6.30 from the portage?
> 
> If you copy the ebuild into your local overlay, then never
> 

I'll do it just in case but eventually I'll be force to upgrade.
I've upgraded 4-old boxes, three more to go + apache-2.4

--
Thelma






Re: [gentoo-user] dev-lang/php-5.6

2017-02-27 Thread Michael Orlitzky
On 02/27/2017 03:14 PM, the...@sys-concept.com wrote:
> When will they drop the dev-lang/php-5.6.30 from the portage?
> 
> php-7.0 is not working with my application (modification are too
> intensive) besides I'm not a programmer.
>

The php-5.6 series will receive security updates until the end of 2018:

  http://php.net/supported-versions.php

We plan on supporting it in Gentoo for at least that long. It will most
likely be removed once it has an *unfixed* vulnerability.




Re: [gentoo-user] dev-lang/php-5.6

2017-02-27 Thread Alan McKinnon
On 27/02/2017 22:14, the...@sys-concept.com wrote:
> When will they drop the dev-lang/php-5.6.30 from the portage?

If you copy the ebuild into your local overlay, then never

> 
> php-7.0 is not working with my application (modification are too
> intensive) besides I'm not a programmer.
> 


-- 
Alan McKinnon
alan.mckin...@gmail.com




[gentoo-user] dev-lang/php-5.6

2017-02-27 Thread thelma
When will they drop the dev-lang/php-5.6.30 from the portage?

php-7.0 is not working with my application (modification are too
intensive) besides I'm not a programmer.

-- 
Thelma



RE: [gentoo-user] dev-lang/php-5.1.4 emerge failing [SOLVED]

2006-05-23 Thread Jason Ausmus
Thanks to the people who tried to help me figure this out.

It turns out the issue with emerging php (missing mysql libraries) had
to do with a buggy custom eclass that had been put by this box's
previous admin under one of the portdir_overlay directories.  When I
renamed the overlay'ed eclass dir to eclass.old, I was instantly able to
emerge mysql (and it actually emerged this time).  Once that was done, I
was able to emerge php with no problems.

Thanks again,
Jason

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] dev-lang/php-5.1.4 emerge failing

2006-05-22 Thread Jason Ausmus
 -Original Message-
 From: kashani [mailto:[EMAIL PROTECTED] 
 Sent: Friday, May 19, 2006 11:04 AM
 To: gentoo-user@lists.gentoo.org
 Subject: Re: [gentoo-user] dev-lang/php-5.1.4 emerge failing
 
 Jason Ausmus wrote:
  Okay, here's another one:
  
  I can't emerge dev-lang/php-5.1.4.  It fails like this:
  
  -
  
  checking for mSQL support... no
  checking for MSSQL support via FreeTDS... yes checking for 
 dnet_addr 
  in -ldnet_stub... no checking for MySQL support... yes checking for 
  specified location of the MySQL UNIX socket...
  /var/run/mysqld/mysqld.sock
  checking for MySQL UNIX socket location... 
 /var/run/mysqld/mysqld.sock
  configure: error: Cannot find MySQL header files under 
 /usr/lib/mysql.
  Note that the MySQL client library is not bundled anymore!
  
  !!! ERROR: dev-lang/php-5.1.4 failed.
 
   I see that you're updating from 5.1.1 which was 
 released several month ago, maybe Dec/Jan? Around that time 
 slotted Mysql was active. It is possible that you Mysql libs 
 are installed into /usr/lib/mysql-500 or something similar? 
 Assuming you do I'd update Mysql first to a non slotted build 
 and then try to install PHP again.

ls /usr/lib/my* returns nothing.

 
 BTW if you're messing with Mysql 5.0 there was a default 
 charset change from latin1 to utf8 around that time as well 
 so watch your my.conf file. 
   Bugzilla was very unhappy when its charsets suddenly changed.

`find / -iname my.conf` returns nothing.  Where should I look for it? 

Any other ideas, or any other info I can give to help figure this out?

Thanks,
Jason

-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] dev-lang/php-5.1.4 emerge failing

2006-05-22 Thread Ryan Tandy

Jason Ausmus wrote:


BTW if you're messing with Mysql 5.0 there was a default 
charset change from latin1 to utf8 around that time as well 
so watch your my.conf file. 
  Bugzilla was very unhappy when its charsets suddenly changed.


`find / -iname my.conf` returns nothing.  Where should I look for it? 


Any other ideas, or any other info I can give to help figure this out?

Thanks,
Jason



Someone typoed - the file is actually my.cnf.
--
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] dev-lang/php-5.1.4 emerge failing

2006-05-22 Thread Jason Ausmus
 -Original Message-
 From: Jason Ausmus [mailto:[EMAIL PROTECTED] 
 Sent: Monday, May 22, 2006 9:46 AM
 To: gentoo-user@lists.gentoo.org
 Subject: RE: [gentoo-user] dev-lang/php-5.1.4 emerge failing
 
  -Original Message-
  From: kashani [mailto:[EMAIL PROTECTED]
  Sent: Friday, May 19, 2006 11:04 AM
  To: gentoo-user@lists.gentoo.org
  Subject: Re: [gentoo-user] dev-lang/php-5.1.4 emerge failing
  
  Jason Ausmus wrote:
   Okay, here's another one:
   
   I can't emerge dev-lang/php-5.1.4.  It fails like this:
   
   -
   
   checking for mSQL support... no
   checking for MSSQL support via FreeTDS... yes checking for
  dnet_addr
   in -ldnet_stub... no checking for MySQL support... yes 
 checking for 
   specified location of the MySQL UNIX socket...
   /var/run/mysqld/mysqld.sock
   checking for MySQL UNIX socket location... 
  /var/run/mysqld/mysqld.sock
   configure: error: Cannot find MySQL header files under
  /usr/lib/mysql.
   Note that the MySQL client library is not bundled anymore!
   
   !!! ERROR: dev-lang/php-5.1.4 failed.
  
  I see that you're updating from 5.1.1 which was 
 released several 
  month ago, maybe Dec/Jan? Around that time slotted Mysql 
 was active. 
  It is possible that you Mysql libs are installed into 
  /usr/lib/mysql-500 or something similar?
  Assuming you do I'd update Mysql first to a non slotted 
 build and then 
  try to install PHP again.
 
 ls /usr/lib/my* returns nothing.
 
  
  BTW if you're messing with Mysql 5.0 there was a default charset 
  change from latin1 to utf8 around that time as well so watch your 
  my.conf file.
Bugzilla was very unhappy when its charsets suddenly changed.
 
 `find / -iname my.conf` returns nothing.  Where should I look for it? 
 
 Any other ideas, or any other info I can give to help figure this out?
 
 Thanks,
 Jason
 
 --
 gentoo-user@gentoo.org mailing list
 
 

In case this helps, I have this weird thing going on with mysql:

if I try to unmerge then reemerge mysql, this is what it looks like:

---

h0486tux etc # emerge -C mysql

 dev-db/mysql
selected: 5.0.21
   protected: none
 omitted: none

 'Selected' packages are slated for removal.
 'Protected' and 'omitted' packages will not be removed.

 Waiting 5 seconds before starting...
 (Control-C to abort)...
 Unmerging in: 5 4 3 2 1
 Unmerging dev-db/mysql-5.0.21...
No package files given... Grabbing a set.
 Regenerating /etc/ld.so.cache...

 * GNU info directory index is up-to-date.

h0486tux etc #

---

h0486tux etc # emerge  mysql
Calculating dependencies... done!
 Emerging (1 of 1) dev-db/mysql-5.0.21 to /
 checking ebuild checksums ;-)
 checking auxfile checksums ;-)
 checking miscfile checksums ;-)
 Unpacking source...
 Source unpacked.
 Compiling source in /var/tmp/portage/mysql-5.0.21 ...
 Source compiled.
 Test phase [not enabled]: dev-db/mysql-5.0.21

 Install mysql-5.0.21 into /var/tmp/portage/mysql-5.0.21/image/
category dev-db
 Completed installing mysql-5.0.21 into
/var/tmp/portage/mysql-5.0.21/image/

man:
 Merging dev-db/mysql-5.0.21 to /
 Safely unmerging already-installed instance...
No package files given... Grabbing a set.
 Original instance of package unmerged safely.
 Regenerating /etc/ld.so.cache...
 dev-db/mysql-5.0.21 merged.
 Recording dev-db/mysql in world favorites file...

 No packages selected for removal by clean.

 Auto-cleaning packages...

 No outdated packages were found on your system.


 * GNU info directory index is up-to-date.

h0486tux etc #

---

Both steps take about 20 seconds to complete.  What is actually being
done here?... because it doesn't seem like anything is happening at all.

Jason

-- 
gentoo-user@gentoo.org mailing list



RE: [gentoo-user] dev-lang/php-5.1.4 emerge failing

2006-05-22 Thread Jason Ausmus
 

 -Original Message-
 From: Ryan Tandy [mailto:[EMAIL PROTECTED] 
 Sent: Monday, May 22, 2006 1:31 PM
 To: gentoo-user@lists.gentoo.org
 Subject: Re: [gentoo-user] dev-lang/php-5.1.4 emerge failing
 
 Jason Ausmus wrote:
  
  BTW if you're messing with Mysql 5.0 there was a default charset 
  change from latin1 to utf8 around that time as well so watch your 
  my.conf file.
Bugzilla was very unhappy when its charsets suddenly changed.
  
  `find / -iname my.conf` returns nothing.  Where should I 
 look for it? 
  
  Any other ideas, or any other info I can give to help 
 figure this out?
  
  Thanks,
  Jason
  
 
 Someone typoed - the file is actually my.cnf.
 --
 gentoo-user@gentoo.org mailing list
 

Thanks.

Okay, so I did a find / -iname my.cnf and this was the result:

---

h0486tux ~ # find / -iname my.cnf
/etc/mysql.old/my.cnf
/usr/local/portage/dev-db/mysql/files/my.cnf
/usr/portage/dev-db/mysql/files/my.cnf
/home/ausmusj/downloads/ebuilds/dev-db/mysql/files/my.cnf
find: /proc/18124/task/18124/fd/5: No such file or directory
find: /proc/18124/fd/5: No such file or directory



Is there anything weird about this output?  It doesn't seem like
everything is in place...

There is no /etc/mysql directory.

Jason

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] dev-lang/php-5.1.4 emerge failing

2006-05-19 Thread Jason Ausmus
Okay, here's another one:

I can't emerge dev-lang/php-5.1.4.  It fails like this:

-

checking for mSQL support... no
checking for MSSQL support via FreeTDS... yes
checking for dnet_addr in -ldnet_stub... no
checking for MySQL support... yes
checking for specified location of the MySQL UNIX socket...
/var/run/mysqld/mysqld.sock
checking for MySQL UNIX socket location... /var/run/mysqld/mysqld.sock
configure: error: Cannot find MySQL header files under /usr/lib/mysql.
Note that the MySQL client library is not bundled anymore!

!!! ERROR: dev-lang/php-5.1.4 failed.
Call stack:
  ebuild.sh, line 1527:   Called dyn_compile
  ebuild.sh, line 931:   Called src_compile
  php-5.1.4.ebuild, line 107:   Called src_compile_normal
  php-5.1.4.ebuild, line 213:   Called php5_1-sapi_src_compile
  php5_1-sapi.eclass, line 573:   Called die

!!! configure failed
!!! If you need support, post the topmost build error, and the call
stack if relevant.

h0486tux / #

-

There are several other packages that fail with the same symptoms.

Emerge --info:

-

h0486tux / # emerge --info
Portage 2.1_rc1-r3 (default-linux/x86/2005.0, gcc-3.4.6, glibc-2.4-r3,
2.6.11-gentoo-r7 i686)
=
System uname: 2.6.11-gentoo-r7 i686 Intel(R) Pentium(R) 4 CPU 1.80GHz
Gentoo Base System version 1.12.0_pre19
dev-lang/python: 2.3.5, 2.4.3-r1
dev-python/pycrypto: 2.0.1-r5
dev-util/ccache: [Not Present]
dev-util/confcache:  [Not Present]
sys-apps/sandbox:1.2.17
sys-devel/autoconf:  2.13, 2.59-r7
sys-devel/automake:  1.4_p6, 1.5, 1.6.3, 1.7.9-r1, 1.8.5-r3, 1.9.6-r2
sys-devel/binutils:  2.16.1-r2
sys-devel/libtool:   1.5.22
virtual/os-headers:  2.6.11-r5
ACCEPT_KEYWORDS=x86 ~x86
AUTOCLEAN=yes
CBUILD=i686-pc-linux-gnu
CFLAGS=-march=pentium4 -O3 -pipe -funroll-loops -fomit-frame-pointer
-fprefetch-loop-arrays
CHOST=i686-pc-linux-gnu
CONFIG_PROTECT=/etc /opt/openjms/config /usr/kde/2/share/config
/usr/kde/3.4/env /usr/kde/3.4/share/config /usr/kde/3.4/shutdown
/usr/kde/3.5/env /usr/kde/3.5/share/config /usr/kde/3.5/shutdown
/usr/kde/3/share/config /usr/lib/mozilla/defaults/pref
/usr/share/X11/xkb /usr/share/config /var/qmail/control
CONFIG_PROTECT_MASK=/etc/eselect/compiler /etc/gconf /etc/terminfo
/etc/texmf/web2c /etc/env.d
CXXFLAGS=-march=pentium4 -O3 -pipe -funroll-loops -fomit-frame-pointer
-fprefetch-loop-arrays
DISTDIR=/usr/portage/distfiles
FEATURES=autoconfig distlocks metadata-transfer sandbox sfperms strict
GENTOO_MIRRORS=http://gentoo.osuosl.org/;
MAKEOPTS=-j2
PKGDIR=/usr/portage/packages
PORTAGE_RSYNC_OPTS=--recursive --links --safe-links --perms --times
--compress --force --whole-file --delete --delete-after --stats
--timeout=180 --exclude='/distfiles' --exclude='/local'
--exclude='/packages'
PORTAGE_TMPDIR=/var/tmp
PORTDIR=/usr/portage
PORTDIR_OVERLAY=/usr/local/portage /usr/local/portage-steev
SYNC=rsync://ssvsdev.hlyw.pvt/portage
USE=X Xaw3d a52 aac aalib acl aclpi acpi adns aim alsa apache2 apm arts
artworkextra atlas audiofile avalon avi bash-completion bcmath berkdb
bitmap-fonts bl bonobo browserplugin bzip2 bzlib cairo calendar cdb cddb
cdr chroot cli cluster cpdflib crypt cscope ctype cups curl curlwrappers
dba dbase dbm dbus dbx dedicated dga dio directfb divx4linux dmacs dri
dts dv dvb dvd dvdr dvdread dynagraph edl eds emacs-w3 emboss encode esd
ethereal evo examples exif extraengine fam fastcgi fbcon fdftk ffmpeg
fftw filepro firebird firefox flac flash flatfile font-server foomaticdb
fortran fpx freetds ftp gb gcj gd gdbm geometry ggi gif gimpprint ginac
glitz glut gmp gnome gnomedb gnustep gnutls gphoto2 gpm graphviz
gstreamer gtk gtk2 gtkhtml guile hal icq imagemagick imap imlib inifile
innodb insecure-savers isdnlog ithreads jabber jack java javamail
javascript jbig jikes jms jmx jpeg jpeg2k junit jython kerberos krb4
ladcca lcms ldap leim libcaca libg++ libgda libwrap libwww live mad
maildir mailwrapper mcal mdb memlimit mhash mikmod milter mime ming mmap
mmx mmxext mng mono motif mozcalendar mozdevelop mozilla mozsvg
mozxmlterm mp3 mpeg mpi msn mssql mysql mysqli nas ncurses netcdf
nethack network new-login nis nls nntp nocd nodrm nptl nptlonly objc
oci8 odbc ofc offensive ogg oggvorbis openal opengl oracle oscar oss pam
pascal pcntl pcre pda pdflib perl perlsuid php plotutils png portaudio
posix postgres ppds pppd python qdbm qt quicktime raid readline real
recode reflection rhino rplay ruby samba sasl sdk sdl server session
shared sharedmem silc silverxp simplexml slang slp sndfile snmp soap
sockets socks5 source sox speex spell spl sql sqlite sse sse2 ssl stroke
subversion svg svga sysvipc szip tcltk tcpd tetex tga theora threads
tidy tiff tokenizer toolbar truetype truetype-fonts type1-fonts unicode
usb v4l v4l2 vcd vhosts video_cards_rage128 videos vorbis wddx
win32codecs winbind wmf wxwindows x86 xanim xface xine xinerama xml xml2
xmlrpc xmms xorg 

Re: [gentoo-user] dev-lang/php-5.1.4 emerge failing

2006-05-19 Thread kashani

Jason Ausmus wrote:

Okay, here's another one:

I can't emerge dev-lang/php-5.1.4.  It fails like this:

-

checking for mSQL support... no
checking for MSSQL support via FreeTDS... yes
checking for dnet_addr in -ldnet_stub... no
checking for MySQL support... yes
checking for specified location of the MySQL UNIX socket...
/var/run/mysqld/mysqld.sock
checking for MySQL UNIX socket location... /var/run/mysqld/mysqld.sock
configure: error: Cannot find MySQL header files under /usr/lib/mysql.
Note that the MySQL client library is not bundled anymore!

!!! ERROR: dev-lang/php-5.1.4 failed.


	I see that you're updating from 5.1.1 which was released several month 
ago, maybe Dec/Jan? Around that time slotted Mysql was active. It is 
possible that you Mysql libs are installed into /usr/lib/mysql-500 or 
something similar? Assuming you do I'd update Mysql first to a non 
slotted build and then try to install PHP again.


BTW if you're messing with Mysql 5.0 there was a default charset change 
from latin1 to utf8 around that time as well so watch your my.conf file. 
 Bugzilla was very unhappy when its charsets suddenly changed.


kashani
--
gentoo-user@gentoo.org mailing list



[gentoo-user] dev-lang/php-4* and xml

2006-03-20 Thread mel
Hi all,

It seems like the build for dev-lang/php-4* has no support for xml, 
even though 'xml' use flag have been set. I've tried unmerging libxml2
and sure enough, building dev-lang/php-4* pulled libxml2 as well,
but a simple test indicated undefined xml functions (such as
xml_parser_create()).

dev-lang/php-5* have no problems.

Any ideas, hints, or stuff that I've overlooked?

--mel
http://conference.hackinthebox.org


-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] dev-lang/php blocking

2006-01-17 Thread gentuxx
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Hi all.  Had a rather weird thing happen.  I hadn't run an 'emerge
world' in a few days, so when I did, there was a long grocery list of
things to update.  Most of them seem to be related to, or dependent
upon, the recent perl and php updates.

I had several things blocking the new packages, and I managed to get
them uninstalled so that the new packages can emerge.  But I'm stuck
with one left, that I can't get rid of:

[blocks B ] dev-lang/php (is blocking dev-php/php-4.4.0-r4)

But if I try to unemerge dev-lang/php:

emerge -CDatv dev-lang/php

 These are the packages that I would unmerge:

- --- Couldn't find dev-lang/php to unmerge.

 unmerge: No packages selected for removal.

So how can I get rid of this, so 'emerge world' can do its thing?

- --
gentux
echo hfouvyAdpy/ofu | perl -pe 's/(.)/chr(ord($1)-1)/ge'

gentux's gpg fingerprint == 34CE 2E97 40C7 EF6E EC40  9795 2D81 924A
6996 0993
-BEGIN PGP SIGNATURE-
Version: GnuPG v1.4.2 (GNU/Linux)

iD8DBQFDzTUrLYGSSmmWCZMRApv+AKDn2JiRU0v/Gz1sIVe26zeuCAS1uwCfamTF
sKdS6NBgj2dYVQc14hgkFK0=
=LRrq
-END PGP SIGNATURE-

-- 
gentoo-user@gentoo.org mailing list



[gentoo-user] dev-lang/php

2005-09-10 Thread Kurt Guenther


dev-lang/php-5.0 popped up as one of my updates, so I dutifully deleted 
dev-php/php and dev-php/mod_php, and emerged this package.


Now, I can't find a suitable mod_php, and portage wants to reemerge 
dev-php/php-4.4.0.


Seems like a catch-22, so I'm going to mask dev-lang/php for the moment.

It's odd, but my gentoo server didn't want to update dev-lang/php. 

Any other ideas? 


--Kurt

--
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] dev-lang/php

2005-09-10 Thread Bastian Balthazar Bux
Kurt Guenther wrote:
 
 dev-lang/php-5.0 popped up as one of my updates, so I dutifully deleted
 dev-php/php and dev-php/mod_php, and emerged this package.
 
 Now, I can't find a suitable mod_php, and portage wants to reemerge
 dev-php/php-4.4.0.
 
 Seems like a catch-22, so I'm going to mask dev-lang/php for the moment.
 
 It's odd, but my gentoo server didn't want to update dev-lang/php.
 Any other ideas?
 --Kurt
 

dev-lang/php-5.0 install both cli and apache2 stuff. Similar
question has been answered already on this list, search that.


-- 
gentoo-user@gentoo.org mailing list



Re: [gentoo-user] dev-lang/php

2005-09-10 Thread Kurt Guenther

Bastian Balthazar Bux wrote:


dev-lang/php-5.0 install both cli and apache2 stuff. Similar
question has been answered already on this list, search that.


 



I saw the discussion w/ last post 2 days ago.   It didn't answer my 
question because there is no mod_php for 5 and php-5.0 didn't seem to 
create a module for apache-2.0 even with 'apache2' on my USE list in 
make.conf.   I did a find on /usr and didn't find anything remotely like 
that.


btw, it looks like Marc-list removed their search function.  I don't get 
good results for this list with google.  Any suggestions?


--Kurt





--
gentoo-user@gentoo.org mailing list