Re: port cad/geda

2014-04-15 Thread Lowell Gilbert
Nilton Jose Rizzo ri...@i805.com.br writes:

   Hi all, it's strange but the email  po...@freebsd.org is the maintaner
 of geda port,

That just means it doesn't have a designated maintainer.

   i try to install geda and this error occur, have some
 idea to resolve this?

Works fine for me on up-to-date RELENG_9 with the latest ports.

Make sure you do a make clean before trying again.
___
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: rubygem-passenger-4.0.41_2

2014-04-15 Thread David Keller
Hello Sergey,

Steven's patch already contains the symlink bugfix :-)

Regards,

David

On Tue, Apr 15, 2014 at 12:57 AM, Sergey A. Osokin o...@freebsd.org wrote:
 Hi David,

 kindly provide a patch.

 --
 ozz

 On Sun, Apr 13, 2014 at 12:23:56PM +0200, David Keller wrote:
 Hi Sergey,

 It's not related to gem dependency error but the symlink creation
 might be incorrect:
 ${LN} -s ${GEM_LIB_DIR} ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}

 Will create the following symlink:
 /usr/local/lib/ruby/gems/1.9/gems/passenger -
 lib/ruby/gems/1.9/gems/passenger-4.0.41

 Rather than:
 /usr/local/lib/ruby/gems/1.9/gems/passenger -
 /usr/local/lib/ruby/gems/1.9/gems/passenger-4.0.41

 Or:
 /usr/local/lib/ruby/gems/1.9/gems/passenger - passenger-4.0.41


 You might prefer using:
 ${LN} -s ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${GEM_NAME}
 ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}

 Or even:
 ${LN} -s ${GEM_NAME} ${STAGEDIR}${PREFIX}/${GEMS_DIR}/${PORTNAME}

 David

 On Sun, Apr 13, 2014 at 4:13 AM, Sergey A. Osokin o...@freebsd.org wrote:
  On Sat, Apr 12, 2014 at 03:09:04AM -0500, Scot Hetzel wrote:
  On Fri, Apr 11, 2014 at 5:51 PM, Steven Hartland
  kill...@multiplay.co.uk wrote:
   The change is from :N - :M
   .if ${PORT_OPTIONS:MDEBUG}
  
   - Select only those words that match DEBUG
 
   Which occurs 220 in the port tree and:
  
   .if ${PORT_OPTIONS:NDEBUG}
  
  - Select words that don't match DEBUG
 
   Which only occurs twice, so TBH I assumed it was a typo given every 
   other
   option uses PORTOPTIONS:M${option}
  
   Unfortunately the docs don't seem to provide any clarification
   http://www.freebsd.org/doc/en/books/porters-handbook/makefile-options.html
   so if anyone could chime in with some details on the exact meanings that
   would be most appreciated.
  
  You have to read the make(1) man page:
 
  http://www.freebsd.org/cgi/man.cgi?query=makesektion=1
 
  So, the patch is here.
 
  But now I've got following error:
 
  x1% sudo make install
  ===  Staging for rubygem-passenger-4.0.41_3
  ===   rubygem-passenger-4.0.41_3 depends on package: 
  rubygem-fastthread=1.0.7 - found
  ===   rubygem-passenger-4.0.41_3 depends on package: rubygem-rack=1.4.5 
  - found
  ===   rubygem-passenger-4.0.41_3 depends on package: 
  rubygem-daemon_controller=1.2.0 - found
  ===   rubygem-passenger-4.0.41_3 depends on file: /usr/local/bin/gem19 - 
  found
  ===   rubygem-passenger-4.0.41_3 depends on file: /usr/local/bin/ruby19 - 
  found
  ===   rubygem-passenger-4.0.41_3 depends on file: /usr/local/sbin/apxs - 
  found
  ===   rubygem-passenger-4.0.41_3 depends on shared library: libeio.so - 
  found
  ===   rubygem-passenger-4.0.41_3 depends on shared library: libev.so - 
  found
  ===   rubygem-passenger-4.0.41_3 depends on shared library: libcurl.so - 
  found
  ===   Generating temporary packing list
  Building native extensions.  This could take a while...
  Successfully installed passenger-4.0.41
  1 gem installed
  Installing RDoc documentation for passenger-4.0.41...
  (CC=clang CXX=clang++ 
  /usr/home/osa/ports/www/rubygem-passenger/work/stage/usr/local/bin/passenger-install-apache2-module
   --auto)
  /usr/local/lib/ruby/site_ruby/1.9/rubygems/dependency.rb:247:in 
  `to_specs': Could not find passenger (= 0) amongst 
  [daemon_controller-1.2.0, fastthread-1.0.7, rack-1.4.5, rake-10.2.2] 
  (Gem::LoadError)
  from 
  /usr/local/lib/ruby/site_ruby/1.9/rubygems/dependency.rb:256:in `to_spec'
  from /usr/local/lib/ruby/site_ruby/1.9/rubygems.rb:1231:in `gem'
  from 
  /usr/home/osa/ports/www/rubygem-passenger/work/stage/usr/local/bin/passenger-install-apache2-module:22:in
   `main'
  *** Error code 1
 
  Stop.
 
  Any idea what's wrong here?
 
  Index: Makefile
  ===
  --- Makefile(revision 351090)
  +++ Makefile(working copy)
  @@ -3,7 +3,7 @@
 
   PORTNAME=  passenger
   PORTVERSION=   4.0.41
  -PORTREVISION=  2
  +PORTREVISION=  3
   CATEGORIES=www rubygems
   MASTER_SITES=  RG
   PKGNAMEPREFIX= rubygem-
  @@ -39,11 +39,11 @@
   .endif
   .endif
 
  -LIB_DEPENDS+=  eio:${PORTSDIR}/devel/libeio \
  -   ev:${PORTSDIR}/devel/libev \
  -   curl:${PORTSDIR}/ftp/curl
  -BUILD_DEPENDS+=
  rubygem-fastthread=1.0.1:${PORTSDIR}/devel/rubygem-fastthread \
  -   rubygem-rack=0:${PORTSDIR}/www/rubygem-rack \
  +LIB_DEPENDS+=  libeio.so:${PORTSDIR}/devel/libeio \
  +   libev.so:${PORTSDIR}/devel/libev \
  +   libcurl.so:${PORTSDIR}/ftp/curl
  +BUILD_DEPENDS+=
  rubygem-fastthread=1.0.7:${PORTSDIR}/devel/rubygem-fastthread \
  +   rubygem-rack=1.4.5:${PORTSDIR}/www/rubygem-rack \
  
  rubygem-daemon_controller=1.2.0:${PORTSDIR}/devel/rubygem-daemon_controller
   RUN_DEPENDS:=  ${BUILD_DEPENDS}
 
  @@ -81,7 +81,7 @@
  s! -feliminate-unused-debug-symbols 
  -feliminate-unused-debug-types!!g; \
  

Netdisco broken

2014-04-15 Thread Loïc Blot
Hello,
since a recent release, Netdisco doesn't install anymore (tryied on
poudriere and with make install).

Please note i tryed to use the 1.3.3 but the problem is present on
1.3.2_1.

Here is the log:

==

root@loupiac make install
===  Installing for netdisco-1.3.3
===   netdisco-1.3.3 depends on package: p5-Net-SNMP=0 - found
===   netdisco-1.3.3 depends on package: p5-SNMP-Info=3.01 - found
===   netdisco-1.3.3 depends on package: p5-HTML-Mason=0 - found
===   netdisco-1.3.3 depends on package: p5-DB_File-Lock=0 - found
===   netdisco-1.3.3 depends on package: p5-Apache-Session=0 - found
===   netdisco-1.3.3 depends on package: p5-Net-NBName=0 - found
===   netdisco-1.3.3 depends on package: p5-DBD-Pg=0 - found
===   netdisco-1.3.3 depends on package: p5-HTML-Parser=0 - found
===   netdisco-1.3.3 depends on package: p5-Parallel-ForkManager=0 -
found
===   netdisco-1.3.3 depends on
file: /usr/local/share/netdisco-mibs/mib_index.txt - found
===   netdisco-1.3.3 depends on package: p5-Graph=0 - found
===   netdisco-1.3.3 depends on package: p5-GraphViz=0 - found
===   netdisco-1.3.3 depends on file: /usr/local/bin/perl5.16.3 - found
===   netdisco-1.3.3 depends on shared library: pq.5 - found
cd /usr/ports/net-mgmt/netdisco/work/netdisco-1.3.3   /usr/bin/sed
-i.bak -e 's#%%WWWDIR%%#@comment #g'   -e 's#%%PREFIX%%#/usr/local#g'
-e 's#%%DATADIR%%#/usr/local/share/netdisco#g'   -e 's#%%DOCSDIR%%
#/usr/local/share/doc/netdisco#g'-e 's#%%NETDISCO_RUNDIR%%
#/var/run#g' -e 's#%%NETDISCO_USER%%#netdisco#g' -e 
's#%%
NETDISCO_GROUP%%#netdisco#g' -e 's#%%NETDISCO_DBDIR%%
#/var/db/netdisco#g' -e 's#%%ETCDIR%%#/usr/local/etc/netdisco#g'
 -e
's#%%SITE_PERL%%#/usr/local/lib/perl5/site_perl/5.16#g'  -e 's#%%
LOCALBASE%%#/usr/local#g'-e 's#%%APACHEMODDIR%%##g'  -e 's#%%
APACHEETCDIR%%##g'   -e 's#%%MIBINCLUDES%%
#/share/netdisco-mibs/allied:/share/netdisco-mibs/alcatel:/share/netdisco-mibs/arista:/share/netdisco-mibs/aruba:/share/netdisco-mibs/asante:/share/netdisco-mibs/cabletron:/share/netdisco-mibs/cisco:/share/netdisco-mibs/cyclades:/share/netdisco-mibs/dell:/share/netdisco-mibs/enterasys:/share/netdisco-mibs/extreme:/share/netdisco-mibs/foundry:/share/netdisco-mibs/hp:/share/netdisco-mibs/juniper:/share/netdisco-mibs/mikrotik:/share/netdisco-mibs/net-snmp:/share/netdisco-mibs/netgear:/share/netdisco-mibs/netscreen:/share/netdisco-mibs/nortel:/share/netdisco-mibs/packetfront:/share/netdisco-mibs/rfc#g'
netdisco netdisco.conf netdisco_apache.conf  netdisco_apache_dir.conf 
netdisco.crontab sql/pg
===   Generating temporary packing list
sed: 1: s!%%!g
: unescaped newline inside substitute pattern
*** [generate-plist] Error code 1

Stop in /usr/ports/net-mgmt/netdisco.
*** [install] Error code 1

Stop in /usr/ports/net-mgmt/netdisco.

==

I don't know how to fix this sed and where does the sed comes from.

Thanks in advance
-- 
Best regards, 

Loïc BLOT, Engineering
UNIX Systems, Security and Network Engineer
http://www.unix-experience.fr



___
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

Netdisco install broken

2014-04-15 Thread Loïc Blot
Hi @ports
it seems since a recent port modification, netdisco is broken.

I don't know where does the sed comes from.

I also tried to use the 1.3.3 archive (but 1.3.2_1 archive has the same
problem).


Here is the log:

===  Found saved configuration for netdisco-1.3.2_1
===   netdisco-1.3.3 depends on file: /usr/local/sbin/pkg - found
=== Fetching all distfiles required by netdisco-1.3.3 for building
===  Extracting for netdisco-1.3.3
= SHA256 Checksum OK for netdisco-1.3.3.tar.gz.
===  Patching for netdisco-1.3.3
===  Applying FreeBSD patches for netdisco-1.3.3
===   netdisco-1.3.3 depends on
file: /usr/local/share/netdisco-mibs/mib_index.txt - found
===   netdisco-1.3.3 depends on file: /usr/local/bin/perl5.16.3 - found
===   netdisco-1.3.3 depends on shared library: pq.5 - found
===  Configuring for netdisco-1.3.3
===  Installing for netdisco-1.3.3
===   netdisco-1.3.3 depends on package: p5-Net-SNMP=0 - found
===   netdisco-1.3.3 depends on package: p5-SNMP-Info=3.01 - found
===   netdisco-1.3.3 depends on package: p5-HTML-Mason=0 - found
===   netdisco-1.3.3 depends on package: p5-DB_File-Lock=0 - found
===   netdisco-1.3.3 depends on package: p5-Apache-Session=0 - found
===   netdisco-1.3.3 depends on package: p5-Net-NBName=0 - found
===   netdisco-1.3.3 depends on package: p5-DBD-Pg=0 - found
===   netdisco-1.3.3 depends on package: p5-HTML-Parser=0 - found
===   netdisco-1.3.3 depends on package: p5-Parallel-ForkManager=0 -
found
===   netdisco-1.3.3 depends on
file: /usr/local/share/netdisco-mibs/mib_index.txt - found
===   netdisco-1.3.3 depends on package: p5-Graph=0 - found
===   netdisco-1.3.3 depends on package: p5-GraphViz=0 - found
===   netdisco-1.3.3 depends on file: /usr/local/bin/perl5.16.3 - found
cd /usr/ports/net-mgmt/netdisco/work/netdisco-1.3.3   /usr/bin/sed
-i.bak -e 's#%%WWWDIR%%#@comment #g'   -e 's#%%PREFIX%%#/usr/local#g'
-e 's#%%DATADIR%%#/usr/local/share/netdisco#g'   -e 's#%%DOCSDIR%%
#/usr/local/share/doc/netdisco#g'-e 's#%%NETDISCO_RUNDIR%%
#/var/run#g' -e 's#%%NETDISCO_USER%%#netdisco#g' -e 
's#%%
NETDISCO_GROUP%%#netdisco#g' -e 's#%%NETDISCO_DBDIR%%
#/var/db/netdisco#g' -e 's#%%ETCDIR%%#/usr/local/etc/netdisco#g'
 -e
's#%%SITE_PERL%%#/usr/local/lib/perl5/site_perl/5.16#g'  -e 's#%%
LOCALBASE%%#/usr/local#g'-e 's#%%APACHEMODDIR%%##g'  -e 's#%%
APACHEETCDIR%%##g'   -e 's#%%MIBINCLUDES%%
#/share/netdisco-mibs/allied:/share/netdisco-mibs/alcatel:/share/netdisco-mibs/arista:/share/netdisco-mibs/aruba:/share/netdisco-mibs/asante:/share/netdisco-mibs/cabletron:/share/netdisco-mibs/cisco:/share/netdisco-mibs/cyclades:/share/netdisco-mibs/dell:/share/netdisco-mibs/enterasys:/share/netdisco-mibs/extreme:/share/netdisco-mibs/foundry:/share/netdisco-mibs/hp:/share/netdisco-mibs/juniper:/share/netdisco-mibs/mikrotik:/share/netdisco-mibs/net-snmp:/share/netdisco-mibs/netgear:/share/netdisco-mibs/netscreen:/share/netdisco-mibs/nortel:/share/netdisco-mibs/packetfront:/share/netdisco-mibs/rfc#g'
netdisco netdisco.conf netdisco_apache.conf  netdisco_apache_dir.conf 
netdisco.crontab sql/pg
===   Generating temporary packing list
sed: 1: s!%%!g
: unescaped newline inside substitute pattern
*** [generate-plist] Error code 1

Stop in /usr/ports/net-mgmt/netdisco.
*** [install] Error code 1

Stop in /usr/ports/net-mgmt/netdisco.


==

Have you got an idea ?

Thanks in advance.

-- 
Best regards, 

Loïc BLOT, Engineering
UNIX Systems, Security and Network Engineer
http://www.unix-experience.fr



___
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

Netdisco broken

2014-04-15 Thread Loïc Blot
Hello,
since a recent release, Netdisco doesn't install anymore (tryied on
poudriere and with make install).

Please note i tryed to use the 1.3.3 but the problem is present on
1.3.2_1.

Here is the log:

==

root@loupiac make install
===  Installing for netdisco-1.3.3
===   netdisco-1.3.3 depends on package: p5-Net-SNMP=0 - found
===   netdisco-1.3.3 depends on package: p5-SNMP-Info=3.01 - found
===   netdisco-1.3.3 depends on package: p5-HTML-Mason=0 - found
===   netdisco-1.3.3 depends on package: p5-DB_File-Lock=0 - found
===   netdisco-1.3.3 depends on package: p5-Apache-Session=0 - found
===   netdisco-1.3.3 depends on package: p5-Net-NBName=0 - found
===   netdisco-1.3.3 depends on package: p5-DBD-Pg=0 - found
===   netdisco-1.3.3 depends on package: p5-HTML-Parser=0 - found
===   netdisco-1.3.3 depends on package: p5-Parallel-ForkManager=0 -
found
===   netdisco-1.3.3 depends on
file: /usr/local/share/netdisco-mibs/mib_index.txt - found
===   netdisco-1.3.3 depends on package: p5-Graph=0 - found
===   netdisco-1.3.3 depends on package: p5-GraphViz=0 - found
===   netdisco-1.3.3 depends on file: /usr/local/bin/perl5.16.3 - found
===   netdisco-1.3.3 depends on shared library: pq.5 - found
cd /usr/ports/net-mgmt/netdisco/work/netdisco-1.3.3   /usr/bin/sed
-i.bak -e 's#%%WWWDIR%%#@comment #g'   -e 's#%%PREFIX%%#/usr/local#g'
-e 's#%%DATADIR%%#/usr/local/share/netdisco#g'   -e 's#%%DOCSDIR%%
#/usr/local/share/doc/netdisco#g'-e 's#%%NETDISCO_RUNDIR%%
#/var/run#g' -e 's#%%NETDISCO_USER%%#netdisco#g' -e 
's#%%
NETDISCO_GROUP%%#netdisco#g' -e 's#%%NETDISCO_DBDIR%%
#/var/db/netdisco#g' -e 's#%%ETCDIR%%#/usr/local/etc/netdisco#g'
 -e
's#%%SITE_PERL%%#/usr/local/lib/perl5/site_perl/5.16#g'  -e 's#%%
LOCALBASE%%#/usr/local#g'-e 's#%%APACHEMODDIR%%##g'  -e 's#%%
APACHEETCDIR%%##g'   -e 's#%%MIBINCLUDES%%
#/share/netdisco-mibs/allied:/share/netdisco-mibs/alcatel:/share/netdisco-mibs/arista:/share/netdisco-mibs/aruba:/share/netdisco-mibs/asante:/share/netdisco-mibs/cabletron:/share/netdisco-mibs/cisco:/share/netdisco-mibs/cyclades:/share/netdisco-mibs/dell:/share/netdisco-mibs/enterasys:/share/netdisco-mibs/extreme:/share/netdisco-mibs/foundry:/share/netdisco-mibs/hp:/share/netdisco-mibs/juniper:/share/netdisco-mibs/mikrotik:/share/netdisco-mibs/net-snmp:/share/netdisco-mibs/netgear:/share/netdisco-mibs/netscreen:/share/netdisco-mibs/nortel:/share/netdisco-mibs/packetfront:/share/netdisco-mibs/rfc#g'
netdisco netdisco.conf netdisco_apache.conf  netdisco_apache_dir.conf 
netdisco.crontab sql/pg
===   Generating temporary packing list
sed: 1: s!%%!g
: unescaped newline inside substitute pattern
*** [generate-plist] Error code 1

Stop in /usr/ports/net-mgmt/netdisco.
*** [install] Error code 1

Stop in /usr/ports/net-mgmt/netdisco.

==

I don't know how to fix this sed and where does the sed comes from.

Thanks in advance
-- 
Best regards, 

Loïc BLOT, Engineering
UNIX Systems, Security and Network Engineer
http://www.unix-experience.fr



___
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

Is there interest in having a net-p2p/terracoin port

2014-04-15 Thread Daniel Morante
I have a port for Terracoin (actually I have ports for several crypto 
currencies):

http://www.unibia.com/unibianet/freebsd/freebsd-ports-many-alternative-crypto-currencies#terracoin

Would there be interest in having Terracoin included in the ports tree?
If so I can submit it.



smime.p7s
Description: S/MIME Cryptographic Signature


Walmart secret shopper

2014-04-15 Thread Charlie Nicholson
Charles Nicholson
Disabled
Available anytime
4392 S US 33
Albion,IN 46701
(260) 239-1302
Have retail experience and would like to become a secret shopper
___
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: Netdisco install broken

2014-04-15 Thread Lowell Gilbert
Loïc Blot loic.b...@unix-experience.fr writes:

 Have you got an idea ?

It works for me, on latest RELENG_9 and ports tree. 

Please give more information about your setup if you
would like people to look into your problem.
___
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 ports which are currently scheduled for deletion

2014-04-15 Thread Jeffrey Bouquet

On Sun, 4/13/14, Jeffrey Bouquet jeffreybouq...@yahoo.com wrote:

 Subject: Re: FreeBSD ports which are currently scheduled for deletion
 To: freebsd-ports@freebsd.org
 Date: Sunday, April 13, 2014, 11:45 AM
 
  
  On 4/13/2014 17:46, Matthew Rezny
  wrote:
 
   On this list I see cfv, which I've used for
  years, marked just because
   it's
   not maintained. It works great, it needs no
  changes. 
 
 
   I'm not officially a maintainer on any ports for a
 few
  reasons. I have other 
   areas where I consider spending my time more
 valuable,
  but if I have to waste 
   it on port maintenance, I'll try to do so in the most
  efficient way. 
  
  Well, you basically said you're more important than
 anybody
  that
  regularly reads this list, so good luck with that tact.
  
...I
 regularly
 
read
 this list
 
.and
 also
 
..have
 not the
 
...experience
 or time
  So you should become a committer.
   
  Try submitting the patches, including staging and assuming
  maintainership (and then honestly be the maintainer). 
  
   Staging is not an opt-in feature so as
  harsh as it is to
  say
  
  This indicates that you haven't been paying attention. 
  
  It's not a goal to have the most
  ports possible; 
  
 ...Maybe take
 changes to a 
 subsection of the forum? I've posted there...
 
 A new subsection group: ports
 X11...
 WWW...
 DEVEL...
 maybe one DELETIONS ( a sticky or subsection)
 and/or PENDING DELETIONS ... and/or
 and deleted ports could be bought back again for those
 who find them useful, even if someone was reading about
 a years-ago removal.
 
 Pardiff (diffp ) comes to mind (just removed this week)
 I use the diffp binary for diffing ports-to-upgrade pipe
 results between days (diffp portlist.MON portlist.TUE)
 I suppose mergemaster.sh could even be updated to
 be more similar to the output of diffp.
 .
 gfontview... 
 ...
 
 Just puttting that idea onto the forum expansion, which
 maybe could solve problems quicker than PR's.
 For instance, as of now,
 textproc/po4a
 x11/roxterm
 devel/dconf
 
 all fail to build failed to load exteral entity 
http://docbook.sourceforge.net/release/
 xsl/current/manpages/docbook.xsl  
 
 and maybe if the forum had been expanded, threads (dconf
 po4a roxterm) would
 have been started/updated explaining the fix, if anyone knew
 it. 
 

...
Lost post en route to the list [ addressee maybe
incomplete]   Re-sending from the SENT folder. 
Sorry for the delay...
___
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


CAD Workstation Rental and Outsourcing Services (10042014)

2014-04-15 Thread WebCAD PLC Ltd.
This email contains graphics, so if you don't see them, view it in your browser 
(
http://webcad-plc.com/index.php?option=com_acymailingctrl=archivetask=viewmailid=23key=b798d1d94262f441cd2c51db245a8ce0subid=39809-5FaooeXioa3I0jtmpl=component
)

WebCAD PLC Limited

NewCAD 2013 is a powerful Computer Aided Design (CAD) product for engineers, 
architects, designers and draftsmen. Anyone who creates, edits, or views
professional drawings will appreciate the power and value of NewCAD. It has set 
the standard for affordable CAD software that offers full
compatibility with the DWG file format and a familiar easy to use command set. 
Anyone who has used or programmed applications for Autodesk® AutoCAD®
software can easily learn to use NewCAD in no time.

Please visit our website www.webcad-plc.com ( http://www.webcad-plc.com ) to 
find out more about our services and try on our professional NewCAD 2013
trial version.

(852) 3528 0535sa...@webcad-plc.com

If you would like us to send newsletters to you, your colleagues or friends,
please subscribe here. ( http://www.webcad-plc.com/newsletter.html )

Not interested any more? Unsubscribe (
http://webcad-plc.com/index.php?subid=39809option=com_acymailingctrl=usertask=outmailid=23key=5FaooeXioa3I0j
 )

___
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