diff options
author | dd <dd@FreeBSD.org> | 2005-01-30 14:58:01 +0800 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2005-01-30 14:58:01 +0800 |
commit | ce551de22f3db21d536759081c0edfa1a1780e19 (patch) | |
tree | 628d5239f36718709b517488f4aba147d886fa1c /textproc | |
parent | 8def82c48eb12157cf4f0d75fa1718bede920d87 (diff) | |
download | freebsd-ports-gnome-ce551de22f3db21d536759081c0edfa1a1780e19.tar.gz freebsd-ports-gnome-ce551de22f3db21d536759081c0edfa1a1780e19.tar.zst freebsd-ports-gnome-ce551de22f3db21d536759081c0edfa1a1780e19.zip |
Fix the "broken" dependency by checking for the existence of the right
file ("syck" isn't supposed to exist, so the dependency wasn't being
satisfied even though the textproc/syck package was installed).
Diffstat (limited to 'textproc')
-rw-r--r-- | textproc/py-syck/Makefile | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/textproc/py-syck/Makefile b/textproc/py-syck/Makefile index 0376f0c0316c..573fd6bca78d 100644 --- a/textproc/py-syck/Makefile +++ b/textproc/py-syck/Makefile @@ -14,10 +14,7 @@ PKGNAMEPREFIX= ${PYTHON_PKGNAMEPREFIX} MAINTAINER= dd@FreeBSD.org COMMENT= Python binding for Syck, a YAML parser and emitter -# Just a build dependency because the library will be linked into the extension -BUILD_DEPENDS= syck:${PORTSDIR}/textproc/syck - -BROKEN= Broken dependency +BUILD_DEPENDS= ${LOCALBASE}/lib/libsyck.a:${PORTSDIR}/textproc/syck SITELIBDIR= %%PYTHON_SITELIBDIR%%/ PYFILES= ypath.py ydump.py yaml2xml.py |