Re: py34-rpy2 port dependence on R...

2017-05-11 Thread Russell Jones
Generally using MacPorts with anything in /usr/local will cause 
problems, so see if R will install to another location.


You may be able to use binpaths in macports.conf in the way one can with 
MacTeX, though this relies on ports having binary rather than port name 
dependencies. Let me know if you want more details.


Russell


On 06/05/17 03:54, Carlo Tambuatco wrote:

I have the R.app application installed from the R project which also installs 
the R binary executable in my /usr/local/bin directory, so the point is I have 
R installed but it is not under macports control.

Is there a way to tell macports that I have R installed externally and get the 
py34-rpy2 port to use my installation instead of having to install the R port 
via macports? And if so, have this change persist through port upgrades…?

Thanks.
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Upgrading python from 27 to 36

2017-04-27 Thread Russell Jones
On which interpreter is used, you can control this with (IIRC) something 
like


port select --set python3 python3.6

port select --set python2 python2.7

port select --set python python2

# or "port select --set python python3" if you like

It's most flexible to say #!/usr/bin/env python2 or #!/usr/bin/env 
python3 in scripts (rather than, say, #!/opt/local/bin/python or 
#!/usr/bin/env python), as this ensures the right major version, and 
will use an enabled virtualenv's copy of the interpreter. 
#!/opt/local/bin/python3 would work too.


Don't forget there's also /usr/bin/python and /usr/bin/python2.7. These 
are best avoided.


The Apple-provided build of Python is installed in 
/System/Library/Frameworks/Python.framework and /usr/bin/python, 
respectively. You should never modify or delete these, as they are 
Apple-controlled and are used by Apple- or third-party software. 
Remember that if you choose to install a newer Python version from 
python.org, you will have two different but functional Python 
installations on your computer, so it will be important that your 
paths and usages are consistent with what you want to do.

https://docs.python.org/2/using/mac.html

Russell

On 27/04/17 14:38, Russell Jones wrote:
In short, most stuff works with 2 and 3, and you should use 3. You can 
install both, they're independent. virtualenvs are your friend. Also, 
"import this" if you haven't already :)


In full, it's quite complex. See 
https://wiki.python.org/moin/Python2orPython3


For most features and least hassle, use 3 and ignore 2 if you can. If 
you have old 2 code of your own, have a look at http://python-future.org/


Stuff being 2 only is a bit of a red flag. It's likely unmaintained or 
has architectural or testing problems such that it can't be ported. 
Some newer stuff is 3 only-- typically to rely on new 3 only features 
like asyncio. 2 and 3 stuff is so because of some effort by the 
developers to make it so.


Russell

On 26/04/17 20:59, Michael wrote:

What is involved in switching from python 27 to python 36?

I've been using python 27 for a while. I've run into a problem with 
youtube-dl needing a newer python.


But I don't know what I need to do to safely update. It's not like 
python2 is a different program than python3 (same "python" in both 
cases), and as I understand it, not everything written for P2 is 
compatible with P3.


So what's the proper way to upgrade?
Or is there a way to have both installed at the same time? (but then 
... !#/usr/bin/env python ...)


---
Entertaining minecraft videos
http://YouTube.com/keybounce

___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Upgrading python from 27 to 36

2017-04-27 Thread Russell Jones
In short, most stuff works with 2 and 3, and you should use 3. You can 
install both, they're independent. virtualenvs are your friend. Also, 
"import this" if you haven't already :)


In full, it's quite complex. See 
https://wiki.python.org/moin/Python2orPython3


For most features and least hassle, use 3 and ignore 2 if you can. If 
you have old 2 code of your own, have a look at http://python-future.org/


Stuff being 2 only is a bit of a red flag. It's likely unmaintained or 
has architectural or testing problems such that it can't be ported. Some 
newer stuff is 3 only-- typically to rely on new 3 only features like 
asyncio. 2 and 3 stuff is so because of some effort by the developers to 
make it so.


Russell

On 26/04/17 20:59, Michael wrote:

What is involved in switching from python 27 to python 36?

I've been using python 27 for a while. I've run into a problem with youtube-dl 
needing a newer python.

But I don't know what I need to do to safely update. It's not like python2 is a different 
program than python3 (same "python" in both cases), and as I understand it, not 
everything written for P2 is compatible with P3.

So what's the proper way to upgrade?
Or is there a way to have both installed at the same time? (but then ... 
!#/usr/bin/env python ...)

---
Entertaining minecraft videos
http://YouTube.com/keybounce

___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: gtk2 and gtk3 ports and +x11 vs +quartz variant worries

2016-10-11 Thread Russell Jones
Interesting. Aren't the main requirement for quartz and wayland support 
the same, i.e. port to GTK+ 3 and don't use X11 calls? Or is it more 
subtle than that?


Russell


On 11/10/16 02:42, David Evans wrote:

Overall quartz is taking a back seat to some other alternative backends, 
particularly wayland as a replacement for X11 on Linux platforms.


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Holding a package at a given version

2016-08-11 Thread Russell Jones
It's not really equivalent, since the Debianoids freeze (almost all of) 
the distro at a particular version, so you don't really get dependency 
version errors in the way you do with rolling distros like MacPorts. 
You'd need to hold all the deps in the same way, and all the rdeps of 
those, etc...


You could look at 
https://trac.macports.org/wiki/howto/InstallingOlderPort to see how to 
install an older version of a port, and do it after each upgrade if 
gnuplot gets overwritten. Provided it links OK against newer libs, dep 
names haven't changed, and so on, that would link against the latest 
libs but allow use of the old version. If it didn't work, you could use 
the old Portfile as the basis for one in a local repo as Daniel suggested.


Russell


On 01/08/16 16:44, Adam Mercer wrote:

Hi

Sometimes I want to hold a given package at a specific version, is
there a way to do this with port?

Currently I use something like the following:

$ sudo port upgrade outdated and not gnuplot

however that only works if none of the outdated ports have a
dependency on gnuplot. Is there something like:

# apt-mark hold gnulot

on Debian/Ubuntu?

Cheers

Adam
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: mpv and python

2016-05-05 Thread Russell Jones
From a quick glance at the output of "port cat mpv" it looks like it 
embeds python, and uses it to run the build tool "waf" and for doc 
generation.


set python.versions {27 34}
set python.default_version  27

...

# Set ${python.version} to the currently active variant.
foreach ver ${python.versions} {
if {[variant_isset python${ver}]} {
set python.version ${ver}
}
}

post-patch {
set python_ver_dot [join [split ${python.version} {}] "."]
reinplace -W "${worksrcpath}" 
"s|'rst2man'|'rst2man-${python_ver_dot}'|" wscript

}



It seems to have been pretty generically coded, so it may well work if 
you add 35 to the list. waf says it only works with 3.4 at 
https://github.com/waf-project/waf but maybe that's out of date?


Russell

On 05/05/16 13:53, Mark Bestley wrote:
I had decided that I want python3 variants as much as possible and set 
-python27 +python35 in my variants.conf instead of setting up each 
variant manually on the command line


However I tried to install mpv (which does not have a direct python 
dependency just via youtube-dl) and I got


Error: org.macports.patch for port mpv returned: can't read 
"python.version": no such variable


Why is it looking for python?

Mark

___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: php55 extension to use __()?

2016-04-25 Thread Russell Jones
Just a hunch-- could it be that PHP7 defines it, but it does something 
other than what phpmyadmin expects?


Russell

On 22/04/16 21:57, Jim Hu wrote:

Thanks, I should have provided more detail. The error I get is:

PHP Fatal error:  Call to undefined function __() in
[path_removed]/libraries/sanitizing.lib.php on line 135


which suggests that the sanitizing.lib.php must be loading before 
libraries/sql-parser/src/common.php


But in common.php, the function definition is a fallback wrapped inside

if (!function_exists('__')) {
/**
 * Translates the given string.
 *
 * @param string $str String to be translated.
 *
 * @return string
 */
function __($str)
{
return $str;
}
}


So it never gets defined if php can handle __() from a predefined 
library. Which makes me think that there are two issues.


- for MacPorts php, what do I need so that the function exists.
- for phpmyadmin devs, why common.php isn't loading first.

I'll try to find some support channel for phpmyadmin to submit the 
second.


Jim

On Apr 22, 2016, at 3:34 PM, Brandon Allbery > wrote:


On Fri, Apr 22, 2016 at 4:18 PM, Jim Hu > wrote:
From what I can find online, __() is a shortcut for a translation 
function used in internationalization.


What I am seeing is that in phpMyAdmin 4.6 this is not part of 
gettext but is defined in sql-parser/src/common.php.


--
brandon s allbery kf8nh   sine nomine 
associates

allber...@gmail.com   ballb...@sinenomine.net
unix, openafs, kerberos, infrastructure, xmonad  http://sinenomine.net




___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Thank you all for the wonderful MacPorts Meeting in Slovenia (and see you again soon ...)

2016-03-19 Thread Russell Jones

I was thinking "The MacPortient Seven" :)

On 18/03/16 14:39, Eneko Gotzon wrote:
On Fri, Mar 18, 2016 at 11:29 AM, Mojca Miklavec > wrote:


the relatively small group of hackers


The Magnificent Seven 
 ;)


--
Eneko Gotzon Ares
enekogot...@gmail.com 


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Audacity build question. for Ticket #47189

2016-02-25 Thread Russell Jones
I see the version of the Portfile at 
https://github.com/RJVB/macstrop/tree/master/audio/audacity linked in 
https://trac.macports.org/ticket/47189 uses wxWidgets 3.0.x: 
"wxWidgets.use   wxWidgets-3.0"


Russell

On 23/02/16 11:02, Robert Chalmers wrote:

Interesting port.

Do you plan to update this to use wxWidgets-3.0.2.0 - or has it in 
fact been done…. a newer ticket somewhere?






Robert Chalmers
rob...@chalmers.com .au Quantum Radio: 
http://tinyurl.com/lwwddov
Mac mini 6.2 - 2012, Intel Core i7,2.3 GHz, Memory:16 GB. El-Capitan 
10.11.  XCode 7.2.1
2TB: Drive 0:HGST HTS721010A9E630. Upper bay. Drive 1:ST1000LM024 
HN-M101MBB. Lower Bay







___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: py33-scipy problem

2016-01-21 Thread Russell Jones

Have you tried this?

Russell

On 21/01/16 09:10, Jerry wrote:

:error:fetch org.macports.fetch for port py33-scipy returned: must set at least 
one Fortran variant


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: What is the name of the Bouncy Castle Port?

2016-01-06 Thread Russell Jones
The description field in the Portfile should include the words "bouncy 
castle" so it shows up on a "port search". Ah well.


"port search --long_description bouncy" does find it (see the output of 
"port help search").


Russell


On 04/01/16 19:54, Jeffrey Walton wrote:

On Mon, Jan 4, 2016 at 2:51 PM, Ryan Schmidt  wrote:

On Jan 4, 2016, at 1:45 PM, Jeffrey Walton wrote:


I'm having trouble finding the Bouncy Castle package. The web search
tool is returning 0 results. Attempting to install it from the command
line is resulting in failures:

hilbert:~$ sudo port install bouncycastle
Error: Port bouncycastle not found
hilbert:~$ sudo port install bouncy-castle
Error: Port bouncy-castle not found
hilbert:~$ sudo port install bouncy-castle-java
Error: Port bouncy-castle-java not found

What is the name of the Bouncy Castle package?

Thanks in advance.

Is it this one?

Thanks Ryan.


lcrypto @1.28 (java, crypto)

Description:  The Bouncy Castle Crypto package is a Java
   implementation of cryptographic algorithms.
Homepage: http://lcrypto.sourceforge.net/

Build Dependencies:   jikes, junit, fastjar
Library Dependencies: gnu-classpath
Platforms:darwin
License:  MIT
Maintainers:  nomaintainer

Please forgive my ignorance. What is the name I use for the 'port
install' command?

Jeff
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: How to use personal style and class files with LaTeX built through TexLive

2015-12-22 Thread Russell Jones
I use MacTeX, but for that it's ~/Library/texlive/201*/texmf-var/ I 
guess it's the same for MacPorts?


kpsepath tex | tr : "\n" | sort

should give a list of locations. Run just "kpsepath" to get a list of 
other available paths.


( FWIW, I set

binpath 
/Library/TeX/texbin/:/opt/local/bin:/opt/local/sbin:/bin:/sbin:/usr/bin:/usr/sbin


in /opt/local/etc/macports/macports.conf

This means that ports that check bin: rather than port: deps can rely on 
MacTeX instead of MacPorts-- see, e.g. 
https://trac.macports.org/ticket/49746 )


Russell

On 21/12/15 22:02, Ryan Jamison wrote:

Hello,

I use LaTeX from the TexLive (texlive-latex) port. For this 
installation, I'm unclear where and how I'd be able to "install" my 
personal style and class files? Where do they go? Any help would be 
appreciated.


Thanks,

Ryan


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: latex/texlive port: broken latex?

2015-11-30 Thread Russell Jones

What if you comment out \usepackage{mydefs} and add

\begin{document}

test

\end{document}

as the rest of the document?

That works for me on Ubuntu 14.04 LTS with XeLaTeX and pdflatex from 
MacTeX on 10.10.


I can't readily test it with the MacPorts package as we use MacTeX with 
MacPorts by prepending /Library/TeX/texbin/ to the binpath in 
/opt/local/etc/macports/macports.conf That used to be in the FAQ on 
macports.org IIRC (well, it was /usr/local/texlive/2015/texbin or 
similar as it was pre-10.11), but seems to have been removed. 
/usr/texbin is linked to /Library/TeX/texbin/


Russell

On 30/11/15 13:18, Thomas Ruedas wrote:

Hi again,
I am just trying a newly installed texlive installation (latex-extra, 
Macports 2.3.4), but it seems that something is broken. When I try to 
compile a rather straightforward document with the following header 
section:

\documentclass[12pt]{article}
\usepackage[utf8]{inputenc}
\usepackage[T1]{fontenc}
\usepackage[pdftex]{geometry}
\usepackage[english]{babel}
%\usepackage[ngermanb]{babel}
\usepackage{natbib}
\usepackage{latexsym,amsmath,amsfonts,amssymb,textcomp,calc,units,longtable,booktabs,url} 


\geometry{paper=a4paper,top=1.5cm,bottom=2cm,hdivide={2cm,*,2cm}}
\usepackage{mydefs}
\pagestyle{empty}

the errors shown below appear. I have verified that mktexnam is present:
/opt/local/share/texmf-texlive/web2c/mktexnam $Id: mktexnam 34656 
2014-07-18 23:38:50Z karl $

kpathsea version 6.2.1

Any ideas what is wrong?
Thomas

(/opt/local/share/texmf-texlive/tex/latex/base/t1enc.def)
kpathsea: Running mktextfm ecrm1200
/opt/local/share/texmf-texlive/web2c/mktexnam: Could not map source 
abbreviation  for ecrm1200.

/opt/local/share/texmf-texlive/web2c/mktexnam: Need to update ?
mktextfm: Running mf-nowin -progname=mf \mode:=ljfour; mag:=1; 
nonstopmode; input ecrm1200
This is METAFONT, Version 2.7182818 (TeX Live 2015/MacPorts 2015_7) 
(preloaded base=mf)



kpathsea: Running mktexmf ecrm1200
! I can't find file `ecrm1200'.
<*> ...ljfour; mag:=1; nonstopmode; input ecrm1200

Please type another input file name
! Emergency stop.
<*> ...ljfour; mag:=1; nonstopmode; input ecrm1200

Transcript written on mfput.log.
grep: ecrm1200.log: No such file or directory
mktextfm: `mf-nowin -progname=mf \mode:=ljfour; mag:=1; nonstopmode; 
input ecrm1200' failed to make ecrm1200.tfm.

kpathsea: Appending font creation commands to missfont.log.

! Font T1/cmr/m/n/12=ecrm1200 at 12.0pt not loadable: Metric (TFM) 
file not fou

nd.

   relax
l.105 \fontencoding\encodingdefault\selectfont

? x
No pages of output.
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Variant conflicts

2015-11-18 Thread Russell Jones
Most likely, you have installed a port that doesn't support quartz, but 
that directly or indirectly depends on gtk3.


Russell

On 18/11/15 07:45, Bachsau wrote:

Hi there!
Today I ran a port upgrade outdated and got the following message:


Error: gtk3: Variant quartz conflicts with x11
Error: Unable to open port: Error evaluating variants

But my variants.conf is

-x11 +no_x11 +quartz +bash_completion

So whats going on? There's a minus in front of x11 so it should not try to 
install x11 AND quartz.


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Error installing Cairo/ Pango/ ncurses/ port self updates and so on..

2015-11-12 Thread Russell Jones



On 12/11/15 10:45, Ryan Schmidt wrote:

On Nov 12, 2015, at 4:22 AM, Russell Jones wrote:

I suggest you use Disk Utility to run disk and permissions repairs, possibly 
with a verify first if you want to know which files will be affected. Then see 
if what you describe changes. It would also be useful to know whether either of 
these repairs take any action.

He is running El Capitan. Apple removed the option to repair permissions from 
Disk Utility in El Capitan. It's a pointless thing to do usually.

Repair permissions only knows what the permissions are supposed to be on 
software installed using Apple's Installer. Software installed using MacPorts 
is not installed using Apple's Installer so the repair permissions function 
will not affect anything installed using MacPorts.


Good point, though I guess /opt itself would be checked.

TBH, I suggested both out of habit as sometimes one will get a system 
working and sometimes the other.


Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Error installing Cairo/ Pango/ ncurses/ port self updates and so on..

2015-11-12 Thread Russell Jones
I suggest you use Disk Utility to run disk and permissions repairs, 
possibly with a verify first if you want to know which files will be 
affected. Then see if what you describe changes. It would also be useful 
to know whether either of these repairs take any action.


Russell

On 11/11/15 19:15, Gazei Ajkl wrote:
It tells me I’m not the owner. I can’t change or delete the file. Even 
if I run the commands as superuser (sudo). I’ve tried changing the 
read only restrictions in the file browser, but even if I login as the 
admin it doesn’t allow me to change the settings.


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Trace/BPT trap: 5 on Mac OS 10.9.2 Mavericks

2015-10-09 Thread Russell Jones
Run otool -L on it and see if the files listed exist (e.g. as below). If 
not, install the corresponding ports. You'll likely need to recompile 
the binary if it was linked against a previous MacPorts installation.


otool -L /bin/bash | sed -E -e "s/^[^ ]+$//g" -e 's/^([^ ]*).*$/\1/g' | 
xargs ls -l


Russell

On 09/10/15 15:50, mcaba...@brera.inaf.it wrote:

Hi,

I get the following messages when running a binary on MAC OS Mavericks
(10.9.5):

dyld: Library not loaded: @rpath/libcfitsio.2.dylib
   Reason: image not found
Trace/BPT trap: 5

Any help would be highly appreciated.

Thanks!

M.

___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Trace/BPT trap: 5 on Mac OS 10.9.2 Mavericks

2015-10-09 Thread Russell Jones
Run otool -L on it and see if the files listed exist (e.g. as below). If 
not, install the corresponding ports. You'll likely need to recompile 
the binary if it was linked against a previous MacPorts installation.


otool -L /bin/bash | sed -E -e "s/^[^ ]+$//g" -e 's/^([^ ]*).*$/\1/g' | 
xargs ls -l


Russell

On 09/10/15 15:50, mcaba...@brera.inaf.it wrote:

Hi,

I get the following messages when running a binary on MAC OS Mavericks
(10.9.5):

dyld: Library not loaded: @rpath/libcfitsio.2.dylib
   Reason: image not found
Trace/BPT trap: 5

Any help would be highly appreciated.

Thanks!

M.

___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: GIMP latest version

2015-10-09 Thread Russell Jones


On 09/10/15 10:12, Eneko Gotzon wrote:


On Thu, Oct 8, 2015 at 11:50 PM, Dominik Reichardt > wrote:


14 is a higher number than 2, so 2.8.14 is newer than 2.8.2


Oh my God! What kind of Cosmic Stupid I am…!

Please, excuse me and don't throw me, as deserved, out of this 
wonderful list.


I misunderstood the numbering ("2.8.2 > 2.8.1[4]").

Sorry about the noise : /

I'm not but a primate trying to use a computer… : /

I don't know, you seem to be doing string comparisons, so I guess you 
have some knack for understanding how computers "think" :)


Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Help uninstall a port

2015-09-09 Thread Russell Jones

Also consider

sudo port selfupdate && sudo port upgrade outdated

and

https://guide.macports.org/chunked/installing.macports.uninstalling.html 
(but only if you're not using anything else in MacPorts)


Have you found another way to run ROOT? What doesn't work in the 
MacPorts version?


Russell

On 03/09/15 18:22, Alessandra Gioventù wrote:

Dear Mrs/Mr,
I’m a student, I have a MacBook Pro with OS X 10.9.5. Almost a year ago, I have 
installed root using macports, but it doesn’t work properly, so I have to 
uninstall the port. Is it possible? How can I do it?
Thank you for your time,
A. G.
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Subversion checkout failed

2015-07-22 Thread Russell Jones



On 22/07/15 07:31, David Evans wrote:

On 7/21/15 11:13 PM, semaphor...@yahoo.com wrote:

Hello MP list,

I tried to upgrade all the outdated ports on Mac OS X 10.6, but it stopped with 
error:
  
Error: org.macports.fetch for port libnetpbm returned: Subversion check out failed

Please see the log file for port libnetpbm for details:
 
/opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_tarballs_ports_graphics_netpbm/libnetpbm/main.log

In said log files, it seems unable to reach the server:

:info:fetch svn: OPTIONS of 'https://svn.code.sf.net/p/netpbm/code/advanced': 
could not connect to server (https://svn.code.sf.net)

I looked for past filed bugs, but nothing conclusive, as my firewall was off.

Other suggestions?

Regards,
Pat
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users

SourceForge has been having problems with many services offline for 
some time (days).

See http://sourceforge.net/blog/category/status-updates/ for details.
With respect to your particular problem, the relevant comment in 
yesterday's post is
" Work continues 24×7 on restoration of SCM (git, hg, bzr, svn, cvs) 
services ..."


Dave
Also, from 
http://sourceforge.net/blog/sourceforge-infrastructure-and-service-restoration/,


"We’re holding SCM service restoration for last, and will be 
prioritizing Git service to be first within that process based on its 
fast verification path. Holding SCM restoration for last allows us to 
take a cautious approach and to free our staff to interact with 
developers if any concerns exist when the service is re-enabled."


Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Python packages installed using pip not on PATH

2015-07-16 Thread Russell Jones

One can similarly break OS X by installing to the system Python
"The Apple-provided build of Python is installed in 
/System/Library/Frameworks/Python.framework and /usr/bin/python, 
respectively. You should never modify or delete these, as they are 
Apple-controlled and are used by Apple- or third-party software. 
Remember that if you choose to install a newer Python version from 
python.org, you will have two different but functional Python 
installations on your computer, so it will be important that your paths 
and usages are consistent with what you want to do." 
https://docs.python.org/2/using/mac.html


Having a secondary full Python install using Anaconda is the closest 
equivalent to MacPorts on Linux, though there are pros and cons relative 
to virtualenvs + -dev packages. Once the metadata issues on Linux are 
sorted, allowing pre-built binary wheels (already available on Windows 
and OS X) I'd say virtualenvs will have the edge.


The main thing I've run into with virtualenvs on both platforms is 
having the relevant development libraries available, and MacPorts deals 
with this well in a lot of cases.


Russell

On 16/07/15 01:50, Brandon Allbery wrote:


All of Perl, Python, and Ruby recommend you do not install manually 
any modules / packages in a package manager-provided tree, not even 
with standard utilities like Perl's cpan. There are very good reasons 
for this, although less applicable to MacPorts than to, say, Linux 
(where installing the wrong Perl module on a Debian-ish system can 
break dpkg/apt-get, or the wrong Python module on a Red Hat-ish system 
can break yum. I've actually had to help someone try to recover from 
the former).




___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Python packages installed using pip not on PATH

2015-07-16 Thread Russell Jones
It depends on the use case, but with Python often it's worth using a 
virtualenv with a requirements.txt, the commands are virtualenv-2.7 and 
pyvenv-3.4 in MacPorts. This allows better reproduceability and it's 
fairly easy to start the setup again with a fresh virtualenv. I think 
Ruby has at least one equivalent. I don't know about Perl. With Python's 
pip, there's also the --user flag, but it's less easy to clean up and 
start again or have multiple set-ups.


Russell

On 16/07/15 01:50, Brandon Allbery wrote:
On Wed, Jul 15, 2015 at 8:45 PM, Ludwig > wrote:


On Wed, 15 Jul 2015, Ryan Schmidt wrote:
> MacPorts should be the only software installing files into the
MacPorts
> prefix (/opt/local); using pip (or anything else) to install
software into
> the MacPorts prefix is not recommended.

Does this include ruby gems?


All of Perl, Python, and Ruby recommend you do not install manually 
any modules / packages in a package manager-provided tree, not even 
with standard utilities like Perl's cpan. There are very good reasons 
for this, although less applicable to MacPorts than to, say, Linux 
(where installing the wrong Perl module on a Debian-ish system can 
break dpkg/apt-get, or the wrong Python module on a Red Hat-ish system 
can break yum. I've actually had to help someone try to recover from 
the former).


--
brandon s allbery kf8nh sine nomine associates
allber...@gmail.com  
ballb...@sinenomine.net 

unix, openafs, kerberos, infrastructure, xmonad http://sinenomine.net


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


Re: Installing igraph

2015-07-03 Thread Russell Jones
Did you remove /opt/local/ then try to reinstall MacPorts? If so, then 
see https://guide.macports.org/chunked/installing.macports.uninstalling.html


Russell


On 03/07/15 15:46, Floriane B wrote:

Dear All,

I got a problem while trying to install igraph to use on python27, 
implemented in FreeCAD.

I tried to install it with MacPorts.
Here are my computer settings:

*Logiciel*  OS X 10.9.5 (13F34)


Here is the error I face while trying to install igraph:

Error: org.macports.activate for port python27 returned: Image error: 
/Applications/MacPorts/Python 2.7/IDLE.app/Contents/Info.plist already 
exists and does not belong to a registered port.  Unable to activate 
port python27. Use 'port -f activate python27' to force the activation.


Error: Failed to install python27

Please see the log file for port python27 for details:

/opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_tarballs_ports_lang_python27/python27/main.log

Error: The following dependencies were not installed: py27-setuptools 
python27


To report a bug, follow the instructions in the guide:

http://guide.macports.org/#project.tickets 



Error: Processing of port py27-igraph failed


Do you think i should force the activation of port python27 ?
Thank you very much in advance !!

Floriane

2015-07-02 13:42 GMT-04:00 Floriane B >:


Dear All,

I got a problem while trying to install igraph to use on python27,
implemented in FreeCAD.
I tried to install it with MacPorts.
Here are my computer settings:

*Logiciel*  OS X 10.9.5 (13F34)


Here is the error I face while trying to install igraph:

Error: org.macports.activate for port python27 returned: Image
error: /Applications/MacPorts/Python
2.7/IDLE.app/Contents/Info.plist already exists and does not
belong to a registered port.  Unable to activate port python27.
Use 'port -f activate python27' to force the activation.

Error: Failed to install python27

Please see the log file for port python27 for details:


/opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_tarballs_ports_lang_python27/python27/main.log

Error: The following dependencies were not installed:
py27-setuptools python27

To report a bug, follow the instructions in the guide:

http://guide.macports.org/#project.tickets

Error: Processing of port py27-igraph failed


Do you think i should force the activation of port python27 ?
Thank you very much in advance !!

Floriane




___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


___
macports-users mailing list
macports-users@lists.macosforge.org
https://lists.macosforge.org/mailman/listinfo/macports-users


RE: Mythtv-core.25

2012-08-04 Thread Russell Jones
That should be "sudo port install", not just "sudo install", no? If no-one here 
knows for sure, also check on the MythTV mailing list or ask on IRC 
http://www.mythtv.org/wiki/IRC .

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Nelson M Sanchez 
 [nel...@kolipoki.com]
Sent: 04 August 2012 15:16
To: macports-users@lists.macosforge.org
Subject: Mythtv-core.25

I am trying to install the MythTV backend on my OS-X Lion Server.

I have been following the instructions in:

http://www.mythtv.org/wiki/Building_Myth_for_Mac_with_MacPorts

The first step to install qt4-mac executed perfectly.

When I follow the second step:


sudo install mythtv-core.25 +mysql-server

I get:

homeserver:Users Nelson$ sudo install mythtv-core.25 +mysql-server
Password:
install: mythtv-core.25: No such file or directory
homeserver:Users Nelson$

Any ideas on how to address this issue?

I have looked for the actual distribution, but have been unlucky so far.

Thanks,

Nelson
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo/macports-users


RE: MythTV port?

2012-03-24 Thread Russell Jones
Most people don't file tickets at all, they just think "huh, it doesn't work" 
and move on. For those who do file bug reports, sometimes there's time to look 
into the logs and what the problems are, sometimes there isn't. Sure, more 
detail is better and will get things fixed quicker, but do you think it's a 
good idea to discourage people from reporting problems?

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Jeremy Lavergne 
[jer...@lavergne.gotdns.org]
Sent: 23 March 2012 02:32
To: Craig Treleaven
Cc: James Linder; macports-users@lists.macosforge.org
Subject: Re: MythTV port?

> I'm going to *attempt* to be a maintainer--I'm very worried that I'm biting 
> off far more than I can chew.

The nice thing is most people will tell you what is wrong and maybe how to fix 
it, rather than just spewing tickets that something somewhere broke. Most 
people. :-)
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


gcc4.5 doesn't build on 10.7.3 for me

2012-03-15 Thread Russell Jones
Is anyone else having this problem? The ticket below would suggest so, though 
it may be a different problem from mine.

http://trac.macports.org/ticket/30306

 It's suggested that one build with clang rather than llvm-gcc42, but it's not 
explained how to ask MacPorts to do that. I guess one could port select one, 
but shouldn't it be set by the Portfile? Or is there some other way?

I'd look at the log, but I've cleaned the build remnants and MacPorts is 
building something else just now.

Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


port clean all stops at py25-mayavi

2012-02-09 Thread Russell Jones
port clean all stops at py25-mayavi and displays the message

Error: Unable to open port: Port remote fetch failed: You do not have 
permission to write to /opt/local/var/macports/portdirs
To report a bug, see 

port clean py25-mayavi does the same thing. py2{6,7}-mayavi do not have this 
problem.

Bug http://trac.macports.org/ticket/33198 filed.

Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Python frameworks

2011-08-09 Thread Russell Jones
Thanks for the explanation. OK, so the key would seem to be consistently named 
variants (and possibly a list of python-related variants if more than one is 
needed) that can be set in variants.conf

From: Ryan Schmidt [ryandes...@macports.org]
Sent: 09 August 2011 07:43
To: Russell Jones
Cc: mark brethen; macports-users@lists.macosforge.org
Subject: Re: Python frameworks

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Python frameworks

2011-08-08 Thread Russell Jones
From: Ryan Schmidt [ryandes...@macports.org]
Sent: 08 August 2011 17:50
To: Russell Jones
Cc: mark brethen; macports-users@lists.macosforge.org
Subject: Re: Python frameworks

> Are you suggesting that a port, such as py27-pylint, should install different 
> contents (e.g. a pylint symlink, or not), depending on what python has been 
> selected with "sudo port select python"? 

Yes.

> If so, I would be strongly against that. "port select" is exclusively for a 
> user's convenience; no port should change how it installs or functions based 
> on what the user may or may not have "port select"ed.

I can kind of see why you wouldn't want this on principle, but could you 
elaborate? Why should a user have to select which version of python they want 
for every package, when in the majority of cases the same version will be 
desired? Having a default doesn't exclude exceptions.

I guess the main problem would be the case where a user switches back and forth 
constantly between selections, making it a poor basis for variant selection.

If one port selects gcc-mp-4.5, say, doesn't that mean it will be used as the 
system gcc, and so to compile ports? I can see that's undesirable (inconsistent 
packages, untested toolchains, etc)

On the other hand, if a user selected +as_python for a bunch of ports as a 
deliberate (and hopefully comprehended) action because they want to have only 
one place where they set the python version, I think such problems would be 
avoided.

Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Python frameworks

2011-08-08 Thread Russell Jones
Or simpler for the user (perhaps) have an "as_python" option, the default (this 
would work for ipython, too), which would set the value based on the selected 
version of python, e.g. python2.7 -> pylint-2.7 (or however it's written in the 
"port select" names)

Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Macports group instead of macports user?

2011-07-21 Thread Russell Jones

From: Joshua Root [j...@macports.org]
Sent: 19 July 2011 17:48
To: Russell Jones
Cc: MacPorts Users
Subject: Re: Macports group instead of macports user?

On 28164-7-23 05:59 , Russell Jones wrote:
> Hello,
>
> My understanding is that Macports 2.0 will allow (require?) one to run the 
> macports system as a special macports user. Would it be possible to run it as 
> any member of a macports group? This would be useful to us if, for instance, 
> we want to work on porting a program with a user and allow them to develop 
> and test a Portfile, but don't want to give them full sysadmin rights.

The only change to this stuff in 2.0 is that we have privilege dropping
turned on in macports.conf.default and create a user at install time to
use with it. You can already set macportsuser to whatever (existent)
user you like in 1.9.

You can also set whatever ownership you like on the prefix. If a user
has sufficient privileges to write to files in the prefix, they don't
have to use sudo to install ports. The macportsuser setting is only used
when port is started as root. (Can't drop privileges you don't have.)

- Josh


Ah, I see. That's good to hear. When building packages under linux, root (or 
fakeroot) privileges are sometimes required. I thought there might be similar 
issues with building source under MacPorts.

Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Macports group instead of macports user?

2011-07-19 Thread Russell Jones
Hello,

My understanding is that Macports 2.0 will allow (require?) one to run the 
macports system as a special macports user. Would it be possible to run it as 
any member of a macports group? This would be useful to us if, for instance, we 
want to work on porting a program with a user and allow them to develop and 
test a Portfile, but don't want to give them full sysadmin rights.

Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: What is the proper way to go from python26 to python27?

2011-07-06 Thread Russell Jones
There's probably a neater way to do it, but I did something like

port search --line py26- | cut -f1 | xargs -n1 port installed | grep -Ev 
"(currently|are) installed" | sed -E "s/@.*//g" | sed  "s/py26-/py27-/g" | 
xargs -n1 port info  

then

port search --line py26- | cut -f1 | xargs -n1 port installed | grep -Ev 
"(currently|are) installed" | sed -E "s/@.*//g" | sed  "s/py26-/py27-/g" | sed 
-E "s/^/sudo port install /g" > install-py27.sh

And edited the file, doing searches for the missing items in case they were 
irregularly named, or there was a replacement or equivalent.

Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Problem with install

2011-03-31 Thread Russell Jones
Hi Ed,

Did you have a look at trac.macports.org? e.g. 
http://trac.macports.org/search?q=pure-gen

Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Re:

2011-03-09 Thread Russell Jones
If you noticed the number in square brackets next to the process when you 
suspended it, you can also say "kill %n" where n is the number, e.g. kill %1. 
You then need to type fg (or bg) to continue the process, so it can die.

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Jason Swails 
[jason.swa...@gmail.com]
Sent: 09 March 2011 15:16
To: Bruno DOUTRIAUX - Youmé-TECH
Cc: macports-users@lists.macosforge.org
Subject: Re:

Use Ctrl-C to kill the process rather than suspend it. You can run it in the 
foreground again using "fg" and then hit Ctrl-C, or just use the "kill" command 
with its PID to kill it.

Good luck,
Jason

2011/3/9 Bruno DOUTRIAUX - Youmé-TECH 
mailto:harloc...@gmail.com>>
Hello,

i was trying to install gcc45 using mac port but it hanged so i did ctrl z
and it stopped then i redid sudo port install gcc45
and then i had a lock.
how can i unlock it ?

imac-de-meriem-lentz:~ harlock59$ sudo port -d install gcc45
DEBUG: Found port in file:///opt/local/var/
macports/sources/rsync.macports.org/release/ports/lang/gcc45
DEBUG: Changing to port directory: 
/opt/local/var/macports/sources/rsync.macports.org/release/ports/lang/gcc45
DEBUG: OS Platform: darwin
DEBUG: OS Version: 9.8.0
DEBUG: Mac OS X Version: 10.5
DEBUG: System Arch: powerpc
DEBUG: setting option os.universal_supported to yes
DEBUG: org.macports.load registered provides 'load', a pre-existing procedure. 
Target override will not be provided
DEBUG: org.macports.distfiles registered provides 'distfiles', a pre-existing 
procedure. Target override will not be provided
DEBUG: Reading variant descriptions from 
/opt/local/var/macports/sources/rsync.macports.org/release/ports/_resources/port1.0/variant_descriptions.conf
DEBUG: 'universal_variant no' specified, so not adding the default universal 
variant
DEBUG: Requested variant darwin is not provided by port gcc45.
DEBUG: Requested variant macosx is not provided by port gcc45.
DEBUG: Executing variant powerpc provides powerpc
Waiting for lock on 
/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_lang_gcc45/work/.macports.gcc45.state


--
--
Bruno DOUTRIAUX
EI Youmé-TECH
Artisan Auto-Entrepreneur
03 27 41 13 54 (fixe)
06 58 60 39 53 (gsm)
Technicien Dépannages Informatique
www.youmetech.fr
www.depannage-informatique-valenciennes.fr
-


___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users




--
Jason M. Swails
Quantum Theory Project,
University of Florida
Ph.D. Candidate
352-392-4032
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: How do I get etherape to work in OS X 10.6.6?

2011-03-08 Thread Russell Jones
As I understand it you don't need to do that since ultimately gcc4.5 gets built 
by gcc4.5.

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Zack Perry 
[zack.pe...@sbcglobal.net]
Sent: 08 March 2011 01:56
To: Ryan Schmidt
Cc: macports-users@lists.macosforge.org
Subject: Re: How do I get etherape to work in OS X 10.6.6?

Hi Ryan,

I will just use the gcc 4.4 in the ports to bootstrap gcc 4.5.2, avoiding the 
older gcc that Apple provides.

I used to do a lot builds and packaging of GNU and other free software in Sun 
Solaris (SPARC/UltraSPARC hosts mostly) for the company I worked for, so I am 
used to this kind of activities.  Since I am at it, I might as well do it all 
way, building the compiler first and every other library that etherape depends.

I know it's tedious, and see this as a last resort but if I need to, I will do 
it (built etherape from "scratch" in Solaris before and it worked)

Best,

-- Zack

Certainly if you wish to install gcc45 for other purposes you can do so, but 
I'm not sure what this has to do with etherape. The etherape port does not have 
a dependency on gcc45, and will not use it even if it is present; it will use 
the gcc provided in Apple's Xcode, just like most other ports do.



___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: finding size of port

2011-02-24 Thread Russell Jones
How does that give the right result, though? Are all the apparent files outside 
of that directory linked?

Russell

From: Ryan Schmidt [ryandes...@macports.org]
Sent: 24 February 2011 11:05
To: Russell Jones
Cc: Emmanuel Hainry; macports-users@lists.macosforge.org
Subject: Re: finding size of port

On Feb 24, 2011, at 03:22, Russell Jones wrote:

>> Citando Russell Jones :
>>> If you have access to a system with it installed, you could use the 
>>> following to get the size in kilobytes
>>>
>>> port contents texlive-latex-extra | xargs file | grep -vE ": directory$" | 
>>> cut -d: -f1 | xargs du -k | cut -f1 | paste -s -d "+" - | bc
>>
>> Or (assuming your macports prefix is /opt/local/var):

/opt/local, actually.


>>du -h /opt/local/var/macports/software/texlive-latex-extra/
>
> Will that work in the general case? How so?

In the general case of a port you have installed, yes. I use:

du -sh /opt/local/var/macports/software/PORTNAME/*

where you would replace "PORTNAME" with the name of the port you want to know 
the installed size of.


___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: finding size of port

2011-02-24 Thread Russell Jones
Will that work in the general case? How so?

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Emmanuel Hainry 
[mil...@macports.org]
Sent: 23 February 2011 17:48
To: macports-users@lists.macosforge.org
Subject: Re: finding size of port

Citando Russell Jones :
> If you have access to a system with it installed, you could use the following 
> to get the size in kilobytes
>
> port contents texlive-latex-extra | xargs file | grep -vE ": directory$" | 
> cut -d: -f1 | xargs du -k | cut -f1 | paste -s -d "+" - | bc
>

Or (assuming your macports prefix is /opt/local/var):

du -h /opt/local/var/macports/software/texlive-latex-extra/

++
Emmanuel
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: finding size of port

2011-02-23 Thread Russell Jones
If you have access to a system with it installed, you could use the following 
to get the size in kilobytes

port contents texlive-latex-extra | xargs file | grep -vE ": directory$" | cut 
-d: -f1 | xargs du -k | cut -f1 | paste -s -d "+" - | bc

Russell


From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Srinath Vadlamani 
[srin...@txcorp.com]
Sent: 23 February 2011 16:38
To: macports-users@lists.macosforge.org
Subject: finding size of port

How does one find the size of a port/package?

Say I instaleld tex-live medium and want to install texlive-latex-extra but I 
am worried that my SD only has 2 GB left.
How can check the size of texlive-latex-extra to see if it is worth it?

Thanks
===
Srinath Vadlamani, PhD
srin...@txcorp.com
(w)303-996-2034
(f)303-448-7756
www.txcorp.com
Tech-X Corp.
5621 Arapahoe Ave. Suite A
Boulder, CO 80027





___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: dolphin (kdebase4) details view

2011-01-19 Thread Russell Jones
Have you tried bugs.kde.org?

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Jonathan Stickel 
[jjstic...@vcn.com]
Sent: 19 January 2011 15:03
To: macports-users@lists.macosforge.org
Subject: dolphin (kdebase4) details view

I installed kdebase4 in order to use the dolphin file manager.  I prefer
the "Details" view.  However, the file names are truncated seemingly
randomly for this view!  I have attached a screenshot.  Do other see
this behavior?  Any thoughts for a fix?  I tried changing the font and
deleting any existing KDE settings (~/Library/Preferences/KDE), but
neither helped.  A google search didn't turn up anything, either.

Thanks,
Jonathan
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: libpng 1.5.0 has issues and is breaking builds (but it's not in macports)

2011-01-18 Thread Russell Jones
It can't be as like Ryan said, only 1.4.5 is in macports right now.

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Bradley Giesbrecht 
[b...@pixilla.com]
Sent: 18 January 2011 18:11
To: macports-users Users
Subject: Re: libpng 1.5.0 has issues and is breaking builds

I have been having issues making png's from pdf's using ghostscript
which depends on libpng.
This is on a system that has been making png's from pdf's a hundred
times a day for over a year.

This happened after upgrading ghostscript to 9.00.

Reverting back to ghostscript 8.71_5 and we are working again.

I don't know that libpng 1.5.0 is part of my issue but it may be.


--
Bradley Giesbrecht

On Jan 18, 2011, at 8:04 AM, Jonathan Stickel wrote:

> QT3 seems to be affected as well.  I'll try to file a bug when I get
> a chance (it seems the build log disappeared; I guess I'll need to
> rebuild).
>
> Jonathan
>
>
> On 1/18/11 08:00 , macports-users-requ...@lists.macosforge.org wrote:
>> Right, I overreacted since I hadn't looked at the actual libpng
>> version number in macports. It turns out that these were the only two
>> ports that failed to build... As you say, no need for a rollback as
>> it's still 1.4.x.
>>
>> On Jan 17, 2011, at 14:51, Russell Jones wrote:
>>
>>>> Srinath Vadlamani wrote:
>>>>>>
>>>>>> Current warning on libpng
>>>>>> website:http://www.libpng.org/pub/png/libpng.html
>>>>>>
>>>>>> seems that many ports are not building because of another
>>>>>> issue dealing with incompatible png.h.
>>>>>>
>>>>>> I looked at the bug reports but I don't see one that casts
>>>>>> this png.h as big of a problem as it may be.
>>>>>>
>>>>>> Any ideas on how to fix this?
>>>>
>>>> gnuplot and netpbm fail to build, at least. I'm hoping for a
>>>> rollback, but failing that I guess I'll have to start checking
>>>> which ports don't build and finding/filing reports for each. I'm
>>>> doing a leaf-per-line build now to see how far the damage
>>>> extends.
>>
> ___
> macports-users mailing list
> macports-users@lists.macosforge.org
> http://lists.macosforge.org/mailman/listinfo.cgi/macports-users

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Why does MacPorts Mercurial behave differently from Windows Mercurial?

2011-01-18 Thread Russell Jones
Might be the EOL character sequence differing. Have you tried applying the 
utilities in the port dos2unix?

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Russell Hanneken 
[rhanne...@pobox.com]
Sent: 18 January 2011 11:03
To: macports-users@lists.macosforge.org
Subject: Why does MacPorts Mercurial behave differently from Windows Mercurial?

I've been working my way through the book _Mercurial: The Definitive Guide_.  
When I try the example that runs from here

http://hgbook.red-bean.com/read/collaborating-with-other-people.html#id371865

to here

http://hgbook.red-bean.com/read/collaborating-with-other-people.html#id372450

using the MacPorts version of Mercurial, I get results that are different from 
what the book says I should get.  When I use the Windows version of Mercurial, 
I get what's in the book.

The difference arises with the last box.  When I do the "hg merge" part using 
Windows Mercurial, I get what the author gets:

C:> hg merge
merging myfile
0 files updated, 1 files merged, 0 files removed, 0 files unresolved
(branch merge, don't forget to commit)

But when I use MacPorts Mercurial, I get a merge conflict, and I have to merge 
the changes manually:

$ hg merge
merging myfile
warning: conflicts during merge.
merging myfile failed!
0 files updated, 0 files merged, 0 files removed, 1 files unresolved
use 'hg resolve' to retry unresolved file merges or 'hg update -C .' to 
abandon

I've created a simplified series of commands that should let you reproduce the 
issue:

hg init main
cd main
echo This is a boring feature. > myfile
hg commit -A -m "We have reached an important milestone"
hg tag v1.0
echo This is exciting and new! >> myfile
hg commit -m "Add a new feature"
cd ..
hg clone -rv1.0 main stable
cd stable
echo This is a fix to a boring feature. > myfile
hg commit -m "Fix a bug"
cd ../main
hg pull ../stable
hg merge

On Windows, you'd have to change the forward slashes to backslashes, but 
otherwise the commands should work as is on both platforms.

Can anyone explain the difference?  Is it a bug in the MacPorts version of 
Mercurial?

I'm using Mercurial 1.7.3 on both platforms.  I also experienced the merge 
conflict when I used version 1.7.2 of MacPorts Mercurial.

Regards,

Russell Hanneken
rhanne...@pobox.com

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: libpng 1.5.0 has issues and is breaking builds

2011-01-17 Thread Russell Jones
Right, I overreacted since I hadn't looked at the actual libpng version number 
in macports. It turns out that these were the only two ports that failed to 
build... As you say, no need for a rollback as it's still 1.4.x.

Russell

From: Ryan Schmidt [ryandes...@macports.org]
Sent: 17 January 2011 21:30
To: Russell Jones
Cc: Srinath Vadlamani; macports-users@lists.macosforge.org
Subject: Re: libpng 1.5.0 has issues and is breaking builds

On Jan 17, 2011, at 14:51, Russell Jones wrote:

> Srinath Vadlamani wrote:
>>
>> Current warning on libpng website: http://www.libpng.org/pub/png/libpng.html
>>
>> seems that many ports are not building because of another issue dealing with 
>> incompatible png.h.
>>
>> I looked at the bug reports but I don't see one that casts this png.h as big 
>> of a problem as it may be.
>>
>> Any ideas on how to fix this?
>

> gnuplot and netpbm fail to build, at least. I'm hoping for a rollback, but 
> failing that I guess I'll have to start checking which ports don't build and 
> finding/filing reports for each. I'm doing a leaf-per-line build now to see 
> how far the damage extends.


Note libpng was just updated to 1.4.5, not 1.5.0, partly due to the 
aforementioned vulnerability shown on the libpng web site.

Since the request to update to 1.4.x had been outstanding for over a year [1], 
I think we're unlikely to roll this back now. Please file tickets for ports you 
find that are broken and we will deal with them on a case by case basis.


[1] http://trac.macports.org/ticket/23125





___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: libpng 1.5.0 has issues and is breaking builds

2011-01-17 Thread Russell Jones
gnuplot and netpbm fail to build, at least. I'm hoping for a rollback, but 
failing that I guess I'll have to start checking which ports don't build and 
finding/filing reports for each. I'm doing a leaf-per-line build now to see how 
far the damage extends.

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Srinath Vadlamani 
[srin...@txcorp.com]
Sent: 17 January 2011 18:20
To: macports-users@lists.macosforge.org
Subject: libpng 1.5.0 has issues and is breaking builds

Current warning on libpng website:http://www.libpng.org/pub/png/libpng.html

seems that many ports are not building because of another issue dealing with 
incompatible png.h.

I looked at the bug reports but I don't see one that casts this png.h as big of 
a problem as it may be.

Any ideas on how to fix this?

<>Srinath
===
Srinath Vadlamani, PhD
srin...@txcorp.com
www.txcorp.com
Tech-X Corp.
5621 Arapahoe Ave. Suite A
Boulder, CO 80027





___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: [MacPorts] #27913: xulrunner-devel @2.0b8: error: --with-system-nspr and --with-nspr-libs/cflags are mutually exclusive.

2011-01-10 Thread Russell Jones
Try
port contents firefox-x11-devel | grep bin

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Jasper Frumau 
[jasperfru...@gmail.com]
Sent: 10 January 2011 14:54
To: MacPorts Users
Subject: Re: [MacPorts] #27913: xulrunner-devel @2.0b8: error: 
--with-system-nspr and --with-nspr-libs/cflags are mutually exclusive.

Solved it with added +internal_dependencies thanks to reply by port maintainer. 
When I want to run ff 4.0 and enter "firefox-x11-devel or firefox-x11 in a 
terminal command is not found though.. Wrong command perhaps?

On Mon, Jan 10, 2011 at 3:00 PM, MacPorts 
mailto:nore...@macports.org>> wrote:
#27913: xulrunner-devel @2.0b8: error: --with-system-nspr and --with-nspr-
libs/cflags are mutually exclusive.
-+--
 Reporter:  jasperfru...@…  |   Owner:  jerem...@…
 Type:  defect  |  Status:  closed
 Priority:  Normal  |   Milestone:
 Component:  ports   | Version:  1.9.2
Resolution:  duplicate   |Keywords:
 Port:  xulrunner-devel |
-+--
Changes (by j...@…):

 * status:  new => closed
 * resolution:  => duplicate


Comment:

 #27807

--
Ticket URL: 
MacPorts 
Ports system for Mac OS

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: OpenSSH

2010-11-09 Thread Russell Jones
It runs on port  by default, and so I don't think it interacts as such. If 
you tried to run it on port 22, it wouldn't start until you disabled the built 
in ssh. And I mean disabled, not just stopped as on Linux: services seem to 
always auto-restart on Mac OS X.

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of kevin beckford 
[chig...@lazyweb.ca]
Sent: 07 November 2010 21:34
To: MacPorts Users
Subject: OpenSSH

How does the openssh from macports interact with the openssh from
Apple?  I am running openssh from macports, along with openssl.  Is
there anything I need to be aware of, such as issues with keychain?
Versions?  Should keychain be saving my ssh key?

--
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Compiling Java 6 on 10.5.8

2010-09-28 Thread Russell Jones
I meant Java Preferences in /Applications/Utilities
AIUI, Sun released as much as they could as GPL without violating third party 
license agreements. There is the GNU Classpath project to clone Java which 
predates this, OpenJDK which is Sun's release IIRC, and Iced Tea which I think 
is an attempt to fill in the gaps in OpenJDK with Classpath and new code. 
That's from memory and I have the idea the story is even more complicated than 
that. I'd imagine Wikipedia has the details. 

Russell

To: MacPorts Users
Subject: Compiling Java 6 on 10.5.8

Is it possible to compile Java 6 on 10.5.8?

I'm not concerned about the graphic front-end support (from what I
understand, that has to come from Apple because they modify it for
their system). I'm looking at wanting to compile server-side /
back-end java code.

How much of Java has been open-sourced?
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Compiling Java 6 on 10.5.8

2010-09-27 Thread Russell Jones
Have you looked at the JVM selection dialogue in System Preferences?

Russell

From: macports-users-boun...@lists.macosforge.org 
[macports-users-boun...@lists.macosforge.org] on behalf of Michael_google 
gmail_Gersten [keybou...@gmail.com]
Sent: 27 September 2010 16:38
To: MacPorts Users
Subject: Compiling Java 6 on 10.5.8

Is it possible to compile Java 6 on 10.5.8?

I'm not concerned about the graphic front-end support (from what I
understand, that has to come from Apple because they modify it for
their system). I'm looking at wanting to compile server-side /
back-end java code.

How much of Java has been open-sourced?
--
Political and economic blog of a strict constitutionalist
http://StrictConstitution.BlogSpot.com
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: build fail for package R @2.11.1 +gcc44

2010-09-09 Thread Russell Jones
Some suggestions: search for existing reports of this problem in 
trac.macports.org and if you find none, file a new ticket. Reply to this thread 
stating the ticket number. Contact the port maintainer. If there isn't one, try 
the relevant R mailing list(s).

Russell
--- Begin Message ---
Hey everyone,

I normally install R from http://r.research.att.com/, but on my fresh
install of Mac OS X, I thought I'd give the MacPorts version a try. No
compelling reason for the switch. Just figured it might consolidate my
software updates and I'm not a huge fan of the OS X GUI in any case.
Anyway, I'm having issues installing. It seems like R itself builds,
but when installing the recommended package MASS, there's an error
opening a connection somewhere. I've attached the build log. Here are
the last few lines from the terminal:

begin installing recommended package lattice
begin installing recommended package MASS
Error in file(con, "r") : cannot open the connection
Calls:  -> sub -> grep -> readLines -> file
In addition: Warning message:
In file(con, "r") :
  cannot open file
'/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_math_R/work/R-2.11.1/etc/x86_64/Makeconf':
No such file or directory
Error: could not find function "do_exit_on_error"
Execution halted
make[2]: *** [lattice.ts] Error 1
make[2]: *** Waiting for unfinished jobs
Error in file(con, "r") : cannot open the connection
Calls:  -> sub -> grep -> readLines -> file
In addition: Warning message:
In file(con, "r") :
  cannot open file
'/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_math_R/work/R-2.11.1/etc/x86_64/Makeconf':
No such file or directory
Error: could not find function "do_exit_on_error"
Execution halted
make[2]: *** [MASS.ts] Error 1
make[1]: *** [recommended-packages] Error 2
make: *** [stamp-recommended] Error 2
shell command " cd
"/opt/local/var/macports/build/_opt_local_var_macports_sources_rsync.macports.org_release_ports_math_R/work/R-2.11.1"
&& /usr/bin/make -j2 all " returned error 2
Error: Target org.macports.build returned: shell command failed
DEBUG: Backtrace: shell command failed
while executing
"command_exec build"
(procedure "portbuild::build_main" line 8)
invoked from within
"$procedure $targetname"
Warning: the following items did not execute (for R):
org.macports.activate org.macports.build org.macports.destroot
org.macports.install
Log for R is at:
/opt/local/var/macports/logs/_opt_local_var_macports_sources_rsync.macports.org_release_ports_math_R/main.log
Error: Status 1 encountered during processing.
To report a bug, see 

Faisal


main.log.gz
Description: main.log.gz
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: I'm a beginner so be nice to me

2010-09-03 Thread Russell Jones


 On 03/09/10 09:27, Scott Haneda wrote:

mv local/{,.off}

This expands to

mv local/ local/.off

I think you want
mv local{,.off}
i.e.
mv local local.off
or even
mv local{,.off}/
giving
mv local/ local.off/

echo's handy for checking how things like this turn out.

Russell

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: rubber dependencies

2010-08-20 Thread Russell Jones

On 20/08/10 12:49, Arno Hautala wrote:

MacPorts can live happily next to Fink
I guess it can, but don't the macports developers recommend not doing 
this because of potential name conflicts and library cross-linking 
nightmares?


Russell

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: latex packages and ports

2010-08-20 Thread Russell Jones

On 19/08/10 18:55, Scott Webster wrote:

On Thu, Aug 19, 2010 at 10:49 AM, Thomas Weiss
  wrote:
   

Use the local tree. That's why it exists

I'm not saying that that is an inappropriate thing to do, it's just
that the whole point of using the macports versions of the extra
packages is to avoid managing your local tree.  If it is too difficult
or otherwise unfeasible to make it work, then we might as well not
bother and tell people to use the local tree, perhaps that is what you
are suggesting... but I think that "port install texlive-latex-extra"
is easier than setting up your local tree for many users.

Scott
   
It would be good if macports had functional parity with MacTeX, given 
that all the relevant porting problems seem to have been solved. Would 
it make sense to work with them? Perhaps it could all get made into 
portfiles? Maybe it should even be distributed as a custom macports 
installer that detects if macports is already installed and uses that or 
adds it as required. Has this ever been raised with them? At present 
their FAQ just says to put their install in /usr/local/ first in the 
path to get it working with macports.


Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: how to configure macports Lyx

2010-07-16 Thread Russell Jones
revtex at least is available as a separate port (or was quite recently: 
the texlive port has just been reorganised I think).


Russell

Srinath Vadlamani wrote:

I am trying to get LyX @1.6.7_0+python25 (active) to be configured to use
new document classes.

The Mac lyx website

http://wiki.lyx.org/FAQ/MacInstall

says to use:
Installing document classes that are "Unavailable"

The "Document class" setting has a pop-up menu of many classes. At the end
of the list are the "Unavailable" classes which are ones that LyX knows
about but doesn't have the .cls file for. Let's say you want to make the
"article (Springer LNCS)" class become available. First download the archive
of LaTeX2e files from their
site.
Then install the files therein to your TeX installation. If you installed
TeX using MacPorts/DarwinPorts, you can do this by unzipping that directory
to /opt/local/share/texmf-dist/tex/latex/llncs2e. Then run `sudo texhash` to
let the system know about them. Then run LyX and choose Reconfigure from the
application menu and restart. When you start again, the document class
should be available.


But on my machine:

ls /opt/local/share/texmf-dist

ls: /opt/local/share/texmf-dist: No such file or directory

So now I look for a texmf:
ls /opt/local/share/texmf*
/opt/local/share/texmf:
ls-R  web2c

/opt/local/share/texmf-texlive:
asymptote dvipdfm   dvips ls-R  tex   texdocttf2pkxdvi
doc   dvipdfmx  fonts scripts   texconfig texdoctk  web2c xindy

/opt/local/share/texmf-texlive-dist:
bibtexdoc   fonts makeindex metapost  omega sourcevtex
context   dvips ls-R  metafont  mft   scripts   tex

So, which one is my current Lyx using?
 /opt/local/share/texmf-texlive-dist/tex/latex seems to have quite a bit
more than the non-dist.  With this current set up, many standard classes are
not available.  These (such as RevTex or SIAM) are usually there when one
installs MacTex-Live: http://www.tug.org/mactex/2009/

What am I missing or doing incorrect?

<>Srinath

  



___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
  


___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: Installing a particular package version via macports

2010-05-26 Thread Russell Jones

Simone wrote:

Hi,

 I'm trying to install, via macports , a complete py-gtk
environment[1] on snow-leopard but I'm getting errors[2] compiling
some gtk2 dependencies. Supposing a gtk2 related problem, I used the
"port list installed|grep gtk2" to discover the gtk2 version installed
by macports: v.2.20.1.
Because some people consider Gtk2 2.20.* a problematic release, I
would like try to replace this version with an older one, the 2.18.2(
already tested on a leopard-notebook), but I really don't know how to
do it :-(.

Could somebody give me some usefull tip / pointer ?

Thank you in avance,
 Simone

[1]
py25-gtk py25-gobject py25-gobject py25-cairo py25-cairo py25-pip
py25-psycopg2 py25-tz py25-goocanvas gnome-themes gtk-nodoka-engine
gtk-smooth-engine gtk2-aurora gtk2-clearlooks gtk2-extra
gtk2-industrial gtk2-murrine gtk-theme-switch

[2]
File compilation-error.log (in attachment)
  
If you're compiling 64-bit (the default for macports on Snow Leopard), 
IIRC there are problems with Python 2.5 64-bit support. This may only be 
Apple's python, though.


From 
http://developer.apple.com/mac/library/documentation/Darwin/Reference/ManPages/man1/python.1.html


" *64-BIT* *SUPPORT*

Version *2.6* supports 64-bit execution (which is on by default).  Version 
*2.5* only supports 32-bit exe-cution. execution.
cution.

Like the version of Python, the *python* command can select between 32 and 
64-bit execution (when both
are available).  Use:

  % defaults write com.apple.versioner.python Prefer-32-Bit -bool yes

to make 32-bit execution the user default (using 
`/Library/Preferences/com.apple.versioner.python' will
set the system-wide default).  The environment variable 
VERSIONER_PYTHON_PREFER_32_BIT can also be used
(has precedence over the preference file):

  % export VERSIONER_PYTHON_PREFER_32_BIT=yes _#_ _Bourne-like_ _shells_
   *or*
  % setenv VERSIONER_PYTHON_PREFER_32_BIT yes _#_ _C-like_ _shells_

Again, the preference setting and environmental variable applies to both 
*python* and *pythonw*

"
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: MacPorts 1.9.0-beta2 now available for testing

2010-05-20 Thread Russell Jones

Joshua Root wrote:

Source code and disk images for MacPorts 1.9.0-beta2 are now
available [1]. Testing of either of these install methods is helpful.

While there are no known regressions from 1.8.2 at this point, be
prepared to encounter bugs. Please report any that you find [2] (after
first searching Trac [3], of course!)

There are a large number of changes in this release. See the ChangeLog
[4] for a list of most of them. You may like to focus your testing on
the new features in that list, as well as your normal usage.

Notable changes since beta1 are:
 * Fix for a bug where dependencies that could be satisfied by more than
one port would sometimes incorrectly not be considered to be satisfied
(ticket #24808)
 * Fixed registry conversion failure when an installed port has been
force activated (ticket #24880)
 * Fixed "too many open files" error when installing many ports in a
single command (ticket #24857)

See the beta1 announcement [5] for information about switching to the
new registry format
Thanks for the update. How long will 1.8.2 remain supported? Will there 
be a transition period, or will one have to switch from 1.8 to 1.9 
straight away on its release?


Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Installing Quartz GnuCash

2010-05-18 Thread Russell Jones
Or perhaps have a look at the changeset used to make that pre-built package and 
translate it into macports (or just point out the relevant bits and file a bug).

Russell
--- Begin Message ---
Try the pre-built 2.2.9 version: http://sourceforge.net/projects/gnucash/

I struggled a lot with trying to build it but ultimately found it much 
less painful to take advantage of someone else's sweat and tears.

 Dr. Kurt Hillig
   UMNet Administration I always tell theFax (734)763-4050
  University of Michigan absolute truth,Phone (734)647-8778
Ann Arbor, MI  48105-3640as I see it.   EMail khillig(at)umich.edu

  > Computers were invented to help people waste more time faster <

On Mon, 17 May 2010, Glenn Hoffman wrote:

> I have been struggling thru installing the Quartz variant of GnuCash into Mac 
> OS X 10.5.8 following the instructions at 
> http://wiki.gnucash.org/wiki/MacOSX/MacPortsDetail#Using_MacPorts_to_install_the_native_Quartz_version_of_GnuCash
>
> I am now stuck after my latest attempt, which produced the following report. 
> Where do I go from here?
>
> Pika:~ glenn$ sudo port install gnucash
> --->  Computing dependencies for gnucash
> --->  Extracting tiff
> --->  Applying patches to tiff
> --->  Configuring tiff
> --->  Building tiff
> --->  Staging tiff into destroot
> --->  Installing tiff @3.9.2_3+macosx
> --->  Activating tiff @3.9.2_3+macosx
> --->  Cleaning tiff
> --->  Fetching gtk2
> --->  Attempting to fetch gtk+-2.18.8.tar.bz2 from 
> ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/gtk+/2.18/
> --->  Verifying checksum(s) for gtk2
> --->  Extracting gtk2
> --->  Applying patches to gtk2
> --->  Configuring gtk2
> --->  Building gtk2
> --->  Staging gtk2 into destroot
> --->  Installing gtk2 @2.18.8_0+no_x11+quartz
> --->  Activating gtk2 @2.18.8_0+no_x11+quartz
> --->  Cleaning gtk2
> --->  Fetching libglade2
> --->  Attempting to fetch libglade-2.6.4.tar.bz2 from 
> ftp://ftp.cse.buffalo.edu/pub/Gnome/sources/libglade/2.6/
> --->  Verifying checksum(s) for libglade2
> --->  Extracting libglade2
> --->  Configuring libglade2
> --->  Building libglade2
> --->  Staging libglade2 into destroot
> --->  Installing libglade2 @2.6.4_1
> --->  Activating libglade2 @2.6.4_1
> --->  Cleaning libglade2
> --->  Fetching opensp
> --->  Attempting to fetch OpenSP-1.5.2.tar.gz from 
> http://voxel.dl.sourceforge.net/openjade
> --->  Verifying checksum(s) for opensp
> --->  Extracting opensp
> --->  Configuring opensp
> --->  Building opensp
> --->  Staging opensp into destroot
> --->  Installing opensp @1.5.2_0
> --->  Activating opensp @1.5.2_0
> --->  Cleaning opensp
> --->  Fetching libofx
> --->  Attempting to fetch libofx-0.9.1.tar.gz from 
> http://voxel.dl.sourceforge.net/libofx
> --->  Verifying checksum(s) for libofx
> --->  Extracting libofx
> --->  Configuring libofx
> --->  Building libofx
> --->  Staging libofx into destroot
> --->  Installing libofx @0.9.1_0
> --->  Activating libofx @0.9.1_0
> --->  Cleaning libofx
> --->  Fetching glut
> --->  Verifying checksum(s) for glut
> --->  Extracting glut
> --->  Configuring glut
> --->  Building glut
> --->  Staging glut into destroot
> --->  Installing glut @3.7_3
> --->  Activating glut @3.7_3
> --->  Cleaning glut
> --->  Fetching makedepend
> --->  Attempting to fetch makedepend-1.0.2.tar.bz2 from 
> http://www.x.org/pub/individual/util/
> --->  Verifying checksum(s) for makedepend
> --->  Extracting makedepend
> --->  Configuring makedepend
> --->  Building makedepend
> --->  Staging makedepend into destroot
> --->  Installing makedepend @1.0.2_0
> --->  Activating makedepend @1.0.2_0
> --->  Cleaning makedepend
> --->  Fetching xorg-dri2proto
> --->  Attempting to fetch dri2proto-2.3.tar.bz2 from 
> http://xorg.freedesktop.org/archive/individual/proto
> --->  Verifying checksum(s) for xorg-dri2proto
> --->  Extracting xorg-dri2proto
> --->  Configuring xorg-dri2proto
> --->  Building xorg-dri2proto
> --->  Staging xorg-dri2proto into destroot
> --->  Installing xorg-dri2proto @2.3_0
> --->  Activating xorg-dri2proto @2.3_0
> --->  Cleaning xorg-dri2proto
> --->  Fetching xorg-glproto
> --->  Attempting to fetch glproto-1.4.11.tar.bz2 from 
> http://xorg.freedesktop.org/archive/individual/proto/
> --->  Verifying checksum(s) for xorg-glproto
> --->  Extracting xorg-glproto
> --->  Configuring xorg-glproto
> --->  Building xorg-glproto
> --->  Staging xorg-glproto into destroot
> --->  Installing xorg-glproto @1.4.11_0
> --->  Activating xorg-glproto @1.4.11_0
> --->  Cleaning xorg-glproto
> --->  Fetching xorg-fixesproto
> --->  Attempting to fetch fixesproto-4.1.1.tar.bz2 from 
> http://xorg.freedesktop.org/archive/individual/proto/
> --->  Verifying checksum(s) for xorg-fixesproto
> --->  Extracting xorg-fixesproto
> --->  Configuring xorg-fixesproto
> --->  Building xorg-fixesproto
> --->  Staging xorg-fixesproto into destroot
> --->  Installing xorg-fixesproto @4.1.1_0
> --->  Activating x

Re: LOL - macports for windows?

2010-04-19 Thread Russell Jones

reiser.p...@gmail.com wrote:
Hello - I have had good results with MacPorts on my Mac, and now my 
girlfriend wants gnumeric for her windows machine. Is there an 
equivalent to MacPorts for Windows, something that will allow someone 
with not a lot of unix experience to get it up and running?
Not exactly what you asked for, but you could just install 
OpenOffice.org for her.


Russell
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Re: Updated libvmime

2010-04-15 Thread Russell Jones
Nothing unless someone chooses to do something. That's what 
"unmaintained" means. The implication is that you might consider 
maintaining the port. Have a look at 
http://guide.macports.org/#development

if you think that might be an option.

Russell

Gabriele Kahlout wrote:

Okay, the ticket has been filed 5 months ago, what's happening to it?

2010/4/15, Ryan Schmidt :
  

On Apr 15, 2010, at 01:53, Gabriele Kahlout wrote:



I'm new to macports, and the idea is really great. However, I need to
install libvmime, and the port available is of a version released in
2005, for which current code examples and documentation is not
available. Could you update it?
  

When you find a port that needs to be updated, you should file a port update
request in the issue tracker. In this case, such a request has already been
filed:

http://trac.macports.org/ticket/22474




It would be wonderful if ports where regularly updated.
  

Many of our ports are regularly updated. Unfortunately libvmime is one of
the ports that do not have a maintainer. Anyone is welcome to volunteer to
become an abandoned port's maintainer, or to attach patches to tickets to
fix them.






  


___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: mplayer-devel upgrade breaks

2010-03-25 Thread Russell Jones
Does x264 build? It doesn't build on 10.6.2 +universal here.
Are either of you setting +universal in /opt/local/etc/macports/variants.conf ?

Russell
--- Begin Message ---
I ran `sudo port outdated  &&  sudo port upgrade outdated && port
clean --all mplayer-devel` and it worked for me. Installed yesterday
morning. Also have debugging output here
http://ijayeola.blogspot.com/2010/03/fixing-broken-mplayer-port.html


On 25 March 2010 01:51, Gill Bates  wrote:
> After a macport selfupdate and attempting to upgrade outdate ports,
> mplayer-devel fails to compile apparently due to a problem with x264.c in
> libavcodec. I've searched trac but didn't find anything related. Note that
> the prefix used (/opt/ports) is different from the default. Platform is
> 10.6.2 with xcode 3.2.1.
> Any suggestions?
> Thanks,
>
> $ sudo port upgrade -u mplayer-devel
> Password:
> --->  Computing dependencies for mplayer-devel
> --->  Building mplayer-devel
> Error: Target org.macports.build returned: shell command " cd
> "/opt/ports/var/macports/build/_opt_ports_var_macports_sources_rsync.macports.org_release_ports_multimedia_mplayer-devel/work/trunk"
> && /usr/bin/make -j2 all " returned error 2
> Command output: /usr/bin/make -C libavcodec
> /usr/bin/gcc-4.2 -Wundef -Wdisabled-optimization -Wno-pointer-sign
> -Wdeclaration-after-statement -std=gnu99 -Wall -Wno-switch -Wpointer-arith
> -Wredundant-decls -O4 -march=core2 -mtune=core2 -pipe -ffast-math
> -fomit-frame-pointer -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64
> -D_LARGEFILE64_SOURCE -Ilibdvdread4 -mdynamic-no-pic -falign-loops=16
> -shared-libgcc -I. -I/opt/ports/include/lzo -I/opt/ports/include
>  -I/usr/X11/include -I/opt/ports/include/freetype2 -I/opt/ports/include   -c
> -o libmpcodecs/ve_x264.o libmpcodecs/ve_x264.c
> libmpcodecs/ve_x264.c: In function 'encode_nals':
> libmpcodecs/ve_x264.c:67: warning: implicit declaration of function
> 'x264_nal_encode'
> libmpcodecs/ve_x264.c: In function 'config':
> libmpcodecs/ve_x264.c:210: error: 'x264_param_t' has no member named
> 'b_bframe_pyramid'
> libmpcodecs/ve_x264.c: In function 'control':
> libmpcodecs/ve_x264.c:220: warning: unused variable 'mod'
> make: *** [libmpcodecs/ve_x264.o] Error 1
> make: *** Waiting for unfinished jobs
> /usr/bin/gcc-4.2 -DHAVE_AV_CONFIG_H -I.. -I.. -Wundef
> -Wdisabled-optimization -Wno-pointer-sign -Wdeclaration-after-statement
> -std=gnu99 -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4
> -march=core2 -mtune=core2 -pipe -ffast-math -fomit-frame-pointer
> -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
> -Ilibdvdread4 -mdynamic-no-pic -falign-loops=16 -shared-libgcc -I.
> -I/opt/ports/include/lzo -I/opt/ports/include  -I/usr/X11/include
> -I/opt/ports/include/freetype2 -I/opt/ports/include   -c -o libx264.o
> libx264.c
> /usr/bin/gcc-4.2 -DHAVE_AV_CONFIG_H -I.. -I.. -Wundef
> -Wdisabled-optimization -Wno-pointer-sign -Wdeclaration-after-statement
> -std=gnu99 -Wall -Wno-switch -Wpointer-arith -Wredundant-decls -O4
> -march=core2 -mtune=core2 -pipe -ffast-math -fomit-frame-pointer
> -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE64_SOURCE
> -Ilibdvdread4 -mdynamic-no-pic -falign-loops=16 -shared-libgcc -I.
> -I/opt/ports/include/lzo -I/opt/ports/include  -I/usr/X11/include
> -I/opt/ports/include/freetype2 -I/opt/ports/include   -c -o cavs_parser.o
> cavs_parser.c
> libx264.c: In function 'encode_nals':
> libx264.c:75: warning: implicit declaration of function 'x264_nal_encode'
> libx264.c: In function 'X264_init':
> libx264.c:190: error: 'x264_param_t' has no member named 'b_bframe_pyramid'
> make[1]: *** [libx264.o] Error 1
> make[1]: *** Waiting for unfinished jobs
> make: *** [libavcodec/libavcodec.a] Error 2
> Error: Unable to upgrade port: 1
>
> ___
> macports-users mailing list
> macports-users@lists.macosforge.org
> http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
>
>



-- 
John Maclean
07739 171 531
MSc (DIC)

Enterprise Linux Systems Engineer
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


trac ticket reports broken?

2010-03-19 Thread Russell Jones
Is there something wrong with trac? I can't file tickets at the moment. I don't 
get an error, the ticket form just reloads with blank values. I checked the 
"tickets filed by me" report, and none of them have gone through.

 

Russell

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Port problem: GitX

2010-03-16 Thread Russell Jones
> nor is there apparently a precompiled version of git
There isn't anything precompiled in macports, I thought.
Is there a reason not to use git-core? Could you modify that port to have a 
+universal variant?

Russell
--- Begin Message ---
> > Kleiman-ibook:~ michael$ sudo port install -d GitX +universal | tee 
> > /tmp/curl-fail.txt

> Before reporting a bug, first run the command again with the -d flag to get 
> complete output.

Thankfully, someone mentioned that the -d goes before the install, not after.

> I see you're building universal for ppc and i386, and that you're on an 
> iBook. Do you really need to build universal? What benefit does building the 
> Intel code give you on a PowerPC Mac? I recommend you simply don't use the 
> universal variant to avoid this error.

On occasion, I do need to do universal compiles. For example, I'm the
only person who is interested in UfoAI that can compile PPC/i386 for
distribution of the test/debug versions.

As I discovered last year, in order to do a universal compile,
EVERYTHING needs to be universal. If there was even one piece already
installed that did not have +universal, it would fail; the best and
simplest solution was to just put +universal on everything.

In fairness, this was either right at the switch to 1.8, or the last
of the 1.7 branches; things may have been patched since then.

As it is, I'm trying to get ahold of a project (Dasher) that is only
available via git; there is no precompiled mac version of Dasher
(yet), nor is there apparently a precompiled version of git.

So, I'm making a universal version of git that can then be distributed
(hopefully/maybe); followed by a universal version of Dasher that
can/will be.

So, to give away universal versions of:
UfoAI
Dasher
Git (?)
I need to compile universal even though I only run PPC.
--
Economic and political blog of a strict constitutionalist
http://StrictConstitution.BlogSpot.com
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: port install wget broken

2010-03-15 Thread Russell Jones
Oh, and send us the output. I'm wondering if you're forgotten to type sudo at 
some point and installed locally.

Russell
--- Begin Message ---
Try
sudo port selfupdate
sudo port clean wget
sudo port install wget

If that fails, try
sudo port clean wget
sudo port -d install wget
--- Begin Message ---
Nah,

Still getting errors on this. New to ports so don't know my way around
so well ;-)


jmacl...@p0rnstar.local ~ > sudo port sync -v
Password:
jmacl...@p0rnstar.local ~ > sudo port install wget -v -d
--->  Computing dependencies for zlib
--->  Fetching zlib
--->  Attempting to fetch zlib-1.2.4.tar.bz2 from
http://lil.fr.distfiles.macports.org/zlib
--->  Attempting to fetch zlib-1.2.4.tar.bz2 from http://www.gzip.org/zlib/
--->  Attempting to fetch zlib-1.2.4.tar.bz2 from http://www.zlib.net/
--->  Verifying checksum(s) for zlib
--->  Extracting zlib
--->  Configuring zlib
--->  Building zlib
--->  Staging zlib into destroot
--->  Deactivating zlib @1.2.3_4
--->  Computing dependencies for zlib
--->  Installing zlib @1.2.4_0
--->  Activating zlib @1.2.4_0
--->  Cleaning zlib
--->  Computing dependencies for wget
--->  Verifying checksum(s) for wget
Error: Checksum (md5) mismatch for wget-1.12.tar.gz
Error: Checksum (sha1) mismatch for wget-1.12.tar.gz
Error: Checksum (rmd160) mismatch for wget-1.12.tar.gz
Error: Target org.macports.checksum returned: Unable to verify file
checksums
Error: Status 1 encountered during processing.
Before reporting a bug, first run the command again with the -d flag to
get complete output.



On 13/03/2010 05:03, Adam Mercer wrote:
> On Fri, Mar 12, 2010 at 16:51, john maclean  wrote:
>> port install wget is broken for me on Snow Leopard. here's the tail
>> end of `sudo port install -d wget` shown below. Anything that I can do
>> to help myself here?
> 
> Check the list at:
> 
> 
> 
> if you still have a problem, report back.
> 
> Cheers
> 
> Adam
> 
> PS: wget fetches for me without issue.

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: port install wget broken

2010-03-15 Thread Russell Jones
Try
sudo port selfupdate
sudo port clean wget
sudo port install wget

If that fails, try
sudo port clean wget
sudo port -d install wget
--- Begin Message ---
Nah,

Still getting errors on this. New to ports so don't know my way around
so well ;-)


jmacl...@p0rnstar.local ~ > sudo port sync -v
Password:
jmacl...@p0rnstar.local ~ > sudo port install wget -v -d
--->  Computing dependencies for zlib
--->  Fetching zlib
--->  Attempting to fetch zlib-1.2.4.tar.bz2 from
http://lil.fr.distfiles.macports.org/zlib
--->  Attempting to fetch zlib-1.2.4.tar.bz2 from http://www.gzip.org/zlib/
--->  Attempting to fetch zlib-1.2.4.tar.bz2 from http://www.zlib.net/
--->  Verifying checksum(s) for zlib
--->  Extracting zlib
--->  Configuring zlib
--->  Building zlib
--->  Staging zlib into destroot
--->  Deactivating zlib @1.2.3_4
--->  Computing dependencies for zlib
--->  Installing zlib @1.2.4_0
--->  Activating zlib @1.2.4_0
--->  Cleaning zlib
--->  Computing dependencies for wget
--->  Verifying checksum(s) for wget
Error: Checksum (md5) mismatch for wget-1.12.tar.gz
Error: Checksum (sha1) mismatch for wget-1.12.tar.gz
Error: Checksum (rmd160) mismatch for wget-1.12.tar.gz
Error: Target org.macports.checksum returned: Unable to verify file
checksums
Error: Status 1 encountered during processing.
Before reporting a bug, first run the command again with the -d flag to
get complete output.



On 13/03/2010 05:03, Adam Mercer wrote:
> On Fri, Mar 12, 2010 at 16:51, john maclean  wrote:
>> port install wget is broken for me on Snow Leopard. here's the tail
>> end of `sudo port install -d wget` shown below. Anything that I can do
>> to help myself here?
> 
> Check the list at:
> 
> 
> 
> if you still have a problem, report back.
> 
> Cheers
> 
> Adam
> 
> PS: wget fetches for me without issue.

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: no module named vtk

2010-03-12 Thread Russell Jones
As a side note, it's always worth running
port variants 
when considering installing 
That way you can pick from the list and not have to guess, though of course 
variant names should be consistent. Have you encountered ports that have +py26 
as a variant? Sounds like it might be an error by the packager.

Russell
--- Begin Message ---

On 10 Mar, 2010, at 16:41, Frank Schima wrote:

> 
> 
> 
> On Mar 10, 2010, at 7:04 AM, Aron Wahlberg wrote:
> 
>> Thank you for your answers!
>> 
>> You were right Brandon, I had two port versions of python. I uninstalled the 
>> older and inactive version. I made sure I was running the remaining python 
>> from macports, not the MacOSX one by "which python", which points at 
>> /opt/local/bin/python. Then I reinstalled vtk:
>> 
>>> sudo port uninstall vtk-devel
>>> sudo port clean --all vtk-devel
>>> sudo port -v install vtk-devel +py26
>> 
>> However, I still get no module named vtk-devel. Other ideas?
> 
> You want to install the python26 variant, not "py26". 

Ah, I see. Thank you very much Frank. That solved my problem. Just by 
curiosity: could you give a short explanation of the differences of +py26 and 
+python26.

Thank's to all you helpful souls!

Aron
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: history completion possible?

2010-02-18 Thread Russell Jones
fn+up/dn = pg up/dn

Also, to get a pg up/dn control sequence in terminal, press shift + pg up/dn, 
so you your keyboard shift+fn+up/dn

Russell
--- Begin Message ---
> that started with "svn". However, I don't remember how I did that (it was 
> years ago) and 
> I can't find anything about it in my bash configuration files, so I'm at a 
> loss.
That's very sad! :|


>The page-up and page-down keys are not available because they are intercepted 
>by Terminal.app to handle scrolling of the terminal window.
Ha, that would have been my next question!
On my miniturized iMac keyboard there is NO such button anyway!
My USB M$ ergo keyboard has them though, but it's not working there either.
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users
--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


pgplot fails to build on 10.5.8

2010-02-11 Thread Russell Jones
I've filed a ticket here: https://trac.macports.org/ticket/23668

 

Russell

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


RE: Open LDAP +universal won't build on 10.6.2

2010-01-22 Thread Russell Jones
Now working, thanks!
So the problem was that openldap didn't depend on icu?

Russell
--- Begin Message ---

On Jan 21, 2010, at 10:16, Russell Jones wrote:

> I filed a bug in trac ( http://trac.macports.org/ticket/23300 ) about this a 
> few days ago. Anyone able to shed some light on why it doesn't work? It 
> wasn't clear to me from the debug output. Something to do with the wrong type 
> of libraries being created for the storage back-ends, it seems. I can't see 
> why it happens or what to do about it. I suppose the +aci variant is 
> irrelevant? Is any further information needed? 

I'm fixing this momentarily. Please wait an hour, then "sudo port selfupdate" 
and try again.



--- End Message ---
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


Open LDAP +universal won't build on 10.6.2

2010-01-21 Thread Russell Jones
Hello all,

 

I filed a bug in trac ( http://trac.macports.org/ticket/23300 ) about this a 
few days ago. Anyone able to shed some light on why it doesn't work? It wasn't 
clear to me from the debug output. Something to do with the wrong type of 
libraries being created for the storage back-ends, it seems. I can't see why it 
happens or what to do about it. I suppose the +aci variant is irrelevant? Is 
any further information needed? 

 

Russell

___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users


re: HELP!!!

2009-12-22 Thread Russell Jones
In-Reply-To: 

> HELP!! I NEED A QUESTION ANSWERED, ARE THERE ANY HUMANS OUT 
> THERE? I have installed Mac ports, but I can't find or figure out how to 
> access user command list or menu.  Please tell me how to access user option 
> menu, or whatever it is called?. Because it says the first command to 
> exercise is
>
> sudo port -v selfupdate, and I have no idea where such a command exist. Your 
> help would be greatly appreciated thank you, Ronnie G.
>
> I have never had such a hard time, finding help for an application. What is 
> the deal with MacPorts?? This is insane!

http://www.catb.org/~esr/faqs/smart-questions.html
___
macports-users mailing list
macports-users@lists.macosforge.org
http://lists.macosforge.org/mailman/listinfo.cgi/macports-users