freebsd-ports/science/dlib-cpp/Makefile
Stefan Eßer b7f05445c0 Add WWW entries to port Makefiles
It has been common practice to have one or more URLs at the end of the
ports' pkg-descr files, one per line and prefixed with "WWW:". These
URLs should point at a project website or other relevant resources.

Access to these URLs required processing of the pkg-descr files, and
they have often become stale over time. If more than one such URL was
present in a pkg-descr file, only the first one was tarnsfered into
the port INDEX, but for many ports only the last line did contain the
port specific URL to further information.

There have been several proposals to make a project URL available as
a macro in the ports' Makefiles, over time.

This commit implements such a proposal and moves one of the WWW: entries
of each pkg-descr file into the respective port's Makefile. A heuristic
attempts to identify the most relevant URL in case there is more than
one WWW: entry in some pkg-descr file. URLs that are not moved into the
Makefile are prefixed with "See also:" instead of "WWW:" in the pkg-descr
files in order to preserve them.

There are 1256 ports that had no WWW: entries in pkg-descr files. These
ports will not be touched in this commit.

The portlint port has been adjusted to expect a WWW entry in each port
Makefile, and to flag any remaining "WWW:" lines in pkg-descr files as
deprecated.

Approved by:		portmgr (tcberner)
2022-09-07 23:10:59 +02:00

52 lines
1.3 KiB
Makefile

PORTNAME= dlib
DISTVERSION= 19.24
CATEGORIES= science devel math
MASTER_SITES= http://dlib.net/files/
PKGNAMESUFFIX= -cpp
MAINTAINER= arrowd@FreeBSD.org
COMMENT= Machine learning framework written in C++
WWW= http://dlib.net
LICENSE= BSL
LICENSE_FILE= ${WRKSRC}/dlib/LICENSE.txt
USES= cmake compiler:c++11-lang pkgconfig tar:bzip2
USE_LDCONFIG= yes
CMAKE_ON= BUILD_SHARED_LIBS
OPTIONS_DEFINE= X11 JPEG PNG GIF SQLITE BLASLAPACK PYTHON AVX
OPTIONS_DEFAULT= X11 JPEG PNG GIF SQLITE
BLASLAPACK_DESC= Use Blas and Lapack libraries from ports
AVX_DESC= Use AVX instructions if supported by CPU
PYTHON_DESC= Add dependency on science/py-dlib
X11_USES= xorg
X11_USE= xorg=ice,sm,x11,xext
X11_CMAKE_OFF= -DDLIB_NO_GUI_SUPPORT=1
JPEG_USES= jpeg
JPEG_CMAKE_BOOL= DLIB_JPEG_SUPPORT
PNG_LIB_DEPENDS= libpng.so:graphics/png
PNG_CMAKE_BOOL= DLIB_PNG_SUPPORT
GIF_LIB_DEPENDS= libgif.so:graphics/giflib
GIF_CMAKE_BOOL= DLIB_GIF_SUPPORT
SQLITE_USES= sqlite
SQLITE_CMAKE_BOOL= DLIB_LINK_WITH_SQLITE3
BLASLAPACK_USES= blaslapack:openblas
BLASLAPACK_CMAKE_OFF= -DDLIB_USE_BLAS=0 -DDLIB_USE_LAPACK=0 -DDLIB_USE_MKL_FFT=0
# for PYTHON_PKGNAMEPREFIX
PYTHON_USES= python
PYTHON_RUN_DEPENDS= ${PYTHON_PKGNAMEPREFIX}dlib>=0:science/py-dlib@${PY_FLAVOR}
PYTHON_NO_DEPENDS= yes
AVX_CMAKE_BOOL= USE_AVX_INSTRUCTIONS
.include <bsd.port.mk>