Hi, I have a source tarball and I want to make a package from it. As it written I moved it in /usr/ports/distfiles and then I had the Makefile for FreeBSD port and then the standard procedure as;
and I had the package.
in the Makefile I have a dependency boost as
When I make install, it automatically fetched and installed boost. And then I maked the package.
But when I install the package on another machine, it installs everything fine but it does not install the dependency?
The problem is when I installed is with make install it installs the dependency but when I install it as package it doesn't install it. What is the problem?
Code:
make install
make package
in the Makefile I have a dependency boost as
Code:
BUILD_DEPENDS= bjam:${PORTSDIR}/devel/boost-jam \
${LOCALBASE}/include/boost/shared_ptr.hpp:${PORTSDIR}/devel/boost-libs
But when I install the package on another machine, it installs everything fine but it does not install the dependency?
The problem is when I installed is with make install it installs the dependency but when I install it as package it doesn't install it. What is the problem?