forked from Lainports/freebsd-ports
defined via Mk/bsd.default-versions.mk which has moved from GCC 7.4 t GCC 8.2 under most circumstances. 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, as a double check, everything INDEX-11 showed depending on lang/gcc7. PR: 231590
39 lines
890 B
Makefile
39 lines
890 B
Makefile
# Created by: Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= gexiv2
|
|
PORTVERSION= 0.10.9
|
|
PORTREVISION= 1
|
|
CATEGORIES= graphics
|
|
MASTER_SITES= GNOME
|
|
|
|
MAINTAINER= cmt@FreeBSD.org
|
|
COMMENT= GObject-based wrapper around Exiv2 library
|
|
|
|
LICENSE= GPLv2
|
|
LICENSE_FILE= ${WRKSRC}/COPYING
|
|
|
|
BUILD_DEPENDS= gm4:devel/m4 \
|
|
vala>=0:lang/vala
|
|
LIB_DEPENDS= libexiv2.so:graphics/exiv2
|
|
|
|
USES= compiler:c++11-lang gnome libtool:build meson pathfix \
|
|
pkgconfig tar:xz
|
|
USE_GNOME= glib20 introspection:build
|
|
USE_LDCONFIG= yes
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
OPTIONS_SUB= yes
|
|
DOCS_BUILD_DEPENDS= gtkdoc-scan:textproc/gtk-doc
|
|
DOCS_CONFIGURE_ON= -Denable-gtk-doc=true
|
|
|
|
.include <bsd.port.options.mk>
|
|
|
|
pre-install:
|
|
@${MKDIR} ${STAGEDIR}${PREFIX}/share/vala/vapi
|
|
|
|
post-install:
|
|
${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libgexiv2.so
|
|
${RM} -r ${STAGEDIR}${PREFIX}/lib/python*
|
|
|
|
.include <bsd.port.mk>
|