Darwin ports

 
Thread Tools Search this Thread
Operating Systems OS X (Apple) Darwin ports
# 8  
Old 08-28-2009
Install Xcode then maports

As Holden said, first install Xcode then install macports. Also, when you do a macports selfupdate, you have to use sudo.

Code:
blake [ ~/scratch ]$ sudo port selfupdate
Password:

MacPorts base version 1.710 installed
Downloaded MacPorts base version 1.800

Installing new MacPorts release in /opt/local as root:admin - TCL-PACKAGE in /Library/Tcl; Permissions: 0755

blake [ ~/scratch ]$

Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Shell variable is Darwin (OS X)

I'm going through my book on bash and have come to a section on Shell Variables. The editing mode variables don't seem to be there, unless I'm missing something. It says no manual entry for them -- commands like HISTCMD, HISTCONTROL, HISTIGNORE, HISTFILE, HISTFILESIZE, HISTSIZE, HISTTIMEFORMAT,... (0 Replies)
Discussion started by: Straitsfan
0 Replies

2. UNIX for Dummies Questions & Answers

sed -i on Darwin

This is the first time I've come across this issue sed -i 's/"//g' iscrmireturns sed: 1: "iscrmi": command i expects \ followed by textApparently the -i option is non-standard FreeBSD extensions - does that mean it's not available on Darwin? Strange (1 Reply)
Discussion started by: platz
1 Replies

3. OS X (Apple)

Darwin 10.4 - Gnome

Hello, I was curious about how one would go about installing gnome on darwin. As far as I know it must be harder than FreeBSD because there doesn't seem to be any ports for it. Would you have to first set up a build environment (GCC etc...) and then compile it from scratch? or is there an... (3 Replies)
Discussion started by: kpedersen
3 Replies

4. Linux

Darwin x86 kernel only

Is there a link somewhere someone knows about? KW (1 Reply)
Discussion started by: kwa71
1 Replies

5. BSD

Darwin via PearPC

How can I send Ctrl+Alt+Del for Darwin running in PearPC for Linux? (1 Reply)
Discussion started by: eugrus
1 Replies

6. OS X (Apple)

GNU-Darwin

Did anyone here about GNU-Darwin? http://gnu-darwin.org/ Read Bout it! And Darwin can be found here: http://www.opendarwin.org Tell me what U think (4 Replies)
Discussion started by: RedVenim
4 Replies

7. UNIX for Dummies Questions & Answers

Darwin x86

so, what's everyone's opinion on Darwin (x86 rendition)? is it worth installing at the moment? pros? cons? comments? (5 Replies)
Discussion started by: Karma
5 Replies

8. UNIX for Dummies Questions & Answers

Make for Mac OS X (Darwin)

Can anyone tell me where to find "make". I have performed an exhaustive search of my system using find - to no avail. (2 Replies)
Discussion started by: garb
2 Replies

9. UNIX for Dummies Questions & Answers

ADSL with Darwin 1.41

Hey everyone, just to let you all know "I'm an uber n00b" I'm connected to Telstra Bigpond's (Australian ISP) ADSL network, now I;m running Darwin 1.41 on an Apple Macintosh PPC computer. I don't know how to set up ADSL on this system, can someone please guide me. (3 Replies)
Discussion started by: Syphor
3 Replies

10. Programming

ncurses/Darwin

I am using Darwin on Mac OS X.I.I (new to both Unix and C++). I downloaded the ncurses library from http://prdownloads.sourceforge.net/gnu-darwin/ncurses-5.2.tgz, but I don't know what to do with it now. Stuffit has expanded the archive, but I still have the original .tgz as well (if that's... (1 Reply)
Discussion started by: parmenides
1 Replies
Login or Register to Ask a Question
StartupItemContext(8)					    BSD System Manager's Manual 				     StartupItemContext(8)

NAME
StartupItemContext -- Execute a program in StartupItem context SYNOPSIS
StartupItemContext [program [arguments]] DESCRIPTION
The StartupItemContext utility launches the specified program in StartupItem bootstrap context. Each Darwin and Mac OS X login creates a unique bootstrap subset context to contain login specific Mach port registrations with the bootstrap server. All such registrations per- formed within the context of that subset are only visible to other processes within that context or subsequent subsets of it. Therefore, a Mach port based service/daemon launched within a login context will not be visible to other such contexts. To override this, a root user can use the StartupItemContext utility to launch the program within the same bootstrap context as all other StartupItems. All subsequent Mach port bootstrap registrations perfomed by the program will be visible system-wide. NOTES
All bootstrap port lookups will also be resticted to the StartupItem context. The services provided on a per-login basis (clipboard, etc...) will not be available to the program. SEE ALSO
SystemStarter(8) mach_init(8) "Bootstrap Contexts Unleashed" http://developer.apple.com/techpubs/macosx/Darwin/General/KernelProgramming/contexts/index.html HISTORY
The StartupItemContext Darwin July 7, 2002 Darwin