Re: cvs commit: ports/sysutils/fsc Makefile

2012-06-13 Thread Doug Barton
This should be using USE_RC_SUBR. Please see
http://www.freebsd.org/doc/en_US.ISO8859-1/books/porters-handbook/rc-scripts.html

On 06/12/2012 10:47, Beat Gaetzi wrote:
 beat2012-06-12 17:47:14 UTC
 
   FreeBSD ports repository
 
   Modified files:
 sysutils/fsc Makefile 
   Log:
   - Make rc.d script executable
   - Config file and binaries are installed in PREFIX
   - Bump PORTREVISION
   
   Approved by:trhodes@ (maintainer)
   
   Revision  ChangesPath
   1.2   +9 -1  ports/sysutils/fsc/Makefile
 
 http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/sysutils/fsc/Makefile.diff?r1=1.1r2=1.2f=u
 


-- 

This .signature sanitized for your protection


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


Re: cvs commit: ports/www/nginx Makefile ports/www/nginx/files nginx.sh.in ports/www/nginx-devel Makefile ports/www/nginx-devel/files nginx.sh.in

2012-06-13 Thread Doug Barton
Since it's only called in one place, there's no need to put the
directory code in a function. Also, instead of doing it in 3 steps you
can unconditionally use install as follows:

install -d -o %%WWWOWN%% -g %%WWWGRP%% -m 755 ${_tmpprefix}

hth,

Doug


On 06/12/2012 21:46, Sergey A. Osokin wrote:
 osa 2012-06-13 04:46:14 UTC
 
   FreeBSD ports repository
 
   Modified files:
 www/nginxMakefile 
 www/nginx/files  nginx.sh.in 
 www/nginx-devel  Makefile 
 www/nginx-devel/files nginx.sh.in 
   Log:
   Check existence temporary directory %%NGINX_TMPDIR%% before
   test configuration. (1)
   Use %%NGINX_RUNDIR%%, %%WWWOWN%% and %%WWWGRP%% variables defined
   in Makefile instead of hardcoded or new values.
   
   Bump PORTREVISION.
   
   Idea from PR:   168836  (1)
   
   Revision  ChangesPath
   1.464 +5 -1  ports/www/nginx-devel/Makefile
   1.14  +15 -3 ports/www/nginx-devel/files/nginx.sh.in
   1.337 +5 -1  ports/www/nginx/Makefile
   1.12  +15 -3 ports/www/nginx/files/nginx.sh.in
 
 http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/www/nginx-devel/Makefile.diff?r1=1.463r2=1.464f=u
 http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/www/nginx-devel/files/nginx.sh.in.diff?r1=1.13r2=1.14f=u
 http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/www/nginx/Makefile.diff?r1=1.336r2=1.337f=u
 http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/www/nginx/files/nginx.sh.in.diff?r1=1.11r2=1.12f=u
 


-- 

This .signature sanitized for your protection


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/misc/alevt Makefile

2012-06-13 Thread Baptiste Daroussin
bapt2012-06-13 06:42:13 UTC

  FreeBSD ports repository

  Modified files:
misc/alevt   Makefile 
  Log:
  Deprecated upstream as disappeared with the public distfile
  
  Revision  ChangesPath
  1.27  +3 -0  ports/misc/alevt/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


Re: cvs commit: ports/www/nginx Makefile ports/www/nginx/files nginx.sh.in ports/www/nginx-devel Makefile ports/www/nginx-devel/files nginx.sh.in

2012-06-13 Thread Sergey A. Osokin
Hi Doug,

On Tue, Jun 12, 2012 at 11:36:43PM -0700, Doug Barton wrote:
 Since it's only called in one place, there's no need to put the
 directory code in a function. Also, instead of doing it in 3 steps you
 can unconditionally use install as follows:
 
 install -d -o %%WWWOWN%% -g %%WWWGRP%% -m 755 ${_tmpprefix}

I do this at Makefile:
...
${MKDIR} ${ETCDIR} ${NGINX_TMPDIR}
${CHOWN} ${WWWOWN}:${WWWGRP} ${NGINX_TMPDIR}


Also, I do my changes in nginx.sh.in for tmpfs(5), could you look at
http://www.freebsd.org/cgi/query-pr.cgi?pr=168836 for details.

-- 
Sergey A. Osokin
o...@freebsd.org

 On 06/12/2012 21:46, Sergey A. Osokin wrote:
  osa 2012-06-13 04:46:14 UTC
  
FreeBSD ports repository
  
Modified files:
  www/nginxMakefile 
  www/nginx/files  nginx.sh.in 
  www/nginx-devel  Makefile 
  www/nginx-devel/files nginx.sh.in 
Log:
Check existence temporary directory %%NGINX_TMPDIR%% before
test configuration. (1)
Use %%NGINX_RUNDIR%%, %%WWWOWN%% and %%WWWGRP%% variables defined
in Makefile instead of hardcoded or new values.

Bump PORTREVISION.

Idea from PR:   168836  (1)

Revision  ChangesPath
1.464 +5 -1  ports/www/nginx-devel/Makefile
1.14  +15 -3 ports/www/nginx-devel/files/nginx.sh.in
1.337 +5 -1  ports/www/nginx/Makefile
1.12  +15 -3 ports/www/nginx/files/nginx.sh.in
  
  http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/www/nginx-devel/Makefile.diff?r1=1.463r2=1.464f=u
  http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/www/nginx-devel/files/nginx.sh.in.diff?r1=1.13r2=1.14f=u
  http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/www/nginx/Makefile.diff?r1=1.336r2=1.337f=u
  http://www.FreeBSD.org/cgi/cvsweb.cgi/ports/www/nginx/files/nginx.sh.in.diff?r1=1.11r2=1.12f=u
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/security/tor Makefile distinfo pkg-plist

2012-06-13 Thread Brendan Fabeny
bf  2012-06-13 06:55:25 UTC

  FreeBSD ports repository

  Modified files:
security/tor Makefile distinfo pkg-plist 
  Log:
  update to 0.2.2.37 and switch options to the new style
  
  Revision  ChangesPath
  1.82  +18 -15ports/security/tor/Makefile
  1.46  +2 -2  ports/security/tor/distinfo
  1.11  +1 -1  ports/security/tor/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/security/tor-devel Makefile pkg-plist

2012-06-13 Thread Brendan Fabeny
bf  2012-06-13 06:56:38 UTC

  FreeBSD ports repository

  Modified files:
security/tor-devel   Makefile pkg-plist 
  Log:
  (mostly cosmetic) changes to reduce the differences with security/tor
  
  Revision  ChangesPath
  1.134 +11 -11ports/security/tor-devel/Makefile
  1.17  +1 -1  ports/security/tor-devel/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


Re: cvs commit: ports/www/nginx Makefile ports/www/nginx/files nginx.sh.in ports/www/nginx-devel Makefile ports/www/nginx-devel/files nginx.sh.in

2012-06-13 Thread Doug Barton
On 06/12/2012 23:46, Sergey A. Osokin wrote:
 Hi Doug,
 
 On Tue, Jun 12, 2012 at 11:36:43PM -0700, Doug Barton wrote:
 Since it's only called in one place, there's no need to put the
 directory code in a function. Also, instead of doing it in 3 steps you
 can unconditionally use install as follows:

 install -d -o %%WWWOWN%% -g %%WWWGRP%% -m 755 ${_tmpprefix}
 
 I do this at Makefile:
 ...
 ${MKDIR} ${ETCDIR} ${NGINX_TMPDIR}
 ${CHOWN} ${WWWOWN}:${WWWGRP} ${NGINX_TMPDIR}

You should not do that in the Makefile since it's worthless for
packages. Also, the rc.d script should always do whatever is necessary
to make the service work ... both for general purposes and for packages.

 Also, I do my changes in nginx.sh.in for tmpfs(5), could you look at
 http://www.freebsd.org/cgi/query-pr.cgi?pr=168836 for details.

Yes, doing this in the rc.d script is especially important for things in
/tmp since it's pretty common for it to start clean at boot time.

hth,

Doug

-- 

This .signature sanitized for your protection


___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/misc/mshell Makefile

2012-06-13 Thread Erwin Lansing
erwin   2012-06-13 07:13:10 UTC

  FreeBSD ports repository

  Modified files:
misc/mshell  Makefile 
  Log:
  Mark BROKEN on 10.x: does not build
  
  Submitted by:   pointyhat
  
  Revision  ChangesPath
  1.25  +7 -1  ports/misc/mshell/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/www/node-devel Makefile distinfo

2012-06-13 Thread Frederic Culot
culot   2012-06-13 07:19:09 UTC

  FreeBSD ports repository

  Modified files:
www/node-devel   Makefile distinfo 
  Log:
  - Update to 0.7.10
  
  PR: ports/169022
  Submitted by:   Jin-Sih Lin lin...@gmail.com (maintainer)
  
  Revision  ChangesPath
  1.29  +1 -1  ports/www/node-devel/Makefile
  1.25  +2 -2  ports/www/node-devel/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/databases/evolution-data-server/files patch-configure

2012-06-13 Thread Don Lewis
truckman2012-06-13 07:36:50 UTC

  FreeBSD ports repository (src committer)

  Modified files:
databases/evolution-data-server/files patch-configure 
  Log:
  Rev 1.13 did not fix the build with Heimdal 1.5.x because the
  extra include files required by the updated com_err.h were
  guarded by #if HAVE_COM_ERR_H, which configure does not define
  when compiling the test program.  There was also an extra inclusion
  of com_err.h inside the #if/#endif block.  For some odd reason, a number
  of the other include file tests in the configure script are written
  with an extra #include, but it is harmless in those cases because the
  #if conditions are not met.
  
  Remove the #if test and the redundant include from the test program for
  com_err.h.  Make a similar fix to the test for et/com_err.h.
  
  Reviewed by:mezz
  
  Revision  ChangesPath
  1.14  +18 -12
ports/databases/evolution-data-server/files/patch-configure
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/sysutils/xsi Makefile

2012-06-13 Thread Erwin Lansing
erwin   2012-06-13 08:35:15 UTC

  FreeBSD ports repository

  Modified files:
sysutils/xsi Makefile 
  Log:
  Mark BROEKN on 10.x: does not build
  
  Submitted by:   pointyhat
  
  Revision  ChangesPath
  1.10  +7 -1  ports/sysutils/xsi/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports MOVED

2012-06-13 Thread Brendan Fabeny
bf  2012-06-13 08:36:56 UTC

  FreeBSD ports repository

  Modified files:
.MOVED 
  Log:
  grammar
  
  Revision  ChangesPath
  1.2878+36 -36ports/MOVED
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/www/p5-Catalyst-Model-DBIC-Schema Makefile distinfo

2012-06-13 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-06-13 08:40:50 UTC

  FreeBSD ports repository

  Modified files:
www/p5-Catalyst-Model-DBIC-Schema Makefile distinfo 
  Log:
  - Update to 0.60
  
  Changes:http://search.cpan.org/dist/Catalyst-Model-DBIC-Schema/Changes
  
  Revision  ChangesPath
  1.47  +1 -2  ports/www/p5-Catalyst-Model-DBIC-Schema/Makefile
  1.37  +2 -2  ports/www/p5-Catalyst-Model-DBIC-Schema/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/net/p5-Net-CLI-Interact Makefile distinfo

2012-06-13 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-06-13 08:41:30 UTC

  FreeBSD ports repository

  Modified files:
net/p5-Net-CLI-Interact Makefile distinfo 
  Log:
  - Update to 1.121640
  - Add LICENSE
  
  Changes:http://search.cpan.org/dist/Net-CLI-Interact/Changes
  
  Revision  ChangesPath
  1.8   +4 -1  ports/net/p5-Net-CLI-Interact/Makefile
  1.6   +2 -2  ports/net/p5-Net-CLI-Interact/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/devel/p5-Acme-MetaSyntactic Makefile distinfo

2012-06-13 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-06-13 08:42:01 UTC

  FreeBSD ports repository

  Modified files:
devel/p5-Acme-MetaSyntactic Makefile distinfo 
  Log:
  - Update to 1.003
  - Add TEST_DEPENDS
  
  Changes:http://search.cpan.org/dist/Acme-MetaSyntactic/Changes
  
  Revision  ChangesPath
  1.33  +8 -2  ports/devel/p5-Acme-MetaSyntactic/Makefile
  1.31  +2 -2  ports/devel/p5-Acme-MetaSyntactic/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/net/p5-Net-Appliance-Session Makefile distinfo pkg-plist

2012-06-13 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-06-13 08:42:43 UTC

  FreeBSD ports repository

  Modified files:
net/p5-Net-Appliance-Session Makefile distinfo pkg-plist 
  Log:
  - Update to 3.121640
  - Add LICENSE
  
  Changes:http://search.cpan.org/dist/Net-Appliance-Session/Changes
  
  Revision  ChangesPath
  1.7   +4 -1  ports/net/p5-Net-Appliance-Session/Makefile
  1.6   +2 -2  ports/net/p5-Net-Appliance-Session/distinfo
  1.3   +1 -0  ports/net/p5-Net-Appliance-Session/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/databases/postgresql-plruby Makefile

2012-06-13 Thread Akinori MUSHA
knu 2012-06-13 08:51:13 UTC

  FreeBSD ports repository

  Modified files:
databases/postgresql-plruby Makefile 
  Log:
  Avoid fetch during build.
  
  PR: ports/168969
  Submitted by:   swills
  
  Revision  ChangesPath
  1.43  +1 -1  ports/databases/postgresql-plruby/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


Re: cvs commit: ports MOVED UPDATING ports/graphics Makefile ports/converters/pdf2djvu Makefile ports/graphics/ImageMagick Makefile ports/graphics/apvlv Makefile ports/graphics/djview4 Makefile ports/

2012-06-13 Thread Koop Mast
On Wed, 2012-06-13 at 04:49 +, Brendan Fabeny wrote:
 bf  2012-06-13 04:49:48 UTC
 
   FreeBSD ports repository
 
   Modified files:
 .MOVED UPDATING 
 graphics Makefile 
 converters/pdf2djvu  Makefile 
 graphics/ImageMagick Makefile 
 graphics/apvlv   Makefile 
 graphics/djview4 Makefile 
 graphics/djvulibre   Makefile distinfo pkg-descr pkg-plist 
 graphics/djvulibre/files patch-desktopfiles_Makefile.in 
 graphics/evince  Makefile 
 graphics/gscan2pdf   Makefile 
 graphics/okular  Makefile 
   Added files:
 graphics/djvulibre/files patch-config_ltmain.sh 
  patch-libdjvu__miniexp.cpp 
  patch-tools_Makefile.in 
  patch-tools_any2djvu 
  patch-xmltools_Makefile.in 
   Removed files:
 graphics/djvulibre/files patch-configure 
  patch-gui_djview_Makefile.in 
 graphics/djvulibre-nox11 Makefile distinfo pkg-descr pkg-plist 
 graphics/djvulibre-nox11/files patch-config_ltmain.sh 
patch-desktopfiles_Makefile.in 
patch-libdjvu__GSmartPointer.h 
patch-tools_Makefile.in 
patch-tools_any2djvu 
patch-xmltools_Makefile.in 
   Log:
   update DjVuLibre to 3.5.25.3 and adjust dependent ports: the QT3 GUI that 
 was
   formerly in graphics/djvulibre has been removed, and 
 graphics/djvulibre-nox11
   has been merged back into graphics/djvulibre
   

Hello, I believe you also need to bump the portrevision, of ports that
depend on djvulibre, because the shared library is bumped from .24
to .25.

-Koop

___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


Re: cvs commit: ports MOVED UPDATING ports/graphics Makefile ports/converters/pdf2djvu Makefile ports/graphics/ImageMagick Makefile ports/graphics/apvlv Makefile ports/graphics/djview4 Makefile ports/

2012-06-13 Thread b. f.
On 6/13/12, Koop Mast k...@rainbow-runner.nl wrote:
 On Wed, 2012-06-13 at 04:49 +, Brendan Fabeny wrote:
 bf  2012-06-13 04:49:48 UTC

   FreeBSD ports repository

   Modified files:
 .MOVED UPDATING
 graphics Makefile
 converters/pdf2djvu  Makefile
 graphics/ImageMagick Makefile
 graphics/apvlv   Makefile
 graphics/djview4 Makefile
 graphics/djvulibre   Makefile distinfo pkg-descr pkg-plist
 graphics/djvulibre/files patch-desktopfiles_Makefile.in
 graphics/evince  Makefile
 graphics/gscan2pdf   Makefile
 graphics/okular  Makefile
   Added files:
 graphics/djvulibre/files patch-config_ltmain.sh
  patch-libdjvu__miniexp.cpp
  patch-tools_Makefile.in
  patch-tools_any2djvu
  patch-xmltools_Makefile.in
   Removed files:
 graphics/djvulibre/files patch-configure
  patch-gui_djview_Makefile.in
 graphics/djvulibre-nox11 Makefile distinfo pkg-descr pkg-plist
 graphics/djvulibre-nox11/files patch-config_ltmain.sh
patch-desktopfiles_Makefile.in
patch-libdjvu__GSmartPointer.h
patch-tools_Makefile.in
patch-tools_any2djvu
patch-xmltools_Makefile.in
   Log:
   update DjVuLibre to 3.5.25.3 and adjust dependent ports: the QT3 GUI
 that was
   formerly in graphics/djvulibre has been removed, and
 graphics/djvulibre-nox11
   has been merged back into graphics/djvulibre


 Hello, I believe you also need to bump the portrevision, of ports that
 depend on djvulibre, because the shared library is bumped from .24
 to .25.

 -Koop



I bumped the revisions of three ports that linked to the libdjvulibre
shared library.  The other dependent ports either called djvulibre
binary executables by name, or were indirect dependencies on
graphics/okular -- some of these linked to libokularcore, but I didn't
notice any that linked to the separate okularGenerator_djvu module,
which is the only part of okular that links to libdjvulibre. However,
if you know of a specific port that needs to be bumped, please let me
know.

b.
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/print/pdflib Makefile distinfo ports/print/pdflib/files patch-libs_png_pngusr.h ports/print/pdflib-perl Makefile

2012-06-13 Thread Alex Dupre
ale 2012-06-13 09:42:06 UTC

  FreeBSD ports repository

  Modified files:
print/pdflib Makefile distinfo 
print/pdflib-perlMakefile 
  Removed files:
print/pdflib/files   patch-libs_png_pngusr.h 
  Log:
  Update to 7.0.5p3 and convert to OptionsNG.
  
  Revision  ChangesPath
  1.5   +1 -1  ports/print/pdflib-perl/Makefile
  1.64  +9 -12 ports/print/pdflib/Makefile
  1.28  +2 -2  ports/print/pdflib/distinfo
  1.2   +0 -127ports/print/pdflib/files/patch-libs_png_pngusr.h (dead)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/databases/php5-pdo Makefile ports/databases/php5-pdo/files patch-pdo_sql_parser.re

2012-06-13 Thread Alex Dupre
ale 2012-06-13 09:57:17 UTC

  FreeBSD ports repository

  Modified files:
databases/php5-pdo   Makefile 
  Added files:
databases/php5-pdo/files patch-pdo_sql_parser.re 
  Log:
  Fix a parsing bug in the prepared statements that can lead to access 
violations.
  
  Obtained from:  PHP git repo
  
  Revision  ChangesPath
  1.4   +1 -0  ports/databases/php5-pdo/Makefile
  1.1   +42 -0 ports/databases/php5-pdo/files/patch-pdo_sql_parser.re 
(new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/lang/php5-extensions Makefile

2012-06-13 Thread Alex Dupre
ale 2012-06-13 10:12:44 UTC

  FreeBSD ports repository

  Modified files:
lang/php5-extensions Makefile 
  Log:
  Switch to OptionsNG.
  
  PR: ports/168946
  Submitted by:   John Marshall john.marsh...@riverwillow.com.au
  
  Revision  ChangesPath
  1.26  +80 -80ports/lang/php5-extensions/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/devel/cutter Makefile distinfo pkg-plist ports/devel/cutter/files patch-test_run-test.sh

2012-06-13 Thread Romain Tarti�re
romain  2012-06-13 10:46:31 UTC

  FreeBSD ports repository

  Modified files:
devel/cutter Makefile distinfo pkg-plist 
  Added files:
devel/cutter/files   patch-test_run-test.sh 
  Log:
  Update to 1.2.0.
  
  Revision  ChangesPath
  1.9   +1 -2  ports/devel/cutter/Makefile
  1.7   +2 -2  ports/devel/cutter/distinfo
  1.1   +11 -0 ports/devel/cutter/files/patch-test_run-test.sh (new)
  1.7   +6 -1  ports/devel/cutter/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/devel/jakarta-commons-daemon Makefile ports/devel/jakarta-commons-daemon/files patch-man_jsvc.1.xml patch-native_arguments.c patch-native_jsvc-unix.c

2012-06-13 Thread Alex Dupre
ale 2012-06-13 11:21:24 UTC

  FreeBSD ports repository

  Modified files:
devel/jakarta-commons-daemon Makefile 
devel/jakarta-commons-daemon/files patch-native_jsvc-unix.c 
  Added files:
devel/jakarta-commons-daemon/files patch-man_jsvc.1.xml 
   patch-native_arguments.c 
  Log:
  Fix and improve -wait parameter support.
  
  Revision  ChangesPath
  1.7   +1 -0  ports/devel/jakarta-commons-daemon/Makefile
  1.1   +10 -0 
ports/devel/jakarta-commons-daemon/files/patch-man_jsvc.1.xml (new)
  1.1   +22 -0 
ports/devel/jakarta-commons-daemon/files/patch-native_arguments.c (new)
  1.2   +33 -4 
ports/devel/jakarta-commons-daemon/files/patch-native_jsvc-unix.c
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/www/tomcat7 Makefile ports/www/tomcat7/files tomcat7.in

2012-06-13 Thread Alex Dupre
ale 2012-06-13 11:22:56 UTC

  FreeBSD ports repository

  Modified files:
www/tomcat7  Makefile 
www/tomcat7/filestomcat7.in 
  Log:
  Add support for custom wait time and increase the default to 30 seconds.
  
  PR: ports/168442
  Submitted by:   Bruno Ribeiro da Silva cont...@brunoribeiro.org
  
  Revision  ChangesPath
  1.81  +1 -0  ports/www/tomcat7/Makefile
  1.7   +7 -2  ports/www/tomcat7/files/tomcat7.in
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/ports-mgmt/portmaster Makefile distinfo

2012-06-13 Thread Doug Barton
dougb   2012-06-13 11:39:23 UTC

  FreeBSD ports repository

  Modified files:
ports-mgmt/portmaster Makefile distinfo 
  Log:
  New Features
  
  Print the same progress update that goes to the term title in-line,
  and apply various improvements to that code.
  
  Move 'make clean' to the background. There is no point waiting around
  for it to finish. In the case of very large work directories this may
  cause some I/O contention during the unpacking of the next port to
  build, but in most cases this should be lost in the noise.
  
  Other Improvements
  ==
  Speed up the determination of WRKDIRPREFIX, and do not bother looking
  for empty directories if we exited abnormally.
  
  Add code to detect dependency loops created by moving part of a port
  into another port, and CONFLICT'ing on previous versions of that port
  (ala textproc/p5-XML-SAX - p5-XML-SAX-Base). When a loop is detected
  suggest that the user try pkg_updating.
  
  Bug Fixes
  =
  Improve error handling for mktemp
  
  Improve handling of abnormal exits (such as ^C, failed port, etc.),
  especially when the first exit happens in a child process.
  
  If the second argument to -o is something that is completely non-existent,
  report in the error message what the user typed on the command line.
  Reported by:avilla
  
  In clean_build_only_list() remove ports that are already installed
  when using --delete-build-only to prevent them from being spuriously
  removed.
  Reported by:avilla
  
  Revision  ChangesPath
  2.51  +1 -2  ports/ports-mgmt/portmaster/Makefile
  2.15  +4 -4  ports/ports-mgmt/portmaster/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports MOVED ports/games Makefile ports/games/wesnoth-devel Makefile distinfo pkg-descr pkg-plist ports/games/wesnoth-devel/files patch-CMakeLists.txt patch-doc-CMakeLists.txt patch-po-CMak

2012-06-13 Thread Alex Kozlov
ak  2012-06-13 11:57:21 UTC

  FreeBSD ports repository

  Modified files:
.MOVED 
gamesMakefile 
  Removed files:
games/wesnoth-devel  Makefile distinfo pkg-descr pkg-plist 
games/wesnoth-devel/files patch-CMakeLists.txt 
  patch-doc-CMakeLists.txt 
  patch-po-CMakeLists.txt 
  patch-src-CMakeLists.txt 
  patch-src-ana-src-CMakeLists.txt 
  patch-src-gettext.cpp 
  patch-src-gettext.hpp 
  Log:
  Remove expired port:
  2012-05-10 games/wesnoth-devel BROKEN for more than 6 month
  
  Approved by:eadler (mentor)
  
  Revision  ChangesPath
  1.2879+2 -1  ports/MOVED
  1.1441+0 -1  ports/games/Makefile
  1.102 +0 -177ports/games/wesnoth-devel/Makefile (dead)
  1.62  +0 -2  ports/games/wesnoth-devel/distinfo (dead)
  1.3   +0 -74 ports/games/wesnoth-devel/files/patch-CMakeLists.txt 
(dead)
  1.2   +0 -7  ports/games/wesnoth-devel/files/patch-doc-CMakeLists.txt 
(dead)
  1.2   +0 -24 ports/games/wesnoth-devel/files/patch-po-CMakeLists.txt 
(dead)
  1.2   +0 -22 ports/games/wesnoth-devel/files/patch-src-CMakeLists.txt 
(dead)
  1.3   +0 -34 
ports/games/wesnoth-devel/files/patch-src-ana-src-CMakeLists.txt (dead)
  1.2   +0 -15 ports/games/wesnoth-devel/files/patch-src-gettext.cpp 
(dead)
  1.2   +0 -25 ports/games/wesnoth-devel/files/patch-src-gettext.hpp 
(dead)
  1.2   +0 -7  ports/games/wesnoth-devel/pkg-descr (dead)
  1.65  +0 -1552   ports/games/wesnoth-devel/pkg-plist (dead)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/misc/freebsd-doc-all Makefile ports/misc/freebsd-doc-en Makefile

2012-06-13 Thread Gabor Kovesdan
gabor   2012-06-13 13:20:07 UTC

  FreeBSD ports repository

  Modified files:
misc/freebsd-doc-all Makefile 
misc/freebsd-doc-en  Makefile 
  Log:
  - Bump PORTEPOCH after changing versioning to follow SVN revisions of the
doc tree
  
  Approved by:doceng (implicit)
  Reported by:erwin
  
  Revision  ChangesPath
  1.46  +1 -0  ports/misc/freebsd-doc-all/Makefile
  1.50  +1 -0  ports/misc/freebsd-doc-en/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/security/quantis Makefile

2012-06-13 Thread Alex Dupre
ale 2012-06-13 14:06:25 UTC

  FreeBSD ports repository

  Modified files:
security/quantis Makefile 
  Log:
  Restore USE_QT_VER to fix build.
  
  Revision  ChangesPath
  1.12  +1 -1  ports/security/quantis/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


Re: cvs commit: ports/security/quantis Makefile

2012-06-13 Thread Alberto Villa
On Wed, Jun 13, 2012 at 4:06 PM, Alex Dupre a...@freebsd.org wrote:
  Modified files:
    security/quantis     Makefile
  Log:
  Restore USE_QT_VER to fix build.

Please, replace it with USE_QT4=#. USE_QT_VER=4 is deprecated, and
USE_QT4=yes was simply a mistake. Sorry for it.
-- 
Alberto Villa, FreeBSD committer avi...@freebsd.org
http://people.FreeBSD.org/~avilla
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/security/quantis Makefile

2012-06-13 Thread Alex Dupre
ale 2012-06-13 14:22:45 UTC

  FreeBSD ports repository

  Modified files:
security/quantis Makefile 
  Log:
  Use an empty USE_QT4.
  
  Requested by:   avilla
  
  Revision  ChangesPath
  1.13  +1 -1  ports/security/quantis/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/x11-toolkits/shared-desktop-ontologies Makefile distinfo

2012-06-13 Thread Raphael Kubo da Costa
rakuco  2012-06-13 14:24:56 UTC

  FreeBSD ports repository

  Modified files:
x11-toolkits/shared-desktop-ontologies Makefile distinfo 
  Log:
  Update to 0.10.0.
  
  Revision  ChangesPath
  1.8   +2 -2  ports/x11-toolkits/shared-desktop-ontologies/Makefile
  1.8   +2 -2  ports/x11-toolkits/shared-desktop-ontologies/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/graphics/djvulibre/files patch-desktopfiles_Makefile.in

2012-06-13 Thread Brendan Fabeny
bf  2012-06-13 14:26:58 UTC

  FreeBSD ports repository

  Modified files:
graphics/djvulibre/files patch-desktopfiles_Makefile.in 
  Log:
  fix the build when librsvg2 or ImageMagick is installed
  
  Reported by:avg, J.H. Sylvester
  
  Revision  ChangesPath
  1.6   +15 -14
ports/graphics/djvulibre/files/patch-desktopfiles_Makefile.in
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


Re: cvs commit: ports/security/quantis Makefile

2012-06-13 Thread Max Brazhnikov
On Wed, 13 Jun 2012 16:20:16 +0200, Alberto Villa wrote:
 On Wed, Jun 13, 2012 at 4:06 PM, Alex Dupre a...@freebsd.org wrote:
   Modified files:
 security/quantis Makefile
   Log:
   Restore USE_QT_VER to fix build.
 
 Please, replace it with USE_QT4=#. USE_QT_VER=4 is deprecated, and
 USE_QT4=yes was simply a mistake. Sorry for it.

Alternatively, bsd.options.mk can be used instead of pre.mk/post.mk. Then you 
don't need empty USE_QT4 at all.

Max
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/databases/percona-toolkit Makefile distinfo pkg-plist ports/databases/percona-toolkit/files patch-Makefile.PL

2012-06-13 Thread Florian Smeets
flo 2012-06-13 14:57:15 UTC

  FreeBSD ports repository

  Modified files:
databases/percona-toolkit Makefile distinfo pkg-plist 
  Added files:
databases/percona-toolkit/files patch-Makefile.PL 
  Log:
  Update to 2.1.2
  
  PR: ports/169018
  Submitted by:   Scott Larson s...@wiredrive.com
  
  Revision  ChangesPath
  1.9   +3 -1  ports/databases/percona-toolkit/Makefile
  1.6   +2 -2  ports/databases/percona-toolkit/distinfo
  1.1   +15 -0 ports/databases/percona-toolkit/files/patch-Makefile.PL 
(new)
  1.4   +2 -0  ports/databases/percona-toolkit/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/Mk bsd.options.desc.mk

2012-06-13 Thread Li-Wen Hsu
lwhsu   2012-06-13 16:00:46 UTC

  FreeBSD ports repository

  Modified files:
Mk   bsd.options.desc.mk 
  Log:
  - Add shared description for GMP
  
  Revision  ChangesPath
  1.69  +2 -1  ports/Mk/bsd.options.desc.mk
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/lang/ats Makefile bsd.ats.mk

2012-06-13 Thread Li-Wen Hsu
lwhsu   2012-06-13 16:19:08 UTC

  FreeBSD ports repository

  Modified files:
lang/ats Makefile bsd.ats.mk 
  Log:
  - Move ats source to FETCH_DEPENDS to avoid fetch failure in slave ports
  - Use the new options framework
  - Use COPYTREE_SHARE to install data
  
  PR: ports/168702
  Submitted by:   Jyun-Yan You jy...@cs.nctu.edu.tw
  
  Revision  ChangesPath
  1.6   +13 -25ports/lang/ats/Makefile
  1.4   +9 -12 ports/lang/ats/bsd.ats.mk
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/www/rt38 Makefile Makefile.cpan

2012-06-13 Thread Florian Smeets
flo 2012-06-13 16:34:46 UTC

  FreeBSD ports repository

  Modified files:
www/rt38 Makefile Makefile.cpan 
  Log:
  - register conflict with brlcad
  - remove SITE_PERL from *_DEPENDS
  
  Revision  ChangesPath
  1.48  +13 -13ports/www/rt38/Makefile
  1.8   +45 -45ports/www/rt38/Makefile.cpan
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/www/asterisk-stat Makefile

2012-06-13 Thread Florian Smeets
flo 2012-06-13 16:36:03 UTC

  FreeBSD ports repository

  Modified files:
www/asterisk-statMakefile 
  Log:
  do not depend on a specific version of asterisk, it works with any version of
  asterisk
  
  Submitted by:   jfkim...@yahoo.co.jp (maintainer)
  
  Revision  ChangesPath
  1.16  +1 -2  ports/www/asterisk-stat/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/security/cyrus-sasl2 Makefile ports/security/cyrus-sasl2-saslauthd Makefile

2012-06-13 Thread Hajimu UMEMOTO
ume 2012-06-13 16:47:43 UTC

  FreeBSD ports repository

  Modified files:
security/cyrus-sasl2 Makefile 
security/cyrus-sasl2-saslauthd Makefile 
  Log:
  Convert to use new OPTIONS framework.
  
  Revision  ChangesPath
  1.58  +7 -7  ports/security/cyrus-sasl2-saslauthd/Makefile
  1.150 +47 -44ports/security/cyrus-sasl2/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/lang/rust Makefile

2012-06-13 Thread Li-Wen Hsu
lwhsu   2012-06-13 17:01:04 UTC

  FreeBSD ports repository

  Modified files:
lang/rustMakefile 
  Log:
  - Use the new options framework
  
  PR: ports/168703
  Submitted by:   Jyun-Yan You jy...@cs.nctu.edu.tw (maintainer)
  
  Revision  ChangesPath
  1.6   +9 -7  ports/lang/rust/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/devel/py-greenlet Makefile distinfo pkg-plist

2012-06-13 Thread Li-Wen Hsu
lwhsu   2012-06-13 17:04:36 UTC

  FreeBSD ports repository

  Modified files:
devel/py-greenletMakefile distinfo pkg-plist 
  Log:
  - Update to 0.3.4
  - Upstream reverted to plain distutils, dont use easy_install
  - DISTFILE is now a .zip (USE_ZIP)
  - Remove DISTNAME or PYDISTUTILS_PKGNAME (default is correct)
  - Update MASTER_SITES
  - Add LICENSE/LICENSE_FILE
  - Update pkg-plist
  - Confirm CLANG build
  
  PR: ports/168363
  Submitted by:   koobs koobs.free...@gmail.com
  Approved by:maintainer timeout
  
  Revision  ChangesPath
  1.6   +9 -13 ports/devel/py-greenlet/Makefile
  1.5   +2 -2  ports/devel/py-greenlet/distinfo
  1.2   +4 -13 ports/devel/py-greenlet/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/net/mosh Makefile distinfo

2012-06-13 Thread Ryan Steinmetz
zi  2012-06-13 18:51:28 UTC

  FreeBSD ports repository

  Modified files:
net/mosh Makefile distinfo 
  Log:
  - Update to 1.2.2
  
  Revision  ChangesPath
  1.7   +3 -3  ports/net/mosh/Makefile
  1.4   +2 -2  ports/net/mosh/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/java/openjdk6 Makefile ports/java/openjdk6/files patch-security

2012-06-13 Thread Jung-uk Kim
jkim2012-06-13 19:17:00 UTC

  FreeBSD ports repository

  Modified files:
java/openjdk6Makefile 
  Added files:
java/openjdk6/files  patch-security 
  Log:
  - Fix multiple security vulnerabilities. [1]
  - Drop version suffixes from LIB_DEPENDS.
  - Use the new options framework.
  
  Obtained from:  IcedTea Project [1]
  http://icedtea.classpath.org/hg/icedtea6/rev/9aff0fc60733
  
  Revision  ChangesPath
  1.65  +28 -24ports/java/openjdk6/Makefile
  1.5   +2106 -0   ports/java/openjdk6/files/patch-security (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/sysutils/e2fsprogs Makefile distinfo ports/sysutils/e2fsprogs/files patch-8f00911a patch-tests__test_script.in

2012-06-13 Thread Matthias Andree
mandree 2012-06-13 19:24:53 UTC

  FreeBSD ports repository

  Modified files:
sysutils/e2fsprogs   Makefile distinfo 
  Added files:
sysutils/e2fsprogs/files patch-8f00911a 
  Removed files:
sysutils/e2fsprogs/files patch-tests__test_script.in 
  Log:
  Update to new upstream release 1.42.4.
  ChangeLog: http://e2fsprogs.sourceforge.net/e2fsprogs-release.html#1.42.4
  
  Revision  ChangesPath
  1.81  +1 -1  ports/sysutils/e2fsprogs/Makefile
  1.40  +2 -2  ports/sysutils/e2fsprogs/distinfo
  1.1   +24 -0 ports/sysutils/e2fsprogs/files/patch-8f00911a (new)
  1.3   +0 -11 
ports/sysutils/e2fsprogs/files/patch-tests__test_script.in (dead)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/misc/e2fsprogs-libuuid Makefile

2012-06-13 Thread Matthias Andree
mandree 2012-06-13 19:54:22 UTC

  FreeBSD ports repository

  Modified files:
misc/e2fsprogs-libuuid Makefile 
  Log:
  Dispose of OPTIONSFILE for the nonce, to fix the build.
  There are no dialog(1)-based options for now.
  
  This isn't the final solution, but works until the proper fix becomes known.
  The problem is that OPTIONS_EXCLUDE=NLS does not work, it gets overridden
  when the options.mk file reads e2fsprogs's $OPTIONSFILE.
  
  Revision  ChangesPath
  1.14  +1 -0  ports/misc/e2fsprogs-libuuid/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/security/vuxml vuln.xml

2012-06-13 Thread Wesley Shields
wxs 2012-06-13 20:16:44 UTC

  FreeBSD ports repository

  Modified files:
security/vuxml   vuln.xml 
  Log:
  Update 55587adb-b49d-11e1-8df1-0004aca374af with more information.
  
  Revision  ChangesPath
  1.2735+20 -4 ports/security/vuxml/vuln.xml
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/multimedia/mjpegtools pkg-plist

2012-06-13 Thread Pav Lucistnik
pav 2012-06-13 20:24:25 UTC

  FreeBSD ports repository

  Modified files:
multimedia/mjpegtools pkg-plist 
  Log:
  - bin/png2yuv does not depend on gtk2 option
  
  Reported by:pointyhat
  
  Revision  ChangesPath
  1.24  +1 -1  ports/multimedia/mjpegtools/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/graphics/fnlib Makefile

2012-06-13 Thread Pav Lucistnik
pav 2012-06-13 20:51:33 UTC

  FreeBSD ports repository

  Modified files:
graphics/fnlib   Makefile 
  Log:
  - Mark BROKEN: does not configure
checking for imlib-config... /usr/local/bin/imlib-config
checking for IMLIB - version = 1.8.0... no
*** Could not run IMLIB test program, checking why...
  
  Reported by:pointyhat
  
  Revision  ChangesPath
  1.48  +2 -0  ports/graphics/fnlib/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/graphics/ida Makefile ports/graphics/imagesort Makefile ports/japanese/xjtext Makefile

2012-06-13 Thread Pav Lucistnik
pav 2012-06-13 20:55:51 UTC

  FreeBSD ports repository

  Modified files:
graphics/ida Makefile 
graphics/imagesort   Makefile 
japanese/xjtext  Makefile 
  Log:
  - Mark BROKEN: does not compile
undefined reference to `PrintGifError'
  
  Reported by:pointyhat
  
  Revision  ChangesPath
  1.27  +2 -0  ports/graphics/ida/Makefile
  1.19  +2 -0  ports/graphics/imagesort/Makefile
  1.22  +2 -0  ports/japanese/xjtext/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/net/prosearch Makefile distinfo pkg-plist

2012-06-13 Thread Michael Scheidell
scheidell2012-06-13 21:05:19 UTC

  FreeBSD ports repository

  Modified files:
net/prosearchMakefile distinfo pkg-plist 
  Log:
  - Update to 0.19.2
  - Change mariadb dependency to mariadb-client
  - Update RUN_DEPENDS
  
  PR: ports/168433
  Submitted by:   oleg pro...@gmail.com (maintainer)
  
  Revision  ChangesPath
  1.18  +12 -4 ports/net/prosearch/Makefile
  1.7   +2 -2  ports/net/prosearch/distinfo
  1.7   +6 -1  ports/net/prosearch/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/games/xteddy Makefile ports/graphics/kuickshow Makefile ports/graphics/kuickshow-kde4 Makefile ports/graphics/show Makefile ports/korean/eterm Makefile ports/x11/silo Makefile

2012-06-13 Thread Pav Lucistnik
pav 2012-06-13 21:10:09 UTC

  FreeBSD ports repository

  Modified files:
games/xteddy Makefile 
graphics/kuickshow   Makefile 
graphics/kuickshow-kde4 Makefile 
graphics/showMakefile 
korean/eterm Makefile 
x11/silo Makefile 
  Log:
  - Mark BROKEN: does not compile
undefined reference to `PrintGifError'
  
  Reported by:pointyhat
  
  Revision  ChangesPath
  1.28  +2 -0  ports/games/xteddy/Makefile
  1.47  +2 -0  ports/graphics/kuickshow-kde4/Makefile
  1.36  +2 -0  ports/graphics/kuickshow/Makefile
  1.18  +2 -0  ports/graphics/show/Makefile
  1.35  +2 -0  ports/korean/eterm/Makefile
  1.11  +2 -0  ports/x11/silo/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/x11/powershell Makefile

2012-06-13 Thread Pav Lucistnik
pav 2012-06-13 21:12:09 UTC

  FreeBSD ports repository

  Modified files:
x11/powershell   Makefile 
  Log:
  - Mark BROKEN: does not configure
checking whether the C compiler works... no
configure: error: in `/work/a/ports/x11/powershell/work/powershell-0.8':
configure: error: C compiler cannot create executables
  
  Reported by:pointyhat
  
  Revision  ChangesPath
  1.25  +2 -0  ports/x11/powershell/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/games/alephone-scenarios Makefile

2012-06-13 Thread Baptiste Daroussin
bapt2012-06-13 21:13:38 UTC

  FreeBSD ports repository

  Modified files:
games/alephone-scenarios Makefile 
  Log:
  Reapply this original logic of the options
  
  Reported by:pointyhat (pav)
  
  Revision  ChangesPath
  1.10  +2 -2  ports/games/alephone-scenarios/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/games/tuxmath Makefile ports/games/tuxtype Makefile

2012-06-13 Thread Pav Lucistnik
pav 2012-06-13 21:13:38 UTC

  FreeBSD ports repository

  Modified files:
games/tuxmathMakefile 
games/tuxtypeMakefile 
  Log:
  - Mark BROKEN: does not compile
t4k_loaders.c: In function 'do_png_save':
t4k_loaders.c:1031: error: dereferencing pointer to incomplete type
  
  Reported by:pointyhat
  
  Revision  ChangesPath
  1.18  +2 -0  ports/games/tuxmath/Makefile
  1.36  +2 -0  ports/games/tuxtype/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/sysutils/pydf Makefile distinfo ports/sysutils/pydf/files patch-pydf

2012-06-13 Thread Beech Rintoul
beech   2012-06-13 21:15:28 UTC

  FreeBSD ports repository

  Modified files:
sysutils/pydfMakefile distinfo 
sysutils/pydf/files  patch-pydf 
  Log:
  - Update to 10
  - Fix portlint warning
  
  PR: ports/168373
  Submitted by:   koobs koobs.free...@gmail.com
  Approved by:Maintainer timeout (2-Weeks+)
  
  Revision  ChangesPath
  1.7   +2 -2  ports/sysutils/pydf/Makefile
  1.7   +2 -2  ports/sysutils/pydf/distinfo
  1.5   +0 -117ports/sysutils/pydf/files/patch-pydf
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/emulators/advancemenu Makefile

2012-06-13 Thread Baptiste Daroussin
bapt2012-06-13 21:17:08 UTC

  FreeBSD ports repository

  Modified files:
emulators/advancemenu Makefile 
  Log:
  Fix DOCS logic
  
  Revision  ChangesPath
  1.14  +1 -1  ports/emulators/advancemenu/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/math/vtk-python Makefile

2012-06-13 Thread Chris Rees
crees   2012-06-13 21:16:08 UTC

  FreeBSD ports repository

  Modified files:
math/vtk-python  Makefile 
  Log:
  Fix build by updating png locations
  
  Submitted by:   kargl
  
  Revision  ChangesPath
  1.15  +2 -3  ports/math/vtk-python/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/games/fteqw Makefile

2012-06-13 Thread Baptiste Daroussin
bapt2012-06-13 21:20:32 UTC

  FreeBSD ports repository

  Modified files:
games/fteqw  Makefile 
  Log:
  Fix typo
  
  Reported by:pointyhat (Pav)
  
  Revision  ChangesPath
  1.17  +1 -1  ports/games/fteqw/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/sysutils/e2fsprogs Makefile

2012-06-13 Thread Matthias Andree
mandree 2012-06-13 21:20:08 UTC

  FreeBSD ports repository

  Modified files:
sysutils/e2fsprogs   Makefile 
  Log:
  Exploit e2fsprogs's 1.42.4's new 'parallel make check' feature.
  
  Revision  ChangesPath
  1.82  +1 -1  ports/sysutils/e2fsprogs/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/sysutils/pydf/files patch-pydf

2012-06-13 Thread Beech Rintoul
beech   2012-06-13 21:21:20 UTC

  FreeBSD ports repository

  Removed files:
sysutils/pydf/files  patch-pydf 
  Log:
  - Remove files/patch-pydf
  
  PR: ports/168373
  Submitted by:   koobs koobs.free...@gmail.com
  Approved by:Maintainer timeout (2-Weeks+)
  
  Revision  ChangesPath
  1.6   +0 -0  ports/sysutils/pydf/files/patch-pydf (dead)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/games/uhexen2 Makefile

2012-06-13 Thread Baptiste Daroussin
bapt2012-06-13 21:22:14 UTC

  FreeBSD ports repository

  Modified files:
games/uhexen2Makefile 
  Log:
  Fix typo
  
  Reported by:pointyhat (Pav)
  
  Revision  ChangesPath
  1.15  +1 -1  ports/games/uhexen2/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/net-mgmt/virt-viewer Makefile distinfo pkg-plist

2012-06-13 Thread Jason Helfman
jgh 2012-06-13 21:30:53 UTC

  FreeBSD ports repository

  Modified files:
net-mgmt/virt-viewer Makefile distinfo pkg-plist 
  Log:
  - update to 0.5.3
  
  Revision  ChangesPath
  1.5   +2 -3  ports/net-mgmt/virt-viewer/Makefile
  1.3   +2 -2  ports/net-mgmt/virt-viewer/distinfo
  1.3   +25 -0 ports/net-mgmt/virt-viewer/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/sysutils/e2fsprogs Makefile

2012-06-13 Thread Matthias Andree
mandree 2012-06-13 21:34:43 UTC

  FreeBSD ports repository

  Modified files:
sysutils/e2fsprogs   Makefile 
  Log:
  Add LICENSE statement.
  
  Revision  ChangesPath
  1.83  +2 -0  ports/sysutils/e2fsprogs/Makefile
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/misc/rabbit Makefile distinfo pkg-plist ports/misc/rabbit/files patch-lib-rabbit-element-container-element.rb

2012-06-13 Thread TAKATSU Tomonari
tota2012-06-13 22:40:40 UTC

  FreeBSD ports repository

  Modified files:
misc/rabbit  Makefile distinfo pkg-plist 
  Added files:
misc/rabbit/files
 patch-lib-rabbit-element-container-element.rb 
  Log:
  - Update to 1.0.7
  - Apply a patch to fix a bug that images aren`t displayed [1]
  
  Obtained from:  
https://github.com/shockers/rabbit/commit/edf74eafedc022ef8c3e4efc72636967250add28#lib/rabbit/element/container-element.rb
 [1]
  
  Revision  ChangesPath
  1.16  +1 -3  ports/misc/rabbit/Makefile
  1.9   +2 -2  ports/misc/rabbit/distinfo
  1.1   +31 -0 
ports/misc/rabbit/files/patch-lib-rabbit-element-container-element.rb (new)
  1.10  +3 -0  ports/misc/rabbit/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: CVSROOT modules

2012-06-13 Thread Edwin Groothuis
edwin   2012-06-14 00:09:10 UTC

  FreeBSD ports repository

  Modified files:
.modules 
  Log:
  Ports modules update at Thursday 14 June 2012 at 00:09
  Feature safe: yes
  
  Revision  ChangesPath
  1.21525   +0 -13 CVSROOT/modules
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/security Makefile ports/security/py-rsa Makefile distinfo pkg-descr pkg-plist ports/security/py-rsa/files patch-setup.py

2012-06-13 Thread Tom Judge
tj  2012-06-14 00:28:47 UTC

  FreeBSD ports repository

  Modified files:
security Makefile 
  Added files:
security/py-rsa  Makefile distinfo pkg-descr pkg-plist 
security/py-rsa/files patch-setup.py 
  Log:
  Python-RSA is a pure-Python RSA implementation. It supports encryption
  and decryption, signing and verifying signatures, and key generation
  according to PKCS#1 version 1.5.
  
  WWW:http://stuvel.eu/rsa
  
  PR: ports/168460
  Submitted by:   koobs koobs.free...@gmail.com
  Approved by:eadler (mentor)
  
  Revision  ChangesPath
  1.1291+1 -0  ports/security/Makefile
  1.1   +31 -0 ports/security/py-rsa/Makefile (new)
  1.1   +2 -0  ports/security/py-rsa/distinfo (new)
  1.1   +12 -0 ports/security/py-rsa/files/patch-setup.py (new)
  1.1   +5 -0  ports/security/py-rsa/pkg-descr (new)
  1.1   +64 -0 ports/security/py-rsa/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/security Makefile ports/security/py-oauthlib Makefile distinfo pkg-descr pkg-plist

2012-06-13 Thread Tom Judge
tj  2012-06-14 00:36:22 UTC

  FreeBSD ports repository

  Modified files:
security Makefile 
  Added files:
security/py-oauthlib Makefile distinfo pkg-descr pkg-plist 
  Log:
  OAuthLib is a generic Python module which implements the logic of
  OAuth without assuming a specific HTTP request object. Use it to graft
  OAuth support onto your favorite HTTP library.
  
  WWW:https://github.com/idangazit/oauthlib
  
  PR: ports/168460
  Submitted by:   koobs koobs.free...@gmail.com
  Approved by:eadler (mentor)
  
  Revision  ChangesPath
  1.1292+1 -0  ports/security/Makefile
  1.1   +30 -0 ports/security/py-oauthlib/Makefile (new)
  1.1   +2 -0  ports/security/py-oauthlib/distinfo (new)
  1.1   +5 -0  ports/security/py-oauthlib/pkg-descr (new)
  1.1   +47 -0 ports/security/py-oauthlib/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


Re: cvs commit: ports/security Makefile ports/security/py-oauthlib Makefile distinfo pkg-descr pkg-plist

2012-06-13 Thread Tom Judge

On 6/13/12 8:36 PM, Tom Judge wrote:

tj  2012-06-14 00:36:22 UTC

   FreeBSD ports repository

   Modified files:
 security Makefile
   Added files:
 security/py-oauthlib Makefile distinfo pkg-descr pkg-plist
   Log:
   OAuthLib is a generic Python module which implements the logic of
   OAuth without assuming a specific HTTP request object. Use it to graft
   OAuth support onto your favorite HTTP library.
   
   WWW:https://github.com/idangazit/oauthlib
   
   PR: ports/168460

Oops this should be:

PR:ports/168461
--
FreeBSD Ports Developer
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/devel/buildbot Makefile distinfo pkg-plist ports/devel/buildbot/files patch-setup.py

2012-06-13 Thread Tom Judge
tj  2012-06-14 00:51:53 UTC

  FreeBSD ports repository

  Modified files:
devel/buildbot   Makefile distinfo pkg-plist 
devel/buildbot/files patch-setup.py 
  Log:
  - Take over maintainer.
  - Upgrade to 0.8.6p1.
  
  PR: ports/163675
  Submitted by:   Michael Gmelin free...@grem.de
  Approved by:eadler,db (mentors)
  
  Revision  ChangesPath
  1.21  +5 -3  ports/devel/buildbot/Makefile
  1.17  +2 -2  ports/devel/buildbot/distinfo
  1.6   +9 -4  ports/devel/buildbot/files/patch-setup.py
  1.16  +591 -103  ports/devel/buildbot/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/databases Makefile ports/databases/p5-DBIx-Class-Candy Makefile distinfo pkg-descr pkg-plist

2012-06-13 Thread Wen Heping
wen 2012-06-14 01:27:50 UTC

  FreeBSD ports repository

  Modified files:
databasesMakefile 
  Added files:
databases/p5-DBIx-Class-Candy Makefile distinfo pkg-descr 
  pkg-plist 
  Log:
  DBIx::Class::Candy is a simple sugar layer for definition of DBIx::Class
  results. Note that it may later be expanded to add sugar for more
  DBIx::Class related things.
  
  WWW: http://search.cpan.org/dist/DBIx-Class-Candy/
  
  Revision  ChangesPath
  1.1112+1 -0  ports/databases/Makefile
  1.1   +29 -0 ports/databases/p5-DBIx-Class-Candy/Makefile (new)
  1.1   +2 -0  ports/databases/p5-DBIx-Class-Candy/distinfo (new)
  1.1   +5 -0  ports/databases/p5-DBIx-Class-Candy/pkg-descr (new)
  1.1   +8 -0  ports/databases/p5-DBIx-Class-Candy/pkg-plist (new)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/net/p5-Net-Server Makefile distinfo

2012-06-13 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-06-14 01:30:22 UTC

  FreeBSD ports repository

  Modified files:
net/p5-Net-ServerMakefile distinfo 
  Log:
  - Update to 2.005
  Changes:http://search.cpan.org/dist/Net-Server/Changes
  
  Revision  ChangesPath
  1.35  +1 -1  ports/net/p5-Net-Server/Makefile
  1.20  +2 -2  ports/net/p5-Net-Server/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/www/httest Makefile distinfo

2012-06-13 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-06-14 01:31:13 UTC

  FreeBSD ports repository

  Modified files:
www/httest   Makefile distinfo 
  Log:
  - Update to 2.2.6
  - Pet portlint: remove ABI version number from LIB_DEPENDS
  - Cosmetic change
  
  Changes:
http://sourceforge.net/projects/htt/files/htt2.2/httest-2.2.6/ChangeLog/view
  
  Revision  ChangesPath
  1.14  +15 -19ports/www/httest/Makefile
  1.11  +2 -2  ports/www/httest/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/Mk bsd.options.desc.mk

2012-06-13 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-06-14 01:48:39 UTC

  FreeBSD ports repository

  Modified files:
Mk   bsd.options.desc.mk 
  Log:
  - Fix TCL_DESC
  - Sort *_DESC
  
  Revision  ChangesPath
  1.70  +4 -4  ports/Mk/bsd.options.desc.mk
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/devel/p5-MooseX-Daemonize Makefile distinfo

2012-06-13 Thread Sunpoet Po-Chuan Hsieh
sunpoet 2012-06-14 02:15:03 UTC

  FreeBSD ports repository

  Modified files:
devel/p5-MooseX-Daemonize Makefile distinfo 
  Log:
  - Update to 0.15
  - Mark DEPRECATED: author recommends to use Daemon::Control instead
  
  Changes:http://search.cpan.org/dist/MooseX-Daemonize/Changes
  
  Revision  ChangesPath
  1.10  +3 -1  ports/devel/p5-MooseX-Daemonize/Makefile
  1.8   +2 -2  ports/devel/p5-MooseX-Daemonize/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/www/WebMagick Makefile distinfo

2012-06-13 Thread Andrey A. Chernov
ache2012-06-14 03:56:57 UTC

  FreeBSD ports repository

  Modified files:
www/WebMagickMakefile distinfo 
  Log:
  Upgrade to 2.03pre13
  
  Revision  ChangesPath
  1.106 +3 -4  ports/www/WebMagick/Makefile
  1.24  +2 -2  ports/www/WebMagick/distinfo
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/audio/picard Makefile distinfo pkg-descr pkg-plist

2012-06-13 Thread Ruslan Mahmatkhanov
rm  2012-06-14 04:18:08 UTC

  FreeBSD ports repository

  Modified files:
audio/picard Makefile distinfo pkg-descr pkg-plist 
  Log:
  - update to 1.0
  
  While here:
  - add some missing tabs
  - drop LICENSE_FILE (doesn't needed for well-known licenses)
  - use PYTHON_PKGNAMEPREFIX in _DEPENDS
  - strict python version to 2.x (per README)
  
  PR: 168851
  Submitted by:   Jason E. Hale bsdkaffee at gmail dot com (maintainer)
  
  Revision  ChangesPath
  1.36  +9 -11 ports/audio/picard/Makefile
  1.13  +2 -2  ports/audio/picard/distinfo
  1.4   +1 -1  ports/audio/picard/pkg-descr
  1.13  +12 -67ports/audio/picard/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports MOVED ports/www Makefile ports/www/trac-ticketdelete Makefile distinfo pkg-descr pkg-plist

2012-06-13 Thread Ruslan Mahmatkhanov
rm  2012-06-14 04:38:18 UTC

  FreeBSD ports repository

  Modified files:
.MOVED 
www  Makefile 
  Removed files:
www/trac-ticketdelete Makefile distinfo pkg-descr pkg-plist 
  Log:
  Remove expired port: Functionality of this plugin has been incorporated into
  Trac 0.12
  
  Revision  ChangesPath
  1.2880+2 -1  ports/MOVED
  1.3200+0 -1  ports/www/Makefile
  1.13  +0 -32 ports/www/trac-ticketdelete/Makefile (dead)
  1.4   +0 -2  ports/www/trac-ticketdelete/distinfo (dead)
  1.2   +0 -5  ports/www/trac-ticketdelete/pkg-descr (dead)
  1.2   +0 -1  ports/www/trac-ticketdelete/pkg-plist (dead)
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/science/dcl Makefile distinfo pkg-plist

2012-06-13 Thread Beech Rintoul
beech   2012-06-14 05:15:47 UTC

  FreeBSD ports repository

  Modified files:
science/dcl  Makefile distinfo pkg-plist 
  Log:
  - Update to 5.4.5
  
  PR: ports/169030
  Submitted by:   Shin-ya Murakami muras...@gfd-dennou.org (maintainer)
  
  Revision  ChangesPath
  1.13  +1 -2  ports/science/dcl/Makefile
  1.8   +2 -2  ports/science/dcl/distinfo
  1.7   +2 -2  ports/science/dcl/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/misc/gnustep-examples Makefile pkg-plist

2012-06-13 Thread Dirk Meyer
dinoex  2012-06-14 05:25:49 UTC

  FreeBSD ports repository

  Modified files:
misc/gnustep-examples Makefile pkg-plist 
  Log:
  - update to 1.3.0
  
  Revision  ChangesPath
  1.29  +0 -5  ports/misc/gnustep-examples/Makefile
  1.16  +11 -11ports/misc/gnustep-examples/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org


cvs commit: ports/science/cdcl Makefile distinfo pkg-plist

2012-06-13 Thread Beech Rintoul
beech   2012-06-14 05:25:29 UTC

  FreeBSD ports repository

  Modified files:
science/cdcl Makefile distinfo pkg-plist 
  Log:
  - update to 5.4.5.
  - use gtk by default because WITHOUT_GTK does not work.
  - use PORTDOCS and PORTEXAMPLES
  
  PR: ports/169031
  Submitted by:   Shin-ya Murakami muras...@gfd-dennou.org (maintainer)
  
  Revision  ChangesPath
  1.19  +7 -20 ports/science/cdcl/Makefile
  1.7   +2 -2  ports/science/cdcl/distinfo
  1.5   +65 -364   ports/science/cdcl/pkg-plist
___
cvs-all@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/cvs-all
To unsubscribe, send any mail to cvs-all-unsubscr...@freebsd.org