diff options
author | Rob Austein <sra@hactrn.net> | 2014-03-04 14:50:42 +0000 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2014-03-04 14:50:42 +0000 |
commit | 0086fc05c3a433d3908a90e13edb60eb91c11570 (patch) | |
tree | 3f4fcaddc98dd358c595416e3a6518f96ca2ea56 | |
parent | 4746ce20b72170f310876c4e3c676bcc5b51048c (diff) |
rpki-ca should depend on rpki-rp. This probably breaks
rpki-portupgrade, but it was kind of broken anyway for reasons beyond
our control.
svn path=/trunk/; revision=5695
-rw-r--r-- | buildtools/freebsd-skeleton/rpki-ca/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/buildtools/freebsd-skeleton/rpki-ca/Makefile b/buildtools/freebsd-skeleton/rpki-ca/Makefile index 6cf890d6..00bc344b 100644 --- a/buildtools/freebsd-skeleton/rpki-ca/Makefile +++ b/buildtools/freebsd-skeleton/rpki-ca/Makefile @@ -20,15 +20,16 @@ USE_RC_SUBR= rpki-ca MAKE_JOBS_UNSAFE= yes NO_STAGE = yes +# We depend on our own relying party code +BUILD_DEPENDS+= rpki-rp>0:${PORTSDIR}/net/rpki-rp +RUN_DEPENDS+= rpki-rp>0:${PORTSDIR}/net/rpki-rp + # For OpenSSL, not needed otherwise USE_PERL5_BUILD=yes # For building OpenSSL, not needed otherwise BUILD_DEPENDS+= makedepend>0:${PORTSDIR}/devel/makedepend -# Needed at build to keep ./configure from complaining. -BUILD_DEPENDS+= rsync>0:${PORTSDIR}/net/rsync - RPKID_DEPENDS= ${PYTHON_PKGNAMEPREFIX}lxml>0:${PORTSDIR}/devel/py-lxml \ ${PYTHON_PKGNAMEPREFIX}MySQLdb>0:${PORTSDIR}/databases/py-MySQLdb \ ${PYTHON_PKGNAMEPREFIX}django>=1.3.7:${PORTSDIR}/www/py-django \ |