boost error for linux source - looking in the wrong place?
I am trying to compile a linux source code on FreeBSD-9.1-PRERELEASE_amd64. at the ./configure stage I get this error: checking boost/foreach.hpp usability... no checking boost/foreach.hpp presence... no checking for boost/foreach.hpp... no configure: error: "BOOST library is missing" But, I have /usr/local/include/boost/foreach.hpp /usr/local/include/boost/test/utils/foreach.hpp So the folder where FreeBSD places this and the folder where configure looks (as linux) must be different. How can I correct this? The relevant code snippet from the configure file is: if test x"$ac_boost_inc" != x"no"; then CFLAGS+=" -I$ac_boost_inc " CXXFLAGS+=" -I$ac_boost_inc " ( CPPFLAGS+=" -I$ac_boost_inc " if test "${ac_cv_header_boost_foreach_hpp+set}" = set; then { echo "$as_me:$LINENO: checking for boost/foreach.hpp" >&5 echo $ECHO_N "checking for boost/foreach.hpp... $ECHO_C" >&6; } if test "${ac_cv_header_boost_foreach_hpp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 fi { echo "$as_me:$LINENO: result: $ac_cv_header_boost_foreach_hpp" >&5 echo "${ECHO_T}$ac_cv_header_boost_foreach_hpp" >&6; } else # Is the header compilable? { echo "$as_me:$LINENO: checking boost/foreach.hpp usability" >&5 echo $ECHO_N "checking boost/foreach.hpp usability... $ECHO_C" >&6; } cat >conftest.$ac_ext <<_ACEOF /* confdefs.h. */ _ACEOF cat confdefs.h >>conftest.$ac_ext cat >>conftest.$ac_ext <<_ACEOF /* end confdefs.h. */ $ac_includes_default -- View this message in context: http://freebsd.1045724.n5.nabble.com/boost-error-for-linux-source-looking-in-the-wrong-place-tp5759953.html Sent from the freebsd-ports mailing list archive at Nabble.com. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: fixing missing launch icons
This whole thing makes just absolutely no sense! None of my hand-added items appear in the launch menu (and I have tried several). Of the menu items that already exist, I am able to remove multiple entries and bring them down to single entry, but I am not able to change the category to something else. Is there some higher-level config file for each Desktop where other adjustments must be made?? Strange! -- View this message in context: http://freebsd.1045724.n5.nabble.com/fixing-missing-launch-icons-tp5759494p5759954.html Sent from the freebsd-ports mailing list archive at Nabble.com. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: boost error for linux source - looking in the wrong place?
On Sun, 11 Nov 2012 00:44:06 -0800 (PST) Beeblebrox wrote: > I am trying to compile a linux source code on FreeBSD-9.1-PRERELEASE_amd64. > at the ./configure stage I get this error: > > checking boost/foreach.hpp usability... no > checking boost/foreach.hpp presence... no > checking for boost/foreach.hpp... no > configure: error: "BOOST library is missing" > > > But, I have /usr/local/include/boost/foreach.hpp > /usr/local/include/boost/test/utils/foreach.hpp > > So the folder where FreeBSD places this and the folder where configure looks > (as linux) must be different. How can I correct this? The relevant code > snippet from the configure file is: > if test x"$ac_boost_inc" != x"no"; then > CFLAGS+=" -I$ac_boost_inc " > CXXFLAGS+=" -I$ac_boost_inc " > ( > CPPFLAGS+=" -I$ac_boost_inc " > if test "${ac_cv_header_boost_foreach_hpp+set}" = set; then > { echo "$as_me:$LINENO: checking for boost/foreach.hpp" >&5 > echo $ECHO_N "checking for boost/foreach.hpp... $ECHO_C" >&6; } > if test "${ac_cv_header_boost_foreach_hpp+set}" = set; then > echo $ECHO_N "(cached) $ECHO_C" >&6 > fi > { echo "$as_me:$LINENO: result: $ac_cv_header_boost_foreach_hpp" >&5 > echo "${ECHO_T}$ac_cv_header_boost_foreach_hpp" >&6; } > else > # Is the header compilable? > { echo "$as_me:$LINENO: checking boost/foreach.hpp usability" >&5 > echo $ECHO_N "checking boost/foreach.hpp usability... $ECHO_C" >&6; } > cat >conftest.$ac_ext <<_ACEOF > /* confdefs.h. */ > _ACEOF > cat confdefs.h >>conftest.$ac_ext > cat >>conftest.$ac_ext <<_ACEOF > /* end confdefs.h. */ > $ac_includes_default > It seems pretty obvious that you have to set whatever command line option sets ac_boost_inc to /usr/local/include/boost. What does configure --help show? -- Gary Jennejohn ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: Snag in math/py-numpy: checksum fails
On 10/28/2012 09:58 PM, Thomas Mueller wrote: > This time, the checksum apparently fails on two files in math/py-numpy. [snip] > => SHA256 Checksum OK for numpy-1.6.2.tar.gz. > => SHA256 Checksum mismatch for numpy-ref.pdf. > => SHA256 Checksum mismatch for numpy-user.pdf. > ===> Giving up on fetching files: numpy-ref.pdf numpy-user.pdf [snip] > http://docs.scipy.org/doc/numpy/numpy-ref.pdf > http://docs.scipy.org/doc/numpy/numpy-user.pdf "John W. O'Brien" responded: > As others have noted, this problem arises when upgrading math/py-numpy > because the PDFs across versions are not distinguishable by file name. > Cached distfiles are not replaced but fail the checksum step. > science/py-scipy has this problem too. > I've filed a bug report upstream for numpy, and will follow-up in due > course with an equivalent ticket for scipy. > http://projects.scipy.org/numpy/ticket/2245 > In the mean time, the work-around is to manually delete > $DISTDIR/numpy-{ref,user}.pdf before upgrading. Until this is resolved > upstream (or if it never is), perhaps the maintainer would develop a > local versioning system, or accept a patch that implements one. > Regards, > John Good, I hope they fix the bug, since it can pose problems for package management systems outside FreeBSD, as well as FreeBSD ports. My workaround was to go directly to the source and download the documentation files directly to the appropriate place in distfiles directory. But perhaps many users would not think of what I did, or would not use log files. Tom ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: fixing missing launch icons
11.11.2012 12:58, Beeblebrox пишет: > This whole thing makes just absolutely no sense! > None of my hand-added items appear in the launch menu (and I have tried > several). Of the menu items that already exist, I am able to remove multiple > entries and bring them down to single entry, but I am not able to change the > category to something else. > > Is there some higher-level config file for each Desktop where other > adjustments must be made?? > > Strange! Hm, seems that you miss desktop database update. You may use textproc/goldendict as a reference. Shot version: 1. Makefile should have "USE_GNOME=desktopfileutils". 2a. At post-install: stage do run -update-desktop-database (this is for ports). 2b. Insert to pkg-plist (this is for packages): - @exec %%LOCALBASE%%/bin/update-desktop-database @unexec %%LOCALBASE%%/bin/update-desktop-database - That will make update-desktop-database run after port/package install/deinstall and keep the desktop database in concurrent state. -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
xmlcatmgr gives error for: iso8879, docbook-sk, xmlcharent
I get similar "catalog error" message at install phase for 3 ports (build finishes correctly): textproc/iso8879, textproc/docbook-sk, textproc/xmlcharent Error msg: /usr/local/bin/xmlcatmgr -sc /usr/local/share/sgml/catalog.ports add CATALOG /usr/local/share/xml/xmlcharent/catalog xmlcatmgr: entry already exists for `/usr/local/share/xml/xmlcharent/catalog' of type `CATALOG' *** [do-install] Error code 1 I have tried to manually delete using the xmlcatmgr command and have also removed folders in /usr/local/share/xml/ and sgml, then tried to re-install. I gat the same error. Should I just delete catalog.ports file and start over? -- View this message in context: http://freebsd.1045724.n5.nabble.com/xmlcatmgr-gives-error-for-iso8879-docbook-sk-xmlcharent-tp5759961.html Sent from the freebsd-ports mailing list archive at Nabble.com. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
HUMOR TERAPIA: Antídoto para el Estrés en las Organizaciones Con Napoleón Rivero.
Si no logra ver este correo hague click aqui Buen dia para Soluciones Gerenciales es un gran Honor hacerle llegar esta invitacion a usted y la empresa la cual representa al evento HUMOR TERAPIA. Estamos seguros que sera un regalo muy especial para t http://news.soluciongerencial.com/v/vGe9bB2e86de303f641f75 http://news.soluciongerencial.com/r/303f641f75evGe9bB2e86d http://news.soluciongerencial.com/p/303f641f75evGe9bB2e86d http://news.soluciongerencial.com/pf/303f641f75evGe9bB2e86d http://news.soluciongerencial.com/ptw/303f641f75evGe9bB2e86d Si no logra ver este correo hague click [1]aqui Buen dia para Soluciones Gerenciales es un gran Honor hacerle llegar esta invitacion a usted y la empresa la cual representa al evento HUMOR TERAPIA. Estamos seguros que sera un regalo muy especial para tu personal en Navidad. Congreso: HUMOR TERAPIA: Antidoto para el Estres en las Organizaciones [2]Proximos Eventos | [3]Talleres Incompany [4] OBJETIVO Los Participantes tendran la capacidad de manejar el estres tanto en su vida personal y laboral, para de esta manera, lograr el mayor rendimiento efectivo en su trabajo. CONTENIDO LA RISA COMO FUENTE DE SALUD CONOCIENDO NUESTRA RISA APREDIENDO A REIRSE (EJERCICIOS) EL LADO POSITIVO A TRAVES DEL HUMOR EL HUMOR COMO ALGO SERIO EL HUMOR Y LA AUTOESTIMA ?COMO ES NUESTRO SENTIDO DEL HUMOR? DE LA CASA AL TRABAJO CON BUEN PIE EL HUMOR EN NUESTRO ENTORNO LABORAL ?COMO ES EL HUMOR EN MI AREA ESPECIFICA DE TRABAJO? ?QUIENES TIENEN MEJOR HUMOR, LOS JEFES O LOS SUBALTERNOS? ENFRENTANDO A EL PUBLICO CON BUEN HUMOR EL BUEN HUMOR AUMENTA LAS GANACIAS EJERCICIOS PARA VIVIR CON BUEN HUMOR NAPOLEON RIVERO Actor Egresado del Taller Nacional de Teatro de la fundacion rajatabla. Con mas de 20 montajes profesionales en su haber. Humorista de amplia y reconocida trayectoria. Actor durante 13 Anos del programa insignia del humor Venezolano "RADIO ROCHELA". Entre sus personajes mas destacados se encuentran: "LA NINITA" personaje que aun el publico recuerda con carino a traves de su frase de "Ya yo no soy chiquita" "LA BICHA" exitosa parodia de la popular periodista venezolana Berenice Gomez, la cual personalmente elogio la caracterizacion lograda. "DOCTOR KILO" Actualmente este personaje se encuentra entre los mas vistos del programa "A QUE TE RIES" siendo uno de los favoritos del publico venezolano. En el cine ha trabajado de la mano de directores de la talla de Roman Chalbaud, Luis Alberto Lamata, Jose Ramon Novoa. Dentro de su trabajo en la gran pantalla se encuentran, "HUELE PEGA", "SICARIO", "PANDEMONIUM" y "EL ENEMIGO". Dentro del mundo de las presentaciones en vivo ha compartido tarima con otros humoristas de amplio reconocimientos como Emilio Lovera, Laureano Marquez, Claudio Nazoa, Er Conde del Guacharo, Amilcar Rivero, entre otros; ganandose el reconocimiento y los elogios de sus companeros por su versatilidad y chispa en el escenario. FECHA Y LUGAR Viernes 23 de Noviembre de 2012 . 9 am a 1 pm. [5]Salones Imperial , Zona Industrial Norte (Valencia - Edo. Carabobo) [6]Ver Croquis Costo de Inversion (Precios NO incluyen I.V.A.) INCLUYE TARJETA DE MEMBRESIA, MATERIAL DE APOYO, CERTIFICADO Y REFRIGERIO. PROMOCIONES: * PAGUE 2 Y LLEVE 3 * PAGUE 4 Y LLEVE 6 * PAGUE 6 Y LLEVE 10 * PAGUE 12 Y LLEVE 20 * 25% DE DESCUENTO PARA ESTUDIANTES (Valido al presentar Carnet Vigente) [7] Lleve este Taller a Su Empresa (Modalidad INCOMPANY) Reserve sus cupos en [8]GERENCIALES.COM Para Mas Informacion: MASTER (0241) 838.8005 Telefax (0241) 832.4583 Celular (0414) 403.9050 BlackBerry PIN 22D0F49C Twitter @gerenciales [9] [10] Soluciones Gerenciales (Consiguetodo C.A., RIF: J-31225574-9) es una empresa inscrita en el INCE bajo el Nro. 529480, y registrada en el Ministerio del Poder Popular para la Educacion bajo el Nro. PR-0190-08 Le hemos enviado este correo a usted, que forma parte de una elite de profesionales exitosos y emprendedores en busqueda de Adiestramiento y Capacitacion en diversas areas empresariales, de vital importancia para el desenvolvimiento de las diferentes labores organizacionales de hoy en dia. Si usted considera que esta informacion no es de su interes, haga clic abajo para desuscribirse . References 1. "http://news.soluciongerencial.com//g/0d236ca4d189338905c7683270caf405e303f641f75eDe86de9bB2evGe"; 2. "http://news.soluciongerencial.com//g/0d236ca4d189338905c7683270caf405e303f641f75eDe86de9bB2evGe"; 3. "http://news.soluciongerencial.com//g/0d236ca4d189338905c7683270caf405e303f641f75eDe86de9bB2evGe"incompany 4. "http://news.soluciongerencial.com//g/0d236ca4d189338905c7683270caf405e303f641f75eDe86de9bB2evGe"; 5. "http://news.soluciongerencial.com//g/0d236ca4d189338905c7683270caf405e303f6
Re: fixing missing launch icons
Thanks for that suggestion. I will try it. When I checked the depends of that port I realized that I have another problem and maybe the reason for this problem is related to it. I have posted the problem here: http://freebsd.1045724.n5.nabble.com/xmlcatmgr-gives-error-for-iso8879-docbook-sk-xmlcharent-td5759961.html Also, to be sure: I must run "*$ update-desktop-database* after each port install if the port is a desktop app right? Thanks again. -- View this message in context: http://freebsd.1045724.n5.nabble.com/fixing-missing-launch-icons-tp5759494p5759964.html Sent from the freebsd-ports mailing list archive at Nabble.com. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: boost error for linux source - looking in the wrong place?
Hello and thanks for the input. configure --help shows knob for --with-boost-includes= which I try with /usr/local/include/boost -> gives me: ./configure: CFLAGS+= -I/usr/local/include/boost/ : not found ./configure: CXXFLAGS+= -I/usr/local/include/boost/ : not found ./configure: CPPFLAGS+= -I/usr/local/include/boost/ : not found checking boost/foreach.hpp usability... no checking boost/foreach.hpp presence... no checking for boost/foreach.hpp... no configure: error: "BOOST library is missing" checking for mysql headers and libraries... CFLAGS="-I/usr/local/include/mysql -pipe -fno-strict-aliasing -g" LIBS="-L/usr/local/lib/mysql -lmysqlclient_r -pthread -lz -lm" checking for LIBUUID... yes checking for LUA... no checking for LUA... configure: error: Package requirements (lua >= 5.1) were not met: Since ports tree has lang/lua50 (5.0.3), It seems I'll have to build LUA from source as well :( -- View this message in context: http://freebsd.1045724.n5.nabble.com/boost-error-for-linux-source-looking-in-the-wrong-place-tp5759953p5759965.html Sent from the freebsd-ports mailing list archive at Nabble.com. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
pkg upgrade - Nothing to do
HP# uname -a FreeBSD HP.lissyara.su 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Fri Jan 6 17:33:37 MSK 2012 lissy...@hp.lissyara.su:/usr/obj/usr/src/sys/GENERIC amd64 HP# grep -v ^# /usr/local/etc/pkg.conf packagesite: http://pkgbeta.FreeBSD.org/freebsd:9:x86:64/latest HP# pkg upgrade Updating repository catalogue Repository catalogue is up-to-date, no need to fetch fresh copy Nothing to do HP# pkg version -v | grep -v up-to-date apache-ant-1.8.3_1 < needs updating (port has 1.8.4) ca_root_nss-3.13.6 < needs updating (port has 3.14) ... more than 20 lines skipped thunderbird-i18n-16.0.1< needs updating (port has 16.0.2) xf86-input-mouse-1.7.1 < needs updating (port has 1.7.1_1) xterm-284 < needs updating (port has 286) HP# == how I can upgrade software, using pkg? +++ and, some DNS problem, with hosts described in pkg.conf HP# host pkg.FreeBSD.org HP# HP# host pkg.FreeBSD.org 8.8.8.8 Using domain server: Name: 8.8.8.8 Address: 8.8.8.8#53 Aliases: HP# ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: fixing missing launch icons
11.11.2012 14:35, Beeblebrox пишет: > Also, to be sure: I must run "*$ update-desktop-database* after each port > install if the port is a desktop app right? AFAIK, yes. BTW, and after such port is deinstalled. -- WBR, Boris Samorodov (bsam) FreeBSD Committer, http://www.FreeBSD.org The Power To Serve ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
HUMOR TERAPIA: Antídoto para el Estrés en las Organizaciones Con Napoleón Rivero.
Si no logra ver este correo hague click aqui Buen dia para Soluciones Gerenciales es un gran Honor hacerle llegar esta invitacion a usted y la empresa la cual representa al evento HUMOR TERAPIA. Estamos seguros que sera un regalo muy especial para t http://news.soluciongerencial.com/v/vHe9bB3e86de303f641f75 http://news.soluciongerencial.com/r/303f641f75evHe9bB3e86d http://news.soluciongerencial.com/p/303f641f75evHe9bB3e86d http://news.soluciongerencial.com/pf/303f641f75evHe9bB3e86d http://news.soluciongerencial.com/ptw/303f641f75evHe9bB3e86d Si no logra ver este correo hague click [1]aqui Buen dia para Soluciones Gerenciales es un gran Honor hacerle llegar esta invitacion a usted y la empresa la cual representa al evento HUMOR TERAPIA. Estamos seguros que sera un regalo muy especial para tu personal en Navidad. Congreso: HUMOR TERAPIA: Antidoto para el Estres en las Organizaciones [2]Proximos Eventos | [3]Talleres Incompany [4] OBJETIVO Los Participantes tendran la capacidad de manejar el estres tanto en su vida personal y laboral, para de esta manera, lograr el mayor rendimiento efectivo en su trabajo. CONTENIDO LA RISA COMO FUENTE DE SALUD CONOCIENDO NUESTRA RISA APREDIENDO A REIRSE (EJERCICIOS) EL LADO POSITIVO A TRAVES DEL HUMOR EL HUMOR COMO ALGO SERIO EL HUMOR Y LA AUTOESTIMA ?COMO ES NUESTRO SENTIDO DEL HUMOR? DE LA CASA AL TRABAJO CON BUEN PIE EL HUMOR EN NUESTRO ENTORNO LABORAL ?COMO ES EL HUMOR EN MI AREA ESPECIFICA DE TRABAJO? ?QUIENES TIENEN MEJOR HUMOR, LOS JEFES O LOS SUBALTERNOS? ENFRENTANDO A EL PUBLICO CON BUEN HUMOR EL BUEN HUMOR AUMENTA LAS GANACIAS EJERCICIOS PARA VIVIR CON BUEN HUMOR NAPOLEON RIVERO Actor Egresado del Taller Nacional de Teatro de la fundacion rajatabla. Con mas de 20 montajes profesionales en su haber. Humorista de amplia y reconocida trayectoria. Actor durante 13 Anos del programa insignia del humor Venezolano "RADIO ROCHELA". Entre sus personajes mas destacados se encuentran: "LA NINITA" personaje que aun el publico recuerda con carino a traves de su frase de "Ya yo no soy chiquita" "LA BICHA" exitosa parodia de la popular periodista venezolana Berenice Gomez, la cual personalmente elogio la caracterizacion lograda. "DOCTOR KILO" Actualmente este personaje se encuentra entre los mas vistos del programa "A QUE TE RIES" siendo uno de los favoritos del publico venezolano. En el cine ha trabajado de la mano de directores de la talla de Roman Chalbaud, Luis Alberto Lamata, Jose Ramon Novoa. Dentro de su trabajo en la gran pantalla se encuentran, "HUELE PEGA", "SICARIO", "PANDEMONIUM" y "EL ENEMIGO". Dentro del mundo de las presentaciones en vivo ha compartido tarima con otros humoristas de amplio reconocimientos como Emilio Lovera, Laureano Marquez, Claudio Nazoa, Er Conde del Guacharo, Amilcar Rivero, entre otros; ganandose el reconocimiento y los elogios de sus companeros por su versatilidad y chispa en el escenario. FECHA Y LUGAR Viernes 23 de Noviembre de 2012 . 9 am a 1 pm. [5]Salones Imperial , Zona Industrial Norte (Valencia - Edo. Carabobo) [6]Ver Croquis Costo de Inversion (Precios NO incluyen I.V.A.) INCLUYE TARJETA DE MEMBRESIA, MATERIAL DE APOYO, CERTIFICADO Y REFRIGERIO. PROMOCIONES: * PAGUE 2 Y LLEVE 3 * PAGUE 4 Y LLEVE 6 * PAGUE 6 Y LLEVE 10 * PAGUE 12 Y LLEVE 20 * 25% DE DESCUENTO PARA ESTUDIANTES (Valido al presentar Carnet Vigente) [7] Lleve este Taller a Su Empresa (Modalidad INCOMPANY) Reserve sus cupos en [8]GERENCIALES.COM Para Mas Informacion: MASTER (0241) 838.8005 Telefax (0241) 832.4583 Celular (0414) 403.9050 BlackBerry PIN 22D0F49C Twitter @gerenciales [9] [10] Soluciones Gerenciales (Consiguetodo C.A., RIF: J-31225574-9) es una empresa inscrita en el INCE bajo el Nro. 529480, y registrada en el Ministerio del Poder Popular para la Educacion bajo el Nro. PR-0190-08 Le hemos enviado este correo a usted, que forma parte de una elite de profesionales exitosos y emprendedores en busqueda de Adiestramiento y Capacitacion en diversas areas empresariales, de vital importancia para el desenvolvimiento de las diferentes labores organizacionales de hoy en dia. Si usted considera que esta informacion no es de su interes, haga clic abajo para desuscribirse . References 1. "http://news.soluciongerencial.com//g/86607aaf40961d463dc24691f188f1a2e303f641f75eDe86de9bB3evHe"; 2. "http://news.soluciongerencial.com//g/86607aaf40961d463dc24691f188f1a2e303f641f75eDe86de9bB3evHe"; 3. "http://news.soluciongerencial.com//g/86607aaf40961d463dc24691f188f1a2e303f641f75eDe86de9bB3evHe"incompany 4. "http://news.soluciongerencial.com//g/86607aaf40961d463dc24691f188f1a2e303f641f75eDe86de9bB3evHe"; 5. "http://news.soluciongerencial.com//g/86607aaf40961d463dc24691f188f1a2e303f6
Re: pkg upgrade - Nothing to do
On 11/11/2012 12:26 PM, Alex Keda wrote: HP# uname -a FreeBSD HP.lissyara.su 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Fri Jan 6 17:33:37 MSK 2012 lissy...@hp.lissyara.su:/usr/obj/usr/src/sys/GENERIC amd64 HP# grep -v ^# /usr/local/etc/pkg.conf packagesite: http://pkgbeta.FreeBSD.org/freebsd:9:x86:64/latest HP# pkg upgrade Updating repository catalogue Repository catalogue is up-to-date, no need to fetch fresh copy Nothing to do HP# pkg version -v | grep -v up-to-date apache-ant-1.8.3_1 < needs updating (port has 1.8.4) ca_root_nss-3.13.6 < needs updating (port has 3.14) ... more than 20 lines skipped thunderbird-i18n-16.0.1< needs updating (port has 16.0.2) xf86-input-mouse-1.7.1 < needs updating (port has 1.7.1_1) xterm-284 < needs updating (port has 286) HP# == how I can upgrade software, using pkg? The repository is not up-to-date. pkg version compares against the local ports tree. You can 1) Wait till the repository is updated if you want binary upgrades 2) Compile your ports like you would have done without pkgng (with the ports tree and your tools configured to use pkgng of course). +++ and, some DNS problem, with hosts described in pkg.conf HP# host pkg.FreeBSD.org HP# HP# host pkg.FreeBSD.org 8.8.8.8 Using domain server: Name: 8.8.8.8 Address: 8.8.8.8#53 Aliases: HP# pkgng does not use the A record of the DNS ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: pkg upgrade - Nothing to do
On 11.11.2012 15:58, Julien Laffaye wrote: > On 11/11/2012 12:26 PM, Alex Keda wrote: >> HP# uname -a >> FreeBSD HP.lissyara.su 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Fri Jan 6 >> 17:33:37 MSK 2012 >> lissy...@hp.lissyara.su:/usr/obj/usr/src/sys/GENERIC amd64 >> >> HP# grep -v ^# /usr/local/etc/pkg.conf >> packagesite: http://pkgbeta.FreeBSD.org/freebsd:9:x86:64/latest >> >> >> HP# pkg upgrade >> Updating repository catalogue >> Repository catalogue is up-to-date, no need to fetch fresh copy >> Nothing to do >> >> HP# pkg version -v | grep -v up-to-date >> apache-ant-1.8.3_1 < needs updating (port has 1.8.4) >> ca_root_nss-3.13.6 < needs updating (port has 3.14) >> ... more than 20 lines skipped >> thunderbird-i18n-16.0.1< needs updating (port has 16.0.2) >> xf86-input-mouse-1.7.1 < needs updating (port has 1.7.1_1) >> xterm-284 < needs updating (port has 286) >> HP# >> >> == >> how I can upgrade software, using pkg? > > The repository is not up-to-date. > pkg version compares against the local ports tree. > You can 1) Wait till the repository is updated if you want binary > upgrades what period between repository updates? last modifications files/directoris in http://pkgbeta.FreeBSD.org/freebsd:9:x86:64/latest ~1 month ago... it's too long. many bugfixes, security fixes commited into ports tree... ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: pkg upgrade - Nothing to do
On 11/11/2012, Alex Keda wrote: > On 11.11.2012 15:58, Julien Laffaye wrote: >> On 11/11/2012 12:26 PM, Alex Keda wrote: >>> HP# uname -a >>> FreeBSD HP.lissyara.su 9.0-RELEASE FreeBSD 9.0-RELEASE #0: Fri Jan 6 >>> 17:33:37 MSK 2012 >>> lissy...@hp.lissyara.su:/usr/obj/usr/src/sys/GENERIC amd64 >>> >>> HP# grep -v ^# /usr/local/etc/pkg.conf >>> packagesite: http://pkgbeta.FreeBSD.org/freebsd:9:x86:64/latest >>> >>> >>> HP# pkg upgrade >>> Updating repository catalogue >>> Repository catalogue is up-to-date, no need to fetch fresh copy >>> Nothing to do >>> >>> HP# pkg version -v | grep -v up-to-date >>> apache-ant-1.8.3_1 < needs updating (port has 1.8.4) >>> ca_root_nss-3.13.6 < needs updating (port has 3.14) >>> ... more than 20 lines skipped >>> thunderbird-i18n-16.0.1< needs updating (port has 16.0.2) >>> xf86-input-mouse-1.7.1 < needs updating (port has 1.7.1_1) >>> xterm-284 < needs updating (port has 286) >>> HP# >>> >>> == >>> how I can upgrade software, using pkg? >> >> The repository is not up-to-date. >> pkg version compares against the local ports tree. >> You can 1) Wait till the repository is updated if you want binary >> upgrades > what period between repository updates? > last modifications files/directoris in > http://pkgbeta.FreeBSD.org/freebsd:9:x86:64/latest > ~1 month ago... > > it's too long. > many bugfixes, security fixes commited into ports tree... This is still a beta, so I'm afraid you'll have to bear with us. Building a package set takes several days with extremely powerful machines (this is for one architecture, one FreeBSD version). Once pkgng becomes the main target for package builds, you will have your security fixes on time. Until then, you will have to build from ports. Chris ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
New Portal
[1]www.consol-ind.com References 1. http://www.consol-ind.com/ ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
empresas venezuela 2 - Confirmación de la modificación de datos
Hola, Hemos recibido una solicitud de modificación de sus datos como suscriptor de la publicación empresas venezuela 2. Para modificar estos datos, por favor, siga el enlace siguiente: http://www.29.mkitd2.com/listar_dados.php?hash=75e8efccc09573a537cb3736cc636a83&lang=es ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
empresas venezuela 2 - Confirmación de la modificación de datos
Hola, Hemos recibido una solicitud de modificación de sus datos como suscriptor de la publicación empresas venezuela 2. Para modificar estos datos, por favor, siga el enlace siguiente: http://www.29.mkitd2.com/listar_dados.php?hash=1c3cc16147c1e2e11b774b257694bd5c&lang=es ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
empresas venezuela 2 - Confirmación de la modificación de datos
Hola, Hemos recibido una solicitud de modificación de sus datos como suscriptor de la publicación empresas venezuela 2. Para modificar estos datos, por favor, siga el enlace siguiente: http://www.29.mkitd2.com/listar_dados.php?hash=6ca9ff8c2d22eb980c3d1cc035ade742&lang=es ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
empresas venezuela 2 - Confirmación de la modificación de datos
Hola, Hemos recibido una solicitud de modificación de sus datos como suscriptor de la publicación empresas venezuela 2. Para modificar estos datos, por favor, siga el enlace siguiente: http://www.29.mkitd2.com/listar_dados.php?hash=fb7ed18f069171a1d9162790b3a9d318&lang=es ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Уважаемый Пользователь Ресурса, подтвердите Вашу подписку пожалуйста
[cid:80fffb604869d563b1a2d58f513ad9@4c7b30ee9ab7d] Уважаемый Пользователь Ресурса, подтвердите Вашу подписку пожалуйста [cid:80fffb604869d563b1a2d58f513ad9@4c7b30ee9ab7d] Почтовый Дятел Уважаемый (-ая) Уважаемый Пользователь Ресурса, 6 ноября 2012 Ваш еmail po...@freebsd.org был занесен Вами, Вашими знакомыми, друзьями или коллегами в базу данных сервиса рассылок О ценах на горящие туры из Новоси6ирсkа 6есплатно Подтвердите пожалуйста своё согласие на получение наших писем, подключившись к Интернет и нажав вот на эту текстовую ссылку: [1] Да, кликая по этой ссылке, Я ВЫРАЖАЮ СВОЁ СОГЛАСИЕ на получение материалов рассылки. Или можно вписать следующую URL-строку в ваш браузер (в место для ввода адресной срочки): http://www.dyat2.ntel-nsk.ru/range94/index.php?5c07401dfb8a0bb996ba0885 1d78b67f47c88597931fa52bf183faddcb65d558 Предоставляемый сервис является информационным и предоставляется абсолютно бесплатно. Подробнее узнать о содержании рассылки вы можете [2]ВКонтакте Мы не просим отправлять нам денежные переводы и смс-активации, если Вас попросили это сделать от нашего имени, то это мошенничество. Подписка на рассылку ни к чему вас не обязывает и носит исключительно осведомительный характер. Уведомление об успешной подписке Вы получите на свой е-mail в течение одного часа. Подтвердить подписку необходимо в течение десяти суток от указанной выше даты. Сразу же после подтверждения подписки Вы получите наше первое письмо. Посылать их будут Вам с указанным дальше интервалом. Отказаться от рассылки Вы можете в любой момент. Cсылка для аннулирования этой подписки будет присутствовать в каждом нашем письме: [3]Отписка от рассылки С уважением, менеджер проекта Вероника Алексеевна [4]projec...@list.ru 11.11.2012 18:49:00 [cid:80fffb604869d563b1a2d58f513ad9@4c7b30ee9ab7d] Вероника Алексеевна, [5]projec...@list.ru References Visible links 1. http://www.dyat2.ntel-nsk.ru/range94/index.php?5c07401dfb8a0bb996ba08851d78b67f47c88597931fa52bf183faddcb65d558 2. http://vk.com/club37785853 3. http://www.dyat2.ntel-nsk.ru/range94/index.php?c945fd2dd76e7dedd3b6ffefbb6aaf7747c88597931fa52bf183faddcb65d55 4. mailto:projec...@list.ru 5. mailto:projec...@list.ru Hidden links: 6. mailto:projec...@list.ru ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
FreeBSD ports you maintain which are out of date
Dear port maintainer, The portscout new distfile checker has detected that one or more of your ports appears to be out of date. Please take the opportunity to check each of the ports listed below, and if possible and appropriate, submit/commit an update. If any ports have already been updated, you can safely ignore the entry. You will not be e-mailed again for any of the port/version combinations below. Full details can be found at the following URL: http://portscout.freebsd.org/po...@freebsd.org.html Port| Current version | New version +-+ databases/sqlclient | 1.5.3 | 1.6.0 +-+ If any of the above results are invalid, please check the following page for details on how to improve portscout's detection and selection of distfiles on a per-port basis: http://portscout.freebsd.org/info/portscout-portconfig.txt If wish to stop receiving portscout reminders, please contact portsc...@portscout.freebsd.org Thanks. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
ports@转发:享受生活 做你自己 李伟分享
至尊 玩家ports 91hGykmGgMAcJSi1j98K8H 要一同起执玩大侠邪贰恶的夜队生活,这里风景独好 L40giRg[1]>大侠 还不快来 References 1. http://pdx.be/a889 ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: FreeBSD Port: squid-3.2.3_1, Please, include kerberos_ldap_group helper
* Pavel Bychykhin (pa...@hte.vl.net.ua): > Hi! > > It would be nice to include the kerberos_ldap_group helper in $external_acl > list. Done, see ports/173564 . Note that you need to select LDAP and SASL authentication, too for it to be enabled. Best regards, -- Thomas-Martin Seck ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: boost error for linux source - looking in the wrong place?
On Sun, Nov 11, 2012 at 4:43 AM, Beeblebrox wrote: > Hello and thanks for the input. > configure --help shows knob for --with-boost-includes= which I try with > /usr/local/include/boost -> gives me: Try setting --with-boost-includes=/usr/local/include > ./configure: CFLAGS+= -I/usr/local/include/boost/ : not found > ./configure: CXXFLAGS+= -I/usr/local/include/boost/ : not found > ./configure: CPPFLAGS+= -I/usr/local/include/boost/ : not found > checking boost/foreach.hpp usability... no > checking boost/foreach.hpp presence... no > checking for boost/foreach.hpp... no > configure: error: "BOOST library is missing" > checking for mysql headers and libraries... > CFLAGS="-I/usr/local/include/mysql -pipe -fno-strict-aliasing -g" > LIBS="-L/usr/local/lib/mysql -lmysqlclient_r -pthread -lz -lm" > checking for LIBUUID... yes > checking for LUA... no > checking for LUA... configure: error: Package requirements (lua >= 5.1) were > not met: > > Since ports tree has lang/lua50 (5.0.3), It seems I'll have to build LUA > from source as well :( > You may have to set the location of the lua include files in the configure script similar to --with-boost-includes=. Scot ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
Re: boost error for linux source - looking in the wrong place?
Thanks. I just tried but got same error. Following part is suspicious though: ./configure: CFLAGS+= -I/usr/local/include : not found I read somewhere while searching on google, a brief note that boost and g++ need to be linked or some statement like that - I can't find it now. The message does seem to suggest a gcc/g++ linkage problem though? Do you want full output from config --help? Re lua: Big PIA as bsd.lua.mk is broken for >=51. I have emailed the port maintainer about it. Thanks -- View this message in context: http://freebsd.1045724.n5.nabble.com/boost-error-for-linux-source-looking-in-the-wrong-place-tp5759953p5760094.html Sent from the freebsd-ports mailing list archive at Nabble.com. ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"
pkg2ng & cpan modules (bsdpan auto-packaging failure)
Hi, I converted a machine to pkgng which has some auto-packaged packages registrations. What I mean with this is one of those bsdpan-* package registrations. pkg2ng complained about those, it failed to convert them. In my case it's a package registration which comes from SpamAssassin. I compiled the SA rules into compiled regexps via sa-compile. This registeres the result in /var/db/pkg/bsdpan-Mail-SpamAssassin-CompiledRegexps-body_* Is this a known problem? Will future package registrations via perl (bsdpan-*) work, or will it fail? Bye, Alexander. -- http://www.Leidinger.netAlexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 ___ freebsd-ports@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-ports To unsubscribe, send any mail to "freebsd-ports-unsubscr...@freebsd.org"