freebsd-ports/graphics/svgalib/Makefile
Niclas Zeising 07d27c9c2d Add patches to fix build with clang by replacing some inline assembly with
optimal code, and removing some unneded casts.

Submitted by:	dim
Approved by:	kwm, miwi (mentors, implicit)
2013-01-30 16:21:26 +00:00

52 lines
1.2 KiB
Makefile

# Created by: Maxim Sobolev <sobomax@FreeBSD.org>
# $FreeBSD$
PORTNAME= svgalib
PORTVERSION= 1.4.3
PORTREVISION= 6
CATEGORIES= graphics devel
MASTER_SITES= http://www.svgalib.org/
MAINTAINER= zeising@FreeBSD.org
COMMENT= A low level console graphics library
ONLY_FOR_ARCHS= i386 amd64
MAKE_JOBS_SAFE= yes
USE_DOS2UNIX= utils/gtf/gtf.h utils/gtf/scitech.h
USE_GMAKE= yes
USE_LDCONFIG= yes
MANCOMPRESSED= yes
ALL_TARGET= shared static
.include <bsd.port.pre.mk>
.if ${ARCH} != "i386"
MAKE_ENV= NO_ASM=y
.endif
.for i in 1 2 3 4 5 6 7 8 9
.if exists(${FILESDIR}/man${i})
MAN${i}!= ${CAT} ${FILESDIR}/man${i}
.endif
.endfor
post-patch: .SILENT
${MKDIR} ${WRKSRC}/include/linux
# Fix for GCC 4.1
${REINPLACE_CMD} -e '30d' ${WRKSRC}/src/vgabg.h
${REINPLACE_CMD} -e 's,^ (unsigned [[:alpha:]]*),,' \
${WRKSRC}/src/apm.c
# 024_vesa_not_print_crap.patch from Debian
${REINPLACE_CMD} -e '/^printf/d' ${WRKSRC}/src/vesa.c
# Clean up after typo fixes in manpages
${FIND} ${WRKSRC}/doc -type f -name '*.[57].orig' -delete
post-install:
@${MKDIR} ${PREFIX}/include/linux
cd ${WRKSRC}/include/linux && \
${INSTALL_DATA} keyboard.h kd.h ${PREFIX}/include/linux
.include <bsd.port.post.mk>