mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-21 04:06:46 +00:00
7990f81066
After a discussion on the mailing list on moving manpages to ${PREFIX}/share/man for consistency with base where it is installed in usr/share/man, it appeared the same should happen to GNU info files which were installed under share in base and not in ports. Now texinfo is not in base on any of the supported version of FreeBSD it is possible to proceed to this move and it is easier to do than the manpage change. Other benefit than consistency are less patching: all build tools but cmake are expecting info files to be under share/info and cmake (patched here) was having an exception for BSD so the patch makes FreeBSD case less specific for them Bump revision of all impacted ports PR: 232907 exp-run by: antoine Differential Revision: https://reviews.freebsd.org/D17816
39 lines
977 B
Makefile
39 lines
977 B
Makefile
# Created by: Greg Lewis <glewis@FreeBSD.org>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= udunits
|
|
PORTVERSION= 2.2.26
|
|
PORTREVISION= 2
|
|
CATEGORIES= science math
|
|
MASTER_SITES= ftp://ftp.unidata.ucar.edu/pub/udunits/ \
|
|
LOCAL/sunpoet
|
|
|
|
MAINTAINER= sunpoet@FreeBSD.org
|
|
COMMENT= Library for manipulating units of physical quantities
|
|
|
|
LICENSE= UCAR_UNIDATA
|
|
LICENSE_FILE= ${WRKSRC}/COPYRIGHT
|
|
LICENSE_NAME= University Corporation for Atmospheric Research/Unidata
|
|
LICENSE_PERMS= dist-mirror dist-sell pkg-mirror pkg-sell auto-accept
|
|
|
|
LIB_DEPENDS= libexpat.so:textproc/expat2
|
|
|
|
OPTIONS_DEFINE= DOCS
|
|
|
|
CONFIGURE_ENV= ac_cv_header_CUnit_CUnit_h=no
|
|
GNU_CONFIGURE= yes
|
|
INSTALL_TARGET= install-strip
|
|
TEST_TARGET= check
|
|
USE_LDCONFIG= yes
|
|
USES= libtool localbase
|
|
|
|
INFO= udunits2 udunits2lib udunits2prog
|
|
|
|
post-patch:
|
|
@${REINPLACE_CMD} -e '/install-data-hook$$/d' ${WRKSRC}/lib/Makefile.in
|
|
|
|
post-patch-DOCS-on:
|
|
@${REINPLACE_CMD} -e '/^dist_doc_DATA = / s| COPYRIGHT||' ${WRKSRC}/Makefile.in
|
|
|
|
.include <bsd.port.mk>
|