1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-13 03:03:15 +00:00
freebsd-ports/graphics/aalib/Makefile
Baptiste Daroussin 7990f81066 Install texinfo files (GNU info) into ${PREFIX}/share/info
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
2018-11-10 18:12:57 +00:00

53 lines
1.2 KiB
Makefile

# Created by: Andrey Zakhvatov
# $FreeBSD$
PORTNAME= aalib
DISTVERSION= 1.4rc5
PORTREVISION= 13
CATEGORIES= graphics
MASTER_SITES= SF/aa-project/aa-lib/1.4rc5
MAINTAINER= ports@FreeBSD.org
COMMENT= ASCII art library
LICENSE= LGPL20+
LICENSE_FILE= ${WRKSRC}/COPYING
USES= libtool localbase makeinfo
WRKSRC= ${WRKDIR}/${PORTNAME}-1.4.0
GNU_CONFIGURE= yes
USE_LDCONFIG= yes
INFO= aalib
OPTIONS_MULTI= DRIVERS
OPTIONS_MULTI_DRIVERS= X11 NCURSES SLANG
OPTIONS_DEFAULT= NCURSES
DRIVERS_DESC= Drives selection
X11_USE= XORG=x11
X11_CONFIGURE_WITH= x11-driver=yes
NCURSES_USES= ncurses
NCURSES_CONFIGURE_WITH= curses-driver=yes
SLANG_LIB_DEPENDS= libslang.so:devel/libslang2
SLANG_CONFIGURE_WITH= slang-driver=yes
post-extract:
@${RM} ${WRKSRC}/doc/aalib.info*
post-patch:
@${RM} ${WRKSRC}/config.cache
@${REINPLACE_CMD} -e 's|/usr/local|${LOCALBASE}|g; \
s|MAKEINFO=makeinfo|MAKEINFO="${MAKEINFO} --no-split"|g' \
${WRKSRC}/configure
@${REINPLACE_CMD} \
-e 's|AC_DEFUN(AM_PATH_AALIB|AC_DEFUN([AM_PATH_AALIB]|g' \
${WRKSRC}/aalib.m4
@${FIND} ${WRKSRC} \( -name '*.[ch]' \! -name acconfig.h \) \
| ${XARGS} ${REINPLACE_CMD} -e 's|<malloc.h>|<stdlib.h>|g'
post-install:
@${STRIP_CMD} ${STAGEDIR}${PREFIX}/lib/libaa.so
.include <bsd.port.mk>