mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-04 01:48:54 +00:00
61b6613393
ONLY_FOR_ARCHS_REASON is used as part of the sentence and thus should start with lower-case letter and not end with a period which is added by the framework, similar to other knobs like BROKEN, IGNORE, et al. While here, remove needless quoting, add missing Oxford comma, expand contractions and jargonisms, use correct spelling for proper names.
48 lines
1.1 KiB
Makefile
48 lines
1.1 KiB
Makefile
# Created by: shurd
|
|
|
|
PORTNAME= syncterm
|
|
PORTVERSION= 1.0
|
|
CATEGORIES= comms
|
|
MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION}
|
|
|
|
MAINTAINER= ports@FreeBSD.org
|
|
COMMENT= ANSI-BBS terminal which supports telnet, rlogin, and SSH
|
|
|
|
LICENSE= GPLv2
|
|
|
|
BUILD_DEPENDS= as:devel/binutils
|
|
|
|
WRKSRC= ${WRKDIR}/syncterm-${PORTVERSION}/src/syncterm
|
|
USES= gmake perl5 tar:tgz
|
|
USE_PERL5= build
|
|
MAKEFILE= GNUmakefile
|
|
PLIST_FILES= bin/syncterm \
|
|
man/man1/syncterm.1.gz \
|
|
share/applications/syncterm.desktop \
|
|
share/icons/hicolor/64x64/apps/syncterm.png
|
|
|
|
NO_CCACHE= yes
|
|
MAKE_JOBS_UNSAFE= yes
|
|
MAKE_ARGS+= WITHOUT_PORTAUDIO=yes
|
|
MAKE_ARGS+= -C ${WRKSRC}
|
|
MAKE_ARGS+= PREFIX="${PREFIX}"
|
|
MAKE_ARGS+= INSTALL_EXE="${INSTALL_PROGRAM}"
|
|
MAKE_ARGS+= RELEASE=1
|
|
|
|
OPTIONS_DEFINE= X11 SDL
|
|
OPTIONS_DEFAULT= X11 SDL
|
|
|
|
X11_USES= xorg
|
|
X11_USE= xorg=x11
|
|
X11_MAKE_ARGS_OFF= NO_X=1
|
|
|
|
SDL_USES= sdl
|
|
SDL_USE= SDL=sdl
|
|
SDL_MAKE_ARGS= USE_SDL=1
|
|
SDL_MAKE_ARGS_OFF= WITHOUT_SDL=1
|
|
|
|
ONLY_FOR_ARCHS= i386 amd64 powerpc powerpc64 powerpc64le
|
|
ONLY_FOR_ARCHS_REASON= does not configure except on i386, amd64, and powerpc*
|
|
|
|
.include <bsd.port.mk>
|