freebsd-ports/x11-toolkits/p5-Prima/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

62 lines
1.7 KiB
Makefile

PORTNAME= Prima
PORTVERSION= 1.66
CATEGORIES= x11-toolkits graphics perl5
MASTER_SITES= CPAN
PKGNAMEPREFIX= p5-
MAINTAINER= perl@FreeBSD.org
COMMENT= Extensible Perl toolkit for multi-platform GUI development
WWW= https://metacpan.org/release/Prima
LICENSE= BSD2CLAUSE
LICENSE_FILE= ${WRKSRC}/LICENSE
LIB_DEPENDS= libgif.so:graphics/giflib \
libpng.so:graphics/png \
libfreetype.so:print/freetype2 \
libfontconfig.so:x11-fonts/fontconfig \
libtiff.so:graphics/tiff \
libwebp.so:graphics/webp
USES= dos2unix jpeg perl5 pkgconfig xorg
USE_PERL5= configure
USE_XORG= x11 xcursor xext xpm xrender xrandr
MAKE_JOBS_UNSAFE= yes
OPTIONS_DEFINE= FRIBIDI GTK2 GTK3 HARFBUZZ ICONV THAI XFT
OPTIONS_DEFAULT=ICONV XFT
FRIBIDI_DESC= Bidirectional text support
HARFBUZZ_DESC= Harfbuzz support
THAI_DESC= Thai support
FRIBIDI_CONFIGURE_OFF= WITH_FRIBIDI=0
FRIBIDI_CONFIGURE_ON= WITH_FRIBIDI=1
FRIBIDI_LIB_DEPENDS= libfribidi.so:converters/fribidi
GTK2_CONFIGURE_OFF= WITH_GTK2=0
GTK2_CONFIGURE_ON= WITH_GTK2=1
GTK2_USE= GNOME=gtk20
GTK2_USES= gnome
GTK3_CONFIGURE_OFF= WITH_GTK3=0
GTK3_CONFIGURE_ON= WITH_GTK3=1
GTK3_USE= GNOME=gtk30
GTK3_USES= gnome
HARFBUZZ_CONFIGURE_OFF= WITH_HARFBUZZ=0
HARFBUZZ_CONFIGURE_ON= WITH_HARFBUZZ=1
HARFBUZZ_LIB_DEPENDS= libharfbuzz.so:print/harfbuzz
ICONV_CONFIGURE_OFF= WITH_ICONV=0
ICONV_CONFIGURE_ON= WITH_ICONV=1
ICONV_USES= iconv
THAI_CONFIGURE_OFF= WITH_THAI=0
THAI_CONFIGURE_ON= WITH_THAI=1
THAI_LIB_DEPENDS= libthai.so.0:devel/libthai
XFT_CONFIGURE_OFF= WITH_XFT=0
XFT_CONFIGURE_ON= WITH_XFT=1
XFT_USE= XORG=xft
post-install:
${STRIP_CMD} ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/auto/Prima/Prima.so
@${REINPLACE_CMD} -e 's|${STAGEDIR}||' ${STAGEDIR}${PREFIX}/${SITE_ARCH_REL}/Prima/Config.pm
.include <bsd.port.mk>