diff options
author | Kito Danya Dietrich <kito@gentoo.org> | 2005-08-18 16:30:06 +0000 |
---|---|---|
committer | Kito Danya Dietrich <kito@gentoo.org> | 2005-08-18 16:30:06 +0000 |
commit | b6bd03efdbed57172850cf7a934e7d7ec523ec6c (patch) | |
tree | 363b4268375e2aba96bd8bad7431a42cf020b4da /profiles/default-darwin | |
parent | version bump, fix pango issue/amd64 problems (diff) | |
download | gentoo-2-b6bd03efdbed57172850cf7a934e7d7ec523ec6c.tar.gz gentoo-2-b6bd03efdbed57172850cf7a934e7d7ec523ec6c.tar.bz2 gentoo-2-b6bd03efdbed57172850cf7a934e7d7ec523ec6c.zip |
Add Python.framework bin dirs to PATH, fix typo in 10.4/package.provided
Diffstat (limited to 'profiles/default-darwin')
-rw-r--r-- | profiles/default-darwin/macos/10.4/package.provided | 2 | ||||
-rw-r--r-- | profiles/default-darwin/macos/10.4/profile.bashrc | 5 | ||||
-rw-r--r-- | profiles/default-darwin/macos/progressive/make.defaults | 1 |
3 files changed, 7 insertions, 1 deletions
diff --git a/profiles/default-darwin/macos/10.4/package.provided b/profiles/default-darwin/macos/10.4/package.provided index c10008b18c35..ff39e3c369dc 100644 --- a/profiles/default-darwin/macos/10.4/package.provided +++ b/profiles/default-darwin/macos/10.4/package.provided @@ -94,7 +94,7 @@ sys-apps/gawk-2.8 sys-apps/grep-2.5.1 sys-apps/groff-1.19.1 sys-apps/less-382 -sya-apps/man-1.5 +sys-apps/man-1.5 sys-process/lsof-4.68 sys-apps/miscfiles-1.3-r1 sys-apps/sed-4.0.7 diff --git a/profiles/default-darwin/macos/10.4/profile.bashrc b/profiles/default-darwin/macos/10.4/profile.bashrc index a659807702a3..540c93810fc3 100644 --- a/profiles/default-darwin/macos/10.4/profile.bashrc +++ b/profiles/default-darwin/macos/10.4/profile.bashrc @@ -4,6 +4,11 @@ export MACOSX_DEPLOYMENT_TARGET=10.4 # /usr/X11R6 is not in our PATH export PATH="${PATH}:/usr/X11R6/bin" export PKG_CONFIG_PATH="${PKG_CONFIG_PATH}:/usr/X11R6/lib/pkgconfig" +# add Python.framework dirs to path +[ -d /System/Library/Frameworks/Python.framework/Versions/Current/bin ] && \ +export PATH="${PATH}:/System/Library/Frameworks/Python.framework/Versions/Current/bin" +[ -d /Library/Frameworks/Python.framework/Versions/Current/bin ] && \ +export PATH="${PATH}:/Library/Frameworks/Python.framework/Versions/Current/bin" alias libtool=glibtool alias libtoolize=glibtoolize diff --git a/profiles/default-darwin/macos/progressive/make.defaults b/profiles/default-darwin/macos/progressive/make.defaults index 522862c7a045..3f618d41a9f8 100644 --- a/profiles/default-darwin/macos/progressive/make.defaults +++ b/profiles/default-darwin/macos/progressive/make.defaults @@ -6,4 +6,5 @@ KERNEL=Darwin ELIBC=Darwin USERLAND=Darwin +USE="ppc-macos" FEATURES="-collision-protect -fakeroot -sandbox -userpriv" |