[gentoo-user] emerging php with mysql and recode support

2007-01-31 Thread Stefán István
Hello! I tried to re-emerge php because I need to be compiled with the 'recode' use flag, but I get this error: * USE flag 'recode' conflicts with these USE flag(s): *mysql * You must disable these conflicting flags before you can emerge this package. * You can do this by disabling

Re: [gentoo-user] emerging php with mysql and recode support

2007-01-31 Thread Heinz Hombergs
Am Mittwoch, 31. Januar 2007 Boyd Stephen Smith Jr. wrote: File a bug, and be prepared with a patch -- cause there's probably a good reason they are considered conflicting. There are some more useflags that are conflicting with recode. I can rember that yaz is one of them. And I thing iconv

Re: [gentoo-user] emerging php with mysql and recode support

2007-02-01 Thread Stefán István
with recode. I can rember that yaz is one of them. And I thing iconv is a better solution than recode. ;) Thanks, iconv works well. István -- gentoo-user@gentoo.org mailing list

Re: [gentoo-user] emerging php with mysql and recode support

2007-01-31 Thread Bo Ørsted Andresen
On Wednesday 31 January 2007 11:49:33 Boyd Stephen Smith Jr. wrote: * USE flag 'recode' conflicts with these USE flag(s): *    mysql What shall I do if I need both mysql and recode support in php? File a bug, and be prepared with a patch -- cause there's probably a good reason

[gentoo-user] embed subtitles on video to ipod

2007-02-10 Thread Mauro Faccenda
Hi people, I have some videos and its respectives subtitles (.srt) and would like to watch them on my new iPod Video. I already know how to recode them so can be played on iPod, but I don't know how to insert the legend from the .srt text file. I was thinking about something like telling

Re: [gentoo-user] embed subtitles on video to ipod

2007-02-11 Thread Johám-Luís Miguéns Vila
On 16:59 Sat 10 Feb , Mauro Faccenda wrote: Hi people, I have some videos and its respectives subtitles (.srt) and would like to watch them on my new iPod Video. I already know how to recode them so can be played on iPod, but I don't know how to insert the legend from the .srt text

Re: [gentoo-user] utf8_general_ci

2015-05-05 Thread Fernando Rodriguez
prevent SQL injections. So you'll need to either decode it before using it (I think you can use the app- text/recode), or use a different method to filter anything that could be malicious SQL. I've saved the relevant information into a TXT file (address.txt) and tried to run: recode ISO-8859-9

Re: [gentoo-user] embed subtitles on video to ipod

2007-02-11 Thread Mauro Faccenda
On Sunday 11 February 2007 11:43, Johám-Luís Miguéns Vila wrote: On 16:59 Sat 10 Feb , Mauro Faccenda wrote: Hi people, I have some videos and its respectives subtitles (.srt) and would like to watch them on my new iPod Video. I already know how to recode them so can be played

Re: [gentoo-user] Convert windows-1250 database to UTF-8

2005-11-07 Thread Bruno Lustosa
On 11/7/05, Khan [EMAIL PROTECTED] wrote: I'm trying to convert my windows-1250 database to Unicode, UTF-8. Isthere any script that can do the job?What kind of database is it? If it's something the likes of postgresql or mysql, you could dump the database to a text file, use recode or iconv

Re: [gentoo-user] utf8_general_ci

2015-05-05 Thread Joseph
using it (I think you can use the app- text/recode), or use a different method to filter anything that could be malicious SQL. I've saved the relevant information into a TXT file (address.txt) and tried to run: recode ISO-8859-9..UTF8 address.txt address2.txt amp;#31481;amp;#40763;amp;#31435;amp

Re: [gentoo-user] Convert windows-1250 database to UTF-8

2005-11-07 Thread Khan
could dump the database to a text file, use recode or iconv to change the file encoding, and then import it into a new unicode database. Yes, that's just what I want to do. Database is MySQL. Can you PLS explain procedure, I have never done that before. -- gentoo-user@gentoo.org mailing list

[gentoo-user] sysvinit scripts

2006-07-12 Thread Egon Kocjan
, ...). After reading Gentoo documentation, it seems I will have to recode the startup script specifically for Gentoo, because functions start() and stop() are expected instead of start and stop script arguments. Is there another option like installing some sort of rcX.d compatibility? Thanks, Egon

Re: [gentoo-user] utf8_general_ci

2015-05-05 Thread Fernando Rodriguez
/recode), or use a different method to filter anything that could be malicious SQL. -- Fernando Rodriguez

Re: [gentoo-user] OT: what audio file format / container to play on Android.

2016-07-05 Thread David Haller
k mkvmerge -o output.mkv input.m4a or use youtube-dl / ffmpeg like this: youtube-dl -x --audio-format best \ --recode-video mkv --postprocessor-args "-acodec copy" URL Both give me a mkv containing the unaltered aac stream and plays well with mplayer, vlc, xine, -dn

Re: [gentoo-user] [OT?] How to get WebDAV going on Apache?

2014-03-12 Thread Neil Bothwick
-libmysqlclient -mhash -mssql -oci8- instant-client -odbc -pcntl -postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets -spell -sybase-ct -systemd -sysvipc -threads -tidy -wddx - xmlreader -xmlrpc -xpm -xslt 12,796 kB I have [ebuild R] dev-lang/php-5.5.10:5.5 USE=apache2 berkdb

Re: [gentoo-user] [OT?] How to get WebDAV going on Apache?

2014-03-13 Thread Peter Humphrey
-imap -inifile - iodbc -kerberos -ldap -ldap-sasl -libedit -libmysqlclient -mhash -mssql -oci8- instant-client -odbc -pcntl -postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets -spell -sybase-ct -systemd -sysvipc -threads -tidy -wddx - xmlreader -xmlrpc -xpm -xslt 12,796 kB I

Re: [gentoo-user] use CGI::FormBuilder::Multi; ...

2015-08-21 Thread Fernando Rodriguez
, but one possible solution is to html encode it. You can use app-text/recode as follows: # echo 'ü' | recode utf8...html uuml; Or just use the codes from: http://www.lsa.umich.edu/german/hmr/schreiben/umlaute/umlaute_ASCII_html.html -- Fernando Rodriguez

Re: [gentoo-user] Convert windows-1250 database to UTF-8

2005-11-07 Thread Renat Golubchyk
of database is it? If it's something the likes of postgresql or mysql, you could dump the database to a text file, use recode or iconv to change the file encoding, and then import it into a new unicode database. Yes, that's just what I want to do. Database is MySQL. Can you PLS explain

Re: [gentoo-user] editing MPEG2

2006-07-27 Thread Daniel Pielmeier
encoding mode so it uses mencoder (and you don't have to read the immense man page for mencoder) to recode the video. Not the whole video is encoded, only a maximum of 14 pictures (i think 15 pictures is the standard GOP lenght for MPEG video) around the cut mark depending on where exactly you want

Re: [gentoo-user] [OT] Decoding / encoding mp3 files

2006-09-01 Thread Hemmann, Volker Armin
inside most players. No need to recode them. And recoding: mp3 is a lossy format. If you turn them into wavs you have not only wavs based on reduced information, you remove the stuff that makes mp3 sound 'better' than they are. If you encode them again, you are removing more information. So

[gentoo-user] Re: {OT} tried Nimsoft Monitoring?

2013-09-16 Thread James
stacks probably need specific (customized) monitoring (hacks) tools, that are modified form existing open source solutions? Here's a solution, cheap and clean using htop: htop | recode utf-8 test.txt cat test.txt Surely a little research and you can some cool hacks? - Grant hth, James

[gentoo-user] modest list of miserable FAIL

2016-01-03 Thread Alan Grimes
incompatibility! tortoise portage # tree -L 2 . ├── app-cdr │ └── cdrdao-1.2.3-r2 ├── app-office │ └── texmacs-1.99.2-r1 ├── app-text │ └── recode-3.6_p20-r1 ├── dev-dotnet │ ├── gnome-sharp-2.24.2-r1 │ ├── gtk-sharp-2.12.21 │ ├── nuget-2.8.3 │ └── xdt-for-monodevelop-2.8.1 ├── dev-java

Re: [gentoo-user] use CGI::FormBuilder::Multi; ...

2015-08-22 Thread hw
for this question, but one possible Likely not, yet it could be a Gentoo-specific problem. solution is to html encode it. You can use app-text/recode as follows: # echo 'ü' | recode utf8...html uuml; Or just use the codes from: http://www.lsa.umich.edu/german/hmr/schreiben/umlaute/umlaute_ASCII_html.html

Re: [gentoo-user] php 4.4.1-r3 wont emerge

2006-02-06 Thread Michael George
; contained in the eclass is this line: # Recode is not liked confutils_use_conflict recode mysql imap nis Now, I don't know what this means, but it clearly is intended in some way. I also would suspect that the nis flag is not related to PHP itself, but one of its dependencies

[gentoo-user] can't upgrade Gentoo

2011-08-31 Thread Edward Martinez
-client -odbc -pcntl -pdo -pic -postgres -qdbm -recode -sapdb -sharedext -sharedmem -snmp -soap (-solid) -sqlite -sqlite3 -suhosin (-sybase-ct) -sysvipc -threads -tidy -wddx -xmlreader -xmlrpc -xmlwriter -xpm -xsl -zip The following REQUIRED_USE flag constraints are unsatisfied: truetype

Re: [gentoo-user] [OT?] How to get WebDAV going on Apache?

2014-03-15 Thread Peter Humphrey
-imap -inifile - iodbc -kerberos -ldap -ldap-sasl -libedit -libmysqlclient -mhash -mssql -oci8- instant-client -odbc -pcntl -postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets -spell -sybase-ct -systemd -sysvipc -threads -tidy -wddx - xmlreader -xmlrpc -xpm -xslt 12,796 kB I

[gentoo-user] Apache2 + PHP5 problem

2008-05-20 Thread Mateusz A. Mierzwiński
) -flatfile -force-cgi-redirect (-frontbase) -gd-external -gdbm -gmp -inifile -interbase -ipv6 (-java-external) -json -kerberos -ldap -ldap-sasl -libedit -mcve -mhash -msql -mssql -oci8 (-oci8-instant-client) -pdo -postgres -qdbm -recode -reflection -sapdb -sharedext -sharedmem -snmp (-solid) -spell

[gentoo-user] Need to add gd and mysql to PHP.

2007-07-22 Thread Mike Diehl
-oci8-instant-client -odbc -oracle7 -overload -pcntl -pfpro -pic -recode -sapdb -sharedext -sharedmem -sockets -solid -spell -suhosin -sybase -sybase-ct -sysvipc -threads -tokenizer -truetype -wddx -xmlrpc -xpm -xsl -yaz -zip 0 kB === How do I get

Re: [gentoo-user] Need to add gd and mysql to PHP.

2007-07-23 Thread Alex Fansky
-frontbase -ftp -gd-external -gmp -hyperwave-api -informix -inifile -interbase -iodbc -java-external -java-internal -kerberos -ldap -libedit -mcal -mcve -memlimit -mhash -ming -mnogosearch -msql -mssql -oci8 -oci8-instant-client -odbc -oracle7 -overload -pcntl -pfpro -pic -recode -sapdb -sharedext

Re: [gentoo-user] Need to add gd and mysql to PHP.

2007-07-23 Thread Mike Diehl
-mcve -memlimit -mhash -ming -mnogosearch -msql -mssql -oci8 -oci8-instant-client -odbc -oracle7 -overload -pcntl -pfpro -pic -recode -sapdb -sharedext -sharedmem -sockets -solid -spell -suhosin -sybase -sybase-ct -sysvipc -threads -tokenizer -truetype -wddx -xmlrpc -xpm -xsl -yaz -zip 0 kB [0

[gentoo-user] Re: phpMyAdmin

2007-08-21 Thread Thufir
-mcve - mhash -msql -mssql -mysql -oci8 -oci8-instant-client -odbc -pcntl -pdo - pdo-external -pic -posix -postgres -qdbm -recode -sapdb -sharedext - sharedmem -simplexml -snmp -soap -sockets -solid -suhosin -sybase -sybase- ct -sysvipc -threads -tidy -tokenizer -wddx -xmlreader -xmlrpc -xmlwriter

Re: [gentoo-user] PHP upgrade breaks Squirrelmail

2006-01-30 Thread Dan Johansson
-external -kerberos +ldap -libedit -mcve -memlimit +mhash -ming -mnogosearch -msql -mssql +mysql -mysqli +ncurses +nls -oci8 -oci8-instant-client -odbc -oracle7 -ovrimos -pcntl +pcre -pdo-external -pfpro -pic -posix -postgres -qdbm +readline -recode -sapdb -sasl +session -sharedext -sharedmem

Re: [gentoo-user] PHP upgrade breaks Squirrelmail

2006-01-30 Thread Ryan Tandy
-interbase -iodbc -ipv6 -java-external -kerberos +ldap -libedit -mcve -memlimit +mhash -ming -mnogosearch -msql -mssql +mysql -mysqli +ncurses +nls -oci8 -oci8-instant-client -odbc -oracle7 -ovrimos -pcntl +pcre -pdo-external -pfpro -pic -posix -postgres -qdbm +readline -recode -sapdb -sasl

Re: [gentoo-user] php uncompatible with nis USE flag?

2006-02-07 Thread Michael George
I solved this problem. It appears that emerge wasn't giving me all the errors that it should have. When I turned on the --debug switch, I found that there was an error that was never displaying to my screen which indicated that the USE flag recode is incompatible with some other flags, like

Re: [gentoo-user] i386-pc-linux-gnu-gcc broken

2005-05-03 Thread Lubos Kolouch
iconv icq imagemagick imap imlib jabber java javascript jpeg kde lm_sensors maildir mbox mime mmx mozilla mp3 mpeg msn mysql ncurses nocd offensive ogg oggvorbis opengl oss pcmcia pda pdflib perl php png qt quicktime readline recode samba sdl sox spell ssl truetype usb vcd vorbis wifi win32codecs wmf

Re: [gentoo-user] Convert windows-1250 database to UTF-8

2005-11-07 Thread Hans-Werner Hilse
kind of database is it? If it's something the likes of postgresql or mysql, you could dump the database to a text file, use recode or iconv to change the file encoding, and then import it into a new unicode database. Yes, that's just what I want to do. Database is MySQL. Can you PLS

Re: [gentoo-user] xmlrpc packages disappeared?

2006-10-18 Thread Maik Musall
-odbc -oracle7 -overload -ovrimos -pcntl +pcre -pfpro -pic -posix -postgres +readline -recode -sapdb +session -sharedext -sharedmem +snmp -sockets -solid +spell -sqlite +ssl -sybase -sybase-ct -sysvipc +threads -tokenizer +truetype +unicode -wddx +xml +xmlrpc +xpm -xsl -yaz -zip +zlib Regards -- Maik

Re: [gentoo-user] emerge php fails

2005-09-14 Thread Bastian Balthazar Bux
-pear -pfpro +png +posix -postgres -qdbm +readline -recode -sapdb -sasl +session -sharedext -sharedmem -simplexml -snmp -soap +sockets -solid -spell +spl +sqlite +ssl -sybase -sybase-ct +sysvipc -threads -tidy +tiff -tokenizer +truetype -wddx +xml2 -xmlrpc -xpm +xsl -yaz -zip +zlib 0 kB

Re: [gentoo-user] editing MPEG2

2006-07-27 Thread Nick Rout
(and you don't have to read the immense man page for mencoder) to recode the video. Not the whole video is encoded, only a maximum of 14 pictures (i think 15 pictures is the standard GOP lenght for MPEG video) around the cut mark depending on where exactly you want to cut i don't know if kino

[gentoo-user] OT - Question about depencies (PPP)

2006-08-16 Thread Michael Sullivan
-memlimit -mhash* -ming* -msql -mssql -mysqli -oci8 -oci8-instant-client -odbc -pcntl -pdo -pdo-external -pic -posix -postgres -qdbm -recode -sapdb -sharedext -sharedmem -simplexml -snmp -soap -sockets -solid -sqlite -sybase -sybase-ct -sysvipc -tidy -tokenizer -vm-goto -vm-switch -wddx -xmlreader

Re: [gentoo-user] [OT] Decoding / encoding mp3 files

2006-09-01 Thread sdoma
it. The artist/title info is in the id4 tags - you can edit them with lots of tools, even inside most players. No need to recode them. And recoding: mp3 is a lossy format. If you turn them into wavs you have not only wavs based on reduced information, you remove the stuff that makes mp3 sound 'better

Re: [gentoo-user] [OT] Decoding / encoding mp3 files

2006-09-01 Thread darren kirby
quoth the Hemmann, Volker Armin: On Friday 01 September 2006 17:47, sdoma wrote: even if there are tools - don't do it. The artist/title info is in the id4 tags - you can edit them with lots of tools, even inside most players. No need to recode them. This is true, no need to re-encode just

Re: [gentoo-user] can't upgrade Gentoo

2011-09-01 Thread Paul Hartman
-flatfile -fpm (-frontbase) -ftp -gd -gd-external -gmp -imap -inifile -interbase -intl -iodbc -kerberos -kolab -ldap-sasl -libedit -mhash -mssql -mysqli -mysqlnd -oci8 -oci8-instant-client -odbc -pcntl -pdo -pic -postgres -qdbm -recode -sapdb -sharedext -sharedmem -snmp -soap (-solid) -sqlite

Re: [gentoo-user] can't upgrade Gentoo

2011-09-01 Thread Edward Martinez
-bcs) -enchant (-esoob) -firebird -flatfile -fpm (-frontbase) -ftp -gd -gd-external -gmp -imap -inifile -interbase -intl -iodbc -kerberos -kolab -ldap-sasl -libedit -mhash -mssql -mysqli -mysqlnd -oci8 -oci8-instant-client -odbc -pcntl -pdo -pic -postgres -qdbm -recode -sapdb -sharedext -sharedmem

Re[2]: [gentoo-user] Nginx with PHP-FPM

2012-04-04 Thread Stefan Schmiedl
truetype unicode wddx xml xmlreader xmlrpc xmlwriter xsl zip zlib -apache2 -cdb -cjk -curlwrappers -debug -embed -enchant -firebird -flatfile (-frontbase) -ftp -inifile -intl -iodbc -kerberos -kolab -ldap -ldap-sasl -libedit -mssql -mysqlnd -oci8-instant-client -odbc -pic -qdbm -recode

Re: [gentoo-user] [OT?] How to get WebDAV going on Apache?

2014-03-01 Thread Peter Humphrey
unicode xml xmlwriter zip zlib -bcmath -cdb -cjk -debug -embed -enchant -firebird -flatfile -frontbase -imap -inifile -iodbc -ipv6 -kerberos -ldap -ldap-sasl -libedit -libmysqlclient -mhash -mssql -oci8- instant-client -odbc -pcntl -postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets

Re: [gentoo-user] [OT?] How to get WebDAV going on Apache?

2014-03-12 Thread Peter Humphrey
-libmysqlclient -mhash -mssql -oci8- instant-client -odbc -pcntl -postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets -spell -sybase-ct -systemd -sysvipc -threads -tidy -wddx - xmlreader -xmlrpc -xpm -xslt 12,796 kB I'm still getting the broken-WebDAV error. -- Regards Peter

Re: [gentoo-user] KDE and the new plasma 5 thing

2016-04-12 Thread Dale
was googling around I found out that the plug was pulled on kdm. The old kdm always worked for me but KDE5 and the plasma thing is a whole new can of worms code wise from what I read. I guess a fresh start was easier than trying to recode all that mess. I haven't tried rebooting/shutdown yet

Re: [gentoo-user] php 4.4.1-r3 wont emerge

2006-02-06 Thread Holly Bostick
-4_4.sapi eclass; contained in the eclass is this line: # Recode is not liked confutils_use_conflict recode mysql imap nis Now, I don't know what this means, but it clearly is intended in some way. I also would suspect that the nis flag is not related to PHP itself, but one of its

[gentoo-user] php uncompatible with nis USE flag?

2006-02-07 Thread Michael George
, to recompile anything with the USE flag previously active? From looking at the ebuild, it looks like this is due to php-4 inheriting the php-4_4.sapi eclass; contained in the eclass is this line: # Recode is not liked confutils_use_conflict recode mysql imap nis Now, I don't know

Re: [gentoo-user] php uncompatible with nis USE flag?

2006-02-07 Thread Michael George
the php-4_4.sapi eclass; contained in the eclass is this line: # Recode is not liked confutils_use_conflict recode mysql imap nis Now, I don't know what this means, but it clearly is intended in some way. I also would suspect that the nis flag is not related to PHP itself

Re: [gentoo-user] Apache2 + PHP5 problem

2008-05-20 Thread Alexey Medvedchikov
-recode -reflection -sapdb -sharedext -sharedmem -snmp (-solid) -spell -spl -sqlite -suhosin (-sybase) (-sybase-ct) -tidy -tokenizer -truetype -wddx -xpm -xsl -yaz -zip-external 0 kB -- gentoo-user@lists.gentoo.org mailing list Look for broken deps, after upgrading to 5.2.6_rc4 smth brokes

Re: [gentoo-user] Apache2 + PHP5 problem

2008-05-21 Thread Mateusz A. Mierzwiński
-qdbm -recode -reflection -sapdb -sharedext -sharedmem -snmp (-solid) -spell -spl -sqlite -suhosin (-sybase) (-sybase-ct) -tidy -tokenizer -truetype -wddx -xpm -xsl -yaz -zip-external 0 kB -- gentoo-user@lists.gentoo.org mailing list Look for broken deps, after upgrading to 5.2.6_rc4

Re: [gentoo-user] mozilla firefox 1.5 and gnome

2006-01-13 Thread Holly Bostick
are present in your open/save dialog (bookmarked folders, for example). Is there going to be a way of NOT making it the standard open/save dialog when firefox 1.5 gets unmasked? Masking or unmasking is not going to change the source code, which depends on GTK. Only upstream can recode the program

Re: [gentoo-user] emerge troubles

2006-02-14 Thread Jorge Almeida
-completion bitmap-fonts bzip2 cdb cdparanoia cdr crypt cups curl gif gtk gtk2 imap imlib java jpeg jpeg2k kde maildir motif ncurses nls nptl nsplugin opengl pam pdflib perl pic png posix python qt readline recode ssl tiff truetype truetype-fonts type1-fonts xml zlib userland_GNU kernel_linux

Re: [gentoo-user] ctype USE and php

2007-03-12 Thread Neil Bothwick
-ipv6 -java-external -json -kerberos -ldap -ldap-sasl -libedit -mcve -mhash -msql -mssql mysql -mysqli ncurses nls -oci8 -oci8-instant-client -odbc -pcntl pcre -pdo -pdo-external -pic -posix -postgres -qdbm readline -recode -reflection -sapdb session -sharedext -sharedmem -simplexml -snmp -soap

[OT] Was: [gentoo-user] Finding packages which provide a file

2006-05-22 Thread Ryan Tandy
recode reflection reiserfs sdl sendfile sensord session sftp sms spell spf spl sse sse2 ssl startup-notification stream subp subtitles suid symlink sysfs syslog tiff transcode truetype truetype-fonts trusted type1-fonts udev underscores unichrome unicode unsafe usb utf8 uudeview vim vim-pager

Re: [gentoo-user] how do I keep package from being updated?

2007-01-11 Thread John covici
-msql -mssql -mysql -mysqli -oci8 -oci8-instant-client -odbc -pcntl -pdo -pdo-external -pic -posix -postgres -qdbm -recode -sapdb -sasl -sharedext -sharedmem -simplexml -snmp -soap -sockets -solid -sqlite -sybase -sybase-ct -sysvipc -threads -tidy -tokenizer -vm-goto -vm-switch -wddx -xmlreader -xmlrpc

[gentoo-user] php-5.1.6-r4 failed

2006-09-13 Thread Daniel Iliev
ming * Disabling msql * Disabling mssql * Enabling ncurses * Enabling openssl * Enabling openssl-dir * Enabling pcntl * Enabling pcre-regex * Disabling pdo * Disabling pgsql * Enabling posix * Enabling pspell * Disabling recode * Disabling reflection

[gentoo-user] depclean / db php loop

2009-10-31 Thread Mark Knecht
) -ftp -gd-external -gmp -hash -imap -inifile (-interbase) -iodbc -ipv6 (-java-external) -json -kerberos -kolab -ldap-sasl -libedit -mcve -mhash -msql -mssql (-oci8) (-oci8-instant-client) -odbc -pcntl -pdo -pic -postgres -qdbm -recode -sapdb -sharedext -sharedmem -simplexml -snmp -soap -sockets (-solid

Re: [gentoo-user] [OT?] How to get WebDAV going on Apache?

2014-03-01 Thread Nilesh Govindrajan
-client -odbc -pcntl -postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets -spell -sybase-ct -systemd -sysvipc -threads -tidy -wddx - xmlreader -xmlrpc -xpm -xslt 0 kB I decided to try mysql (mariadb, actually) rather than sqlite; maybe I should revert to the simpler setup

Re: [gentoo-user] [OT?] How to get WebDAV going on Apache?

2014-03-01 Thread covici
-ldap -ldap-sasl -libedit -libmysqlclient -mhash -mssql -oci8- instant-client -odbc -pcntl -postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets -spell -sybase-ct -systemd -sysvipc -threads -tidy -wddx - xmlreader -xmlrpc -xpm -xslt 0 kB I decided to try mysql (mariadb

[gentoo-user] cannot emerge --config sys-lib/timezone-data yet

2020-10-18 Thread Jude DaShiell
dda cdr cracklib crypt css dbus debug dvdr espeak ffmpeg fftw flac fortran ftp git gnome gtk gui imap ipv6 mad mp3 mp4 mpeg mplayer mtp multilib mysql mysqli ncurses nntp nsplugin offensive ogg openal opus pcre pda pdf perl php pie plotutils policykit portaudio posix postgres -pulseaudio python

Re: [gentoo-user] cannot emerge --config sys-lib/timezone-data yet

2020-10-18 Thread Todd Goodman
ve ogg openal opus pcre pda pdf perl php pie plotutils policykit portaudio posix postgres -pulseaudio python qt4 qt5 quicktime readline recode rss ruby sasl seccomp slang smp sndfile snmp sockets sound sox speex spell sqlite ssl startup-notification static-libs subversion symlink syslog szip

[gentoo-user] www-apps/groupoffice php problem / alternative?

2011-01-20 Thread Christian Könitzer
mcve mhash msql mssql mysql mysqli mysqlnd ncurses nls oci8 oci8-instant-client odbc pcntl +pcre pdo +phar pic +posix postgres qdbm readline recode (+)reflection sapdb +session sharedext sharedmem +simplexml snmp soap sockets solid spell (+)spl sqlite sqlite3 ssl suhosin sybase-ct sysvipc threads

Re: [gentoo-user] Apache2 + PHP5 problem

2008-05-21 Thread Mateusz A. Mierzwiński
-instant-client) -pdo -postgres -qdbm -recode -reflection -sapdb -sharedext -sharedmem (-solid) -spell -spl -sqlite -suhosin (-sybase) (-sybase-ct) -tidy -tokenizer -truetype -wddx -xpm -xsl -yaz -zip-external 8,861 kB As You see every thing is OK. Flags are set same for apache and PHP

Re: [gentoo-user] Apache2 + PHP5 problem

2008-05-21 Thread Mateusz A. Mierzwiński
-mssql -oci8 (-oci8-instant-client) -pdo -postgres -qdbm -recode -reflection -sapdb -sharedext -sharedmem -snmp (-solid) -spell -spl -sqlite -suhosin (-sybase) (-sybase-ct) -tidy -tokenizer -truetype -wddx -xpm -xsl -yaz -zip-external 0 kB -- gentoo-user@lists.gentoo.org mailing list

Re: [gentoo-user] Apache2 + PHP5 problem

2008-05-21 Thread deface
) -json -kerberos -ldap -ldap-sasl -libedit - mcve -mhash -msql -mssql -oci8 (-oci8-instant-client) -pdo -postgres - qdbm -recode -reflection -sapdb -sharedext -sharedmem -snmp (-solid) - spell -spl -sqlite -suhosin (-sybase) (-sybase-ct) -tidy -tokenizer -truetype -wddx -xpm -xsl -yaz -zip

Re: [gentoo-user] Apache2 + PHP5 problem

2008-05-22 Thread Martins
-inifile -interbase -ipv6 (-java-external) -json -kerberos -ldap -ldap-sasl -libedit -mcve -mhash -msql -mssql -oci8 (-oci8-instant-client) -pdo -postgres -qdbm -recode -reflection -sapdb -sharedext -sharedmem -snmp (-solid) -spell -spl -sqlite -suhosin (-sybase) (-sybase-ct) -tidy

Re: [gentoo-user] apache: Directory index forbidden by Options directive

2007-10-08 Thread Arnau Bria
-iodbc -ipv6 -java-external -json -kerberos -ldap -ldap-sasl -libedit -mcve -mhash -msql -mssql -mysqli -oci8 -oci8-instant-client -odbc -pcntl -pdo -pdo-external -pic -posix -postgres -qdbm -recode -reflection -sapdb -sharedext -sharedmem -simplexml -soap -sockets -solid -spell -sqlite -suhosin

[gentoo-user] Re: MythWeb on Gentoo?

2009-05-10 Thread Mark Knecht
-force-cgi-redirect -frontbase -ftp -gd -gd-external -gmp -hash -imap -inifile -interbase -iodbc (-java-external) -kerberos -kolab -ldap-sasl -libedit -mcve -mhash -msql -mssql -mysqli -oci8 -oci8-instant-client -odbc -pcntl -pdo -pic -postgres -qdbm -recode -sapdb -sharedext -sharedmem -simplexml

[gentoo-user] Unable to update openoffice from 2.0.0 to 2.0.1

2005-12-23 Thread gvlp
opengl oss pam pcre pdflib perl png python qt quicktime readline recode scanner sdl slang spell sse ssl tcltk tc pd threads tiff truetype truetype-fonts type1-fonts udev usb vorbis xine xml2 xmms xv xvid zlib elibc_glibc kernel_linux userland_GNU Unset: ASFLAGS, CTARGET, LANG, LC_ALL, LDFLAGS

Re: [gentoo-user] mozilla firefox 1.5 and gnome

2006-01-14 Thread Trenton Adams
folders, for example). Is there going to be a way of NOT making it the standard open/save dialog when firefox 1.5 gets unmasked? Masking or unmasking is not going to change the source code, which depends on GTK. Only upstream can recode the program with a different toolkit. And that seems

[gentoo-user] Blocking weirdness

2006-01-19 Thread Michael Sullivan
-interbase -iodbc -ipv6 -java-external +kerberos +ldap -libedit -mcve -memlimit +mhash +ming -mnogosearch -msql -mssql +mysql -mysqli +ncurses +nls -oci8 -oci8-instant-client -odbc -oracle7 -ovrimos -pcntl +pcre -pdo-external -pear -pfpro -pic -posix -postgres -qdbm +readline +recode -sapdb +sasl

Re: [gentoo-user] equery, make.conf USE flag mismatch on amd64

2006-03-08 Thread Kumar Golap
jpeg kde lcms libcaca libg++ libwww lirc lm_sensors lzw lzw-tiff mad mikmod mng motif mozilla mp3 mpeg mysql ncurses nls nptl ogg oggvorbis openal opengl pam pam_console pcre pdflib perl png python qt quicktime readline recode scanner sdl slang speex spell sqlite ssl tcltk tcpd tetex tiff truetype

[gentoo-user] problem starting BillardGL (assertion failed)

2005-11-12 Thread b.n.
junit kde lcms libg++ libwww lua mad mikmod mmx mng motif mp3 mpeg ncurses nls ogg oggvorbis openal opengl oss pam pcre pdflib perl png python qt quicktime readline recode samba sdl slang spell sse ssl svg svga tcltk tcpd tetex tiff truetype truetype-fonts type1-fonts udev usb vorbis xine xml xml2

[gentoo-user] ctype USE and php

2007-03-12 Thread Arnau Bria
-external -json -kerberos -ldap -ldap-sasl -libedit -mcve -mhash -msql -mssql mysql -mysqli ncurses nls -oci8 -oci8-instant-client -odbc -pcntl pcre -pdo -pdo-external -pic -posix -postgres -qdbm readline -recode -reflection -sapdb session -sharedext -sharedmem -simplexml -snmp -soap -sockets -solid

[gentoo-user] What do I do about slocate 3.1/2.7 ?

2006-04-21 Thread Jules Colding
png pppd python quicktime readline recode reflection sdl session slang spell spl ssl tcltk tcpd tetex theora tiff truetype truetype-fonts type1-fonts udev unicode usb vorbis wma xine xml2 xmms xpm xv xvid zlib userland_GNU kernel_linux elibc_glibc Unset: ASFLAGS, CTARGET, INSTALL_MASK, LANG

Re: [gentoo-user] Finding packages which provide a file

2006-05-22 Thread Alexander Skwar
nozaptel nptl nsplugin offensive ogg opengl openssh pam_console pam_timestamp passfile password patented pccts pcmcia pcre perl perlsuid pic player png pnp pppd qt quicktime rar readline real recode reflection reiserfs sdl sendfile sensord session sftp sms spell spf spl sse sse2 ssl startup

[gentoo-user] Re: Php and Mysql 5 dependency

2007-01-25 Thread Leandro Melo de Sales
-hyperwave-api (-informix) -inifile -interbase -iodbc -ipv6 -java-external -libedit -mcve -memlimit -ming -msql -mssql -mysqli -oci8 (-oci8-instant-client) -odbc -pcntl -pdo -pdo-external -pic -qdbm -recode -sapdb -sharedext -sharedmem -simplexml -snmp -soap -sockets (-solid) (-sybase) (-sybase-ct

Re: [gentoo-user] [OT] Decoding / encoding mp3 files

2006-09-01 Thread Martins Steinbergs
or something similar) and in turn to code the MP3 with the proper information? even if there are tools - don't do it. The artist/title info is in the id4 tags - you can edit them with lots of tools, even inside most players. No need to recode them. And recoding: mp3

Re: [gentoo-user] php-5.1.6-r4 failed [SOLVED]

2006-09-13 Thread Daniel Iliev
ncurses * Enabling openssl * Enabling openssl-dir * Enabling pcntl * Enabling pcre-regex * Disabling pdo * Disabling pgsql * Enabling posix * Enabling pspell * Disabling recode * Disabling reflection * Disabling simplexml * Disabling shmop * Disabling

[gentoo-user] Re: reading php file code in text editor

2010-06-23 Thread Mick
-force-cgi-redirect -frontbase -ftp -gd -gd-external -gmp -hash -imap -inifile -interbase -iodbc -ipv6 -java-external -json -kerberos -kolab -ldap-sasl -libedit -mcve -mhash -msql -mssql -mysqli -oci8 -oci8-instant-client -odbc -pcntl -pdo -pic -posix -postgres -qdbm -recode -sapdb -sharedext

Re: [gentoo-user] Apache and PHP5

2010-12-05 Thread Mick
-kerberos -kolab - ldap-sasl -libedit -mssql -mysqli -mysqlnd -oci8 -oci8-instant-client -odbc - pcntl -pdo -pic -postgres -qdbm -recode -sapdb -sharedext -sharedmem -snmp - soap -sockets -solid -sqlite -sqlite3 -suhosin -sybase-ct -sysvipc -threads - tidy -wddx -xmlrpc -xpm -xsl -zip) www-servers

[gentoo-user] [OT] Using mutt instead of kmail

2012-01-08 Thread Mick
of the Surname, or part of the email address itself. The other difficulty is the key shortcuts in mutt do not behave as I would like them to, but this is that something I could recode so less of a problem. Is there anything that I could do to automate the digital signing and encryption to a level

Re: [gentoo-user] [OT] Using mutt instead of kmail

2012-01-08 Thread Frank Steinmetzger
address book I tried). In order to use lbdbq for autocompletion in mutt, add the following to muttrc: set query_command=lbdbq '%s' The other difficulty is the key shortcuts in mutt do not behave as I would like them to, but this is that something I could recode so less of a problem. Keyboard

Re: Fwd: Re: [gentoo-user] Two identical systems - different!

2014-03-04 Thread Peter Humphrey
-postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets -spell -sybase-ct -systemd -sysvipc -threads -tidy -wddx - xmlreader -xmlrpc -xpm -xslt Everything the instructions ask for is in that list, unless I've missed something, but maybe something else needs changing. As I said before

Re: Fwd: Re: [gentoo-user] Two identical systems - different!

2014-03-05 Thread Mick
-sasl -libedit -libmysqlclient -mhash -mssql -oci8- instant-client -odbc -pcntl -postgres -qdbm -recode (-selinux) -sharedmem - snmp -soap -sockets -spell -sybase-ct -systemd -sysvipc -threads -tidy -wddx - xmlreader -xmlrpc -xpm -xslt This looks fine. Everything the instructions ask

[gentoo-user] what's wrong with my USE= statement in /etc/portage/make.conf?

2020-10-18 Thread Jude DaShiell
ysqli ncurses nntp ogg openal opus pcre pda pdf perl php pie plotutils portaudio posix postgres -pulseaudio python quicktime readline recode rss ruby sasl seccomp slang smp sndfile snmp sockets sound sox speex spell sqlite ssl static-libs subversion symlink syslog szip taglib tcl tcmalloc tcpd telemetr

Re: [gentoo-user] cannot emerge --config sys-lib/timezone-data yet

2020-10-18 Thread Jude DaShiell
ACCEPTLICENSE="@EULA" > > USE="x a52 aac acpi accessibility alsa audiofile calendar cdda cdr cracklib > > crypt css dbus debug dvdr espeak ffmpeg fftw flac fortran ftp git gnome gtk > > gui imap ipv6 mad mp3 mp4 mpeg mplayer mtp multilib mysql mysqli ncurses > > n

Re: [gentoo-user] Few blockers left

2017-03-25 Thread thelma
tion to display parents omitted above !!! The ebuild selected to satisfy "dev-lang/php:7.0[fpm]" has unmet requirements. - dev-lang/php-7.0.15::gentoo USE="apache2 berkdb bzip2 cgi cli crypt ctype exif fileinfo filter gdbm hash iconv ipv6 json ldap mysql nls opcache phar po

Re: [gentoo-user] Strange firefox segfault

2009-01-27 Thread Willie Wong
mmx mmxext mng motif mozilla moznocompose moznomail moznoroaming mp3 mp4 mpeg musepack nas ncurses nethack network nls nptl nptlonly nsplugin offensive ogg ogg123 openexr opengl oscar pcre pdf perl pic plotutils png pnm pop posix postscript python quicktime readline recode reiserfs restrict

[gentoo-user] Re: MythWeb on Gentoo?

2009-05-10 Thread Mark Knecht
-client -odbc -pcntl -pdo -pic -postgres -qdbm -recode -sapdb -sharedext -sharedmem -simplexml -snmp -soap -sockets -solid -sqlite -suhosin -sybase -sybase-ct -sysvipc -tidy -tokenizer -wddx -xmlreader -xmlrpc -xmlwriter -xpm -xsl -yaz -zip (-zip-external) 0 kB Total: 1 package (1 reinstall

[gentoo-user] Blocking package... How do I fix it?

2005-12-22 Thread Jules Colding
lua lzw lzw-tiff mad mng motif mozilla mp3 mpeg ncurses nls nptl nptlonly nsplugin nvidia ogg opengl oss pam pdflib perl png python quicktime readline recode sdl slang spell ssl symlink tcltk tcpd tetex theora tiff truetype truetype-fonts type1-fonts udev unicode usb userlocales vorbis xine xml2

RE: [gentoo-user] Blocking weirdness

2006-01-19 Thread Jean Blignaut
+ming -mnogosearch -msql -mssql +mysql -mysqli +ncurses +nls -oci8 -oci8-instant-client -odbc -oracle7 -ovrimos -pcntl +pcre -pdo-external -pear -pfpro -pic -posix -postgres -qdbm +readline +recode -sapdb +sasl -session -sharedext -sharedmem -simplexml -snmp -soap -sockets -solid +spell -spl -sqlite

Re: [gentoo-user] Blocking weirdness

2006-01-20 Thread Michael Sullivan
-ovrimos -pcntl +pcre -pdo-external -pear -pfpro -pic -posix -postgres -qdbm +readline +recode -sapdb +sasl -session -sharedext -sharedmem -simplexml -snmp -soap -sockets -solid +spell -spl -sqlite +ssl -sybase -sybase-ct -sysvipc +threads -tidy +tiff -tokenizer +truetype -wddx +xml -xmlrpc -xpm

[gentoo-user] Can not emerge net-misc/openssh-4.2_p1-r1

2006-02-03 Thread Jules Colding
gtkhtml hal iconv idn imlib ipv6 java jpeg lcms ldap libwww lua lzw lzw-tiff mad mng motif mozilla mp3 mpeg ncurses nls nptl nptlonly nsplugin nvidia ogg opengl oss pam pdflib perl png python quicktime readline recode sdl slang spell ssl tcltk tcpd tetex theora tiff truetype truetype-fonts type1

[gentoo-user] Building mod_php-5.0.4; checking for dbminit

2005-04-29 Thread Kevin
-informix -ingres +inifile -iodbc +jpeg +kerberos +ldap -libedit +mcve -memlimit +mhash +mime +ming -mnogosearch -msession -msql -mssql +mysql -mysqli +ncurses +nis +nls -oci8 +odbc -oracle7 -ovrimos -pcntl +pcre -pfpro +png +posix +postgres -qdbm +readline -recode -sapdb +sasl +session -sharedext

[gentoo-user] Unable to unmerge php

2005-05-24 Thread fire-eyes
-mcve -memlimit -mhash -mime -ming -mnogosearch -msession -msql -mssql +mysql -mysqli +ncurses -nis +nls -oci8 -odbc -oracle7 -ovrimos -pcntl -pcre -pfpro +png -posix -postgres -qdbm +readline -recode -sapdb -sasl -session -sharedext -sharedmem -simplexml +snmp -soap -sockets -solid +spell -spl

Re: [gentoo-user] Unable to unmerge php

2005-05-24 Thread Rumen Yotov
+ldap -libedit -mcve -memlimit -mhash -mime -ming -mnogosearch -msession -msql -mssql +mysql -mysqli +ncurses -nis +nls -oci8 -odbc -oracle7 -ovrimos -pcntl -pcre -pfpro +png -posix -postgres -qdbm +readline -recode -sapdb -sasl -session -sharedext -sharedmem -simplexml +snmp -soap -sockets -solid

  1   2   >