mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-25 09:34:11 +00:00
ea8c8ec7da
as defined in Mk/bsd.default-versions.mk which has moved from GCC 8.3 to GCC 9.1 under most circumstances now after revision 507371. This includes ports - with USE_GCC=yes or USE_GCC=any, - with USES=fortran, - using Mk/bsd.octave.mk which in turn features USES=fortran, and - with USES=compiler specifying openmp, nestedfct, c11, c++0x, c++11-lang, c++11-lib, c++14-lang, c++17-lang, or gcc-c++11-lib plus, everything INDEX-11 shows with a dependency on lang/gcc9 now. PR: 238330
52 lines
1.3 KiB
Makefile
52 lines
1.3 KiB
Makefile
# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= yelp
|
|
PORTVERSION= 3.28.1
|
|
PORTREVISION= 2
|
|
CATEGORIES= x11 gnome
|
|
MASTER_SITES= GNOME
|
|
DIST_SUBDIR= gnome3
|
|
|
|
MAINTAINER= gnome@FreeBSD.org
|
|
COMMENT= Help browser for the GNOME 3 desktop
|
|
|
|
LICENSE= GPLv2+
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= yelp-xsl>=0:textproc/yelp-xsl \
|
|
itstool:textproc/itstool
|
|
LIB_DEPENDS= libwebkit2gtk-4.0.so:www/webkit2-gtk3 \
|
|
libgcrypt.so:security/libgcrypt \
|
|
libgpg-error.so:security/libgpg-error \
|
|
libsoup-2.4.so:devel/libsoup
|
|
RUN_DEPENDS= yelp-xsl>=0:textproc/yelp-xsl
|
|
|
|
PORTSCOUT= limitw:1,even
|
|
|
|
USES= compiler:c11 desktop-file-utils gettext gmake gnome \
|
|
libtool pathfix pkgconfig sqlite tar:xz
|
|
USE_XORG= x11 ice
|
|
USE_GNOME= cairo gtk30 intlhack libxml2 libxslt
|
|
GNU_CONFIGURE= yes
|
|
INSTALLS_ICONS= yes
|
|
USE_LDCONFIG= yes
|
|
GLIB_SCHEMAS= org.gnome.yelp.gschema.xml
|
|
INSTALL_TARGET= install-strip
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
.if !exists(/usr/libdata/pkgconfig/liblzma.pc)
|
|
CONFIGURE_ENV+= YELP_LZMA_CFLAGS="-I/usr/include" \
|
|
YELP_LZMA_LIBS="-L/usr/lib -llzma"
|
|
.endif
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e 's|%%LIBEXECDIR%%|${PREFIX}/libexec|g' \
|
|
${WRKSRC}/libyelp/yelp-man-parser.c
|
|
|
|
post-install:
|
|
${INSTALL_SCRIPT} ${FILESDIR}/yelp-groff ${STAGEDIR}${PREFIX}/libexec
|
|
|
|
.include <bsd.port.mk>
|