Re: Obsoleted zope ports deprecation

2011-12-04 Thread Denis Shaposhnikov

On 04/12/11 12:52, Ruslan Mahmatkhanov wrote:


I wrote to you because you are maintainers of zope ports, listed here:
http://people.freebsd.org/~rm/zope-ports-for-deprecation.html

I'm asking for your approval for this ports deprecation and removing in
one month. Deprecation reasons for each port also listed on link above.


Fill free to remove the ports.

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


mplayer from SVN

2009-12-11 Thread Denis Shaposhnikov
Hello,

Does anybody have a port for building mplayer from SVN?

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


[Magick-bugs] 6.3.9-8: libtool: link: `ImageMagick-6.3.9/ltdl/dlopen.la' is not a valid libtool archive

2008-03-25 Thread Denis Shaposhnikov
Hello,

I've posted the message to magick-bugs maillist but no answer yet. May
be here somebody can help me.

I'm trying to build ImageMagick-6.3.9-8 on FreeBSD 6.3 and can't with
the next error:

copying selected object files to avoid basename conflicts...
libtool: link:
`/home/dsh/ports/graphics/ImageMagick/work/ImageMagick-6.3.9/ltdl/dlopen.la'
is not a valid libtool archive *** Error code 1 1 error
*** Error code 2
1 error
*** Error code 2

Stop in /home/dsh/ports/graphics/ImageMagick.
*** Error code 1

Stop in /home/dsh/ports/graphics/ImageMagick.

Does somebody know what does this error mean? Below is configure output:

Host system type : i386-portbld-freebsd6.3

  OptionValue
---
Shared libraries  --enable-shared=yes   yes
Static libraries  --enable-static=yes   yes
Module support--with-modules=no no
GNU ld--with-gnu-ld=yes yes
Quantum depth --with-quantum-depth=16   16
High Dynamic Range Imagery
  --enable-hdri=no  no

Delegate Configuration:
BZLIB --with-bzlib=yes  yes
DJVU  --with-djvu=nono
DPS   --with-dps=no no
FlashPIX  --with-fpx=no no
FontConfig--with-fontconfig=yes yes
FreeType  --with-freetype=yes   yes
GhostPCL  None  pcl6 (unknown)
GhostXPS  None  gxps (unknown)
Ghostscript   None  gs (8.61)
result_ghostscript_font_dir='none'
Ghostscript fonts --with-gs-font-dir=default
Ghostscript lib   --with-gslib=yes  no
Graphviz  --with-gvc=no 
JBIG  --with-jbig=yes   yes
JPEG v1   --with-jpeg=yes   yes
JPEG-2000 --with-jp2=yesyes
LCMS  --with-lcms=yes   yes
LQR   --with-lqr=no no
Magick++  --with-magick-plus-plus=yes   yes
OpenEXR   --with-openexr=no no
PERL
--with-perl=/usr/local/bin/perl5.8.8  /usr/local/bin/perl5.8.8
PNG   --with-png=yesyes RSVG
--with-rsvg=nono TIFF
--with-tiff=yes   yes result_windows_font_dir='none'
Windows fonts --with-windows-font-dir=
WMF   --with-wmf=no no
X11   --with-x=yes  yes
XML   --with-xml=yesyes
ZLIB  --with-zlib=yes   yes

X11 Configuration:
  X_CFLAGS= -I/usr/local/include
  X_PRE_LIBS  = -lSM -lICE
  X_LIBS  = -L/usr/local/lib -R/usr/local/lib
  X_EXTRA_LIBS= 

Options used to compile and link:
  PREFIX  = /usr/local
  EXEC-PREFIX = /usr/local
  VERSION = 6.3.9
  CC  = cc
  CFLAGS  = -O2 -fno-strict-aliasing -pipe -Wall -W
  MAGICK_CFLAGS   = -O2 -fno-strict-aliasing -pipe -Wall -W
  CPPFLAGS= -I/usr/local/include/ImageMagick
  PCFLAGS = 
  DEFS= -DHAVE_CONFIG_H
  LDFLAGS = -L/usr/local/lib -L/usr/local/lib -R/usr/local/lib
-L/usr/local/lib -Wl,--rpath -Wl,/usr/local/lib -lfreetype -lz
-L/usr/local/lib MAGICK_LDFLAGS  = -L/usr/local/lib -L/usr/local/lib
-L/usr/local/lib -R/usr/local/lib -L/usr/local/lib -Wl,--rpath
-Wl,/usr/local/lib -lfreetype -lz -L/usr/local/lib LIBS=
-lMagickCore -ljbig -llcms -ltiff -lfreetype -ljasper -ljpeg -lpng
-L/usr/local/lib -lfontconfig -lXext -lXt -lSM -lICE -lX11 -lbz2 -lxml2
-lz -lm CXX = c++ CXXFLAGS= -O2
-fno-strict-aliasing -pipe -Wall -W

-- 
DSS5-RIPE DSS-RIPN mailto:[EMAIL PROTECTED] xmpp:[EMAIL PROTECTED]
http://wizard.volgograd.ru/ 2:550/[EMAIL PROTECTED] 2:550/[EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]


Re: Ports that have multiple configuration files

2008-01-06 Thread Denis Shaposhnikov
Hello,

On Sun, 06 Jan 2008 01:26:41 -0500
Naram Qashat [EMAIL PROTECTED] wrote:

 I can see how the loop would work within the Makefile.  But I don't
 see how I would handle @unexec and @exec commands in pkg-plist for so
 many configuration files.  I ask because there are 34 separate
 configuration files within the port I am trying to create.

I think that you can try to use pkg-install for this target. For
example:

case $2 in
POST-INSTALL)
# Install real files from *.default.
for i in lib templates; do
for j in `find ${PKG_PREFIX}/ispman/${i} -name
'*.default'`; do real=${j%.default}
[ -f $real ] || cp -p $j $real
done
done
;;
esac

And pkg-deinstall of course for delete them.

-- 
DSS5-RIPE DSS-RIPN mailto:[EMAIL PROTECTED] xmpp:[EMAIL PROTECTED]
http://wizard.volgograd.ru/ 2:550/[EMAIL PROTECTED] 2:550/[EMAIL PROTECTED]
___
freebsd-ports@freebsd.org mailing list
http://lists.freebsd.org/mailman/listinfo/freebsd-ports
To unsubscribe, send any mail to [EMAIL PROTECTED]