Edit

IABSD.fr/ports/plan9/drawterm/Makefile

Branch :

  • Show log

    Commit

  • Author : abieber
    Date : 2020-05-23 15:34:57
    Hash : bca687bc
    Message : Update drawterm to 8fd96772eb02 no objections - sl

  • plan9/drawterm/Makefile
  • # $OpenBSD: Makefile,v 1.16 2020/05/23 15:34:57 abieber Exp $
    
    ONLY_FOR_ARCHS=	i386 amd64 powerpc sparc64 mips64 mips64el arm
    
    COMMENT=	Plan9 terminal emulator
    
    V=		8fd96772eb02
    DISTNAME=	drawterm-20200427
    DISTFILES=	${DISTNAME}${EXTRACT_SUFX}{${V}${EXTRACT_SUFX}}
    WRKDIST=	${WRKDIR}/drawterm-${V}
    EXTRACT_SUFX=	.tar.gz
    
    CATEGORIES=	plan9
    
    HOMEPAGE=	http://drawterm.9front.org/
    
    MASTER_SITES=	https://code.9front.org/hg/drawterm/archive/
    
    MAINTAINER=	Stanley Lieber <sl@stanleylieber.com>
    
    # Lucent Public License Version 1.02
    PERMIT_PACKAGE=	Yes
    
    WANTLIB=	X11 c pthread sndio
    
    NO_TEST=	Yes
    MAKE_FLAGS=	CC="${CC}" \
    		CONF=openbsd \
    		PORTS_CFLAGS="${CFLAGS}" \
    		PORTS_LDFLAGS="${LDFLAGS}"
    
    # Uses deprecated Darwin assembly syntax that clang's assembler does not support
    .if ${MACHINE_ARCH:Mpowerpc}
    CFLAGS +=	-fno-integrated-as
    .endif
    
    do-install:
    	${INSTALL_PROGRAM} ${WRKDIST}/drawterm ${PREFIX}/bin
    	${INSTALL_DATA} ${WRKDIST}/drawterm.1 ${PREFIX}/man/man1
    
    .include <bsd.port.mk>