问题标签 [macports]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
macports - MacPorts:添加一个选项来配置脚本
我正在尝试在没有 allegro 支持的情况下安装 libguichan,因为 allegro 不会在 Snow Leopard 上构建。
它应该被忽略,portfile 有:
但是当我安装它时,它会尝试构建快板。有什么方法可以从命令行获取此功能来安装它?
端口:http ://trac.macports.org/browser/trunk/dports/graphics/libguichan/Portfile
php - 如何在 Mac OS X 中升级 PHP?
我觉得这是一个非常迟钝的问题,但奇怪的是,这个问题没有得到很好的记录。
我想升级PHP,但有几个问题:
- 没有内置的包管理器。MacPorts 不会将 php 识别为已安装的软件包,因为它本身并没有安装 PHP。
- 运行
locate php
表明可能存在许多依赖项。 - 我不知道 php 是如何安装的,因为它包含在操作系统中,所以我不知道我应该从源代码安装还是下载二进制文件。我也不知道在不破坏依赖关系的情况下卸载以前版本的正确方法。
我在 Leopard 上跑步。我有一种感觉,Apple 不希望你升级。购买 Snow Leopard 并升级会解决这个问题(以及未来的类似问题)吗?
osx-snow-leopard - 未找到符号 - Snow Leopard 上的 CUnit
我刚刚使用 MacPorts/DarwinPorts 在 Snow Leopard 上安装了 CUnit。安装很顺利,但是在尝试运行单元测试时出现错误:
有没有人遇到过这个问题,或者有没有人成功地让 CUnit 以其他方式在 Snow Leopard 上工作?
ruby - Xapian gem 无法在 Mac OS X Snow Leopard + macports 上安装
我已经在雪豹上安装了带有 macports 的 xapian-core + xapian-bindings,然后尝试安装 xapian gem 失败:
有什么想法吗朋友?
python - MacPorts manual port location
I am installing one library for python from MacPorts. But macports version of the library is older than actual development svn version. Is it possible to specify a custom location for a port installation in MacPorts so I could install latest library from the developer's site?
ruby-on-rails - TextMate 在 opt 中找不到我的 RSpec gem(来自 macports)
我知道我以前遇到过这个问题,所以我真的很沮丧。
我已经为 TextMate 安装了 Ruby RSpec 包,但是当我运行 Behavior Description 或 Run Focused Example 时,我得到了这个奇妙的错误:
(我添加了换行符以使其可读)
我正在使用 macports,所以我的 rspec gem 安装在/opt/local/lib/ruby/gems/1.8/gems/
. 为什么找不到呢?
在 Preferences > Advanced > Shell Variables 我TM_RUBY
设置为/opt/local/bin/ruby
. 我也在这里尝试了这个技巧:
http://dnite.org/2007/8/28/textmate-and-your-environment-variables/
...什么也没做。
python - Leopard 上用于 Python 的 MacPorts
在使用 MacPorts 在 Leopard 上安装 python 3.1 的终端命令上,我没有找到任何具体的语言。我已经通过 Apple 在 Leopard 上安装了 2.5.1。我不想弄乱这个版本,我认为从我的 opt/local 文件运行更新版本的 Python 会更好。SQL3 还包含 Leopard 上的标准 Python 版本。我是否需要通过 MacPorts 再次下载 SQL3 才能使用 Python 3.1?谢谢。
php - 在 php5 中启用 curl
我在我的机器上使用 macports,我意识到 curl 没有启用。无论如何在不完全重新配置php的情况下启用它?
谢谢!
macos - 如何在 OS 10.6 (Snow Leopard) 上解决此 PostgreSQL 错误
我按照从这个站点设置 postgresql 的说明进行操作
在我尝试之前一切似乎都很好:
createuser --superuser myname -U postgres
我得到以下异常:
createuser:无法连接到数据库 postgres:无法连接到服务器:没有这样的文件或目录服务器是否在本地运行并接受 Unix 域套接字“/tmp/.s.PGSQL.5432”上的连接?
对于我的生活,我无法弄清楚如何解决这个问题。有任何想法吗???
c++ - Makefile 找不到 macports 安装的 boost 库
我刚刚从 macports 使用sudo port install boost
.
一切正常。现在我有一个项目,我正在尝试使用 makefile 构建。一切都很好,直到涉及到需要 boost 库的文件。
它说:
src/graph.h:20:42: error: boost/graph/adjacency_list.hpp: No such file or directory
该文件实际上位于两个地方:
/opt/local/include/boost/graph/adjacency_list.hpp
和
/opt/local/var/macports/software/boost/1.42.0_0/opt/local/include/boost/graph /adjacency_list.hpp
在寻找 boost/graph/adjacency_list.hpp 的文件 src/graph.h 中,包含语句在这里:
#include<boost/graph/adjacency_list.hpp>
我该如何进行这项工作?