7b27be9500
- add build dependencies on bison and flex while here: - trim Makefile header - remove redundant tabs in Makefile - use SF shortcut in MASTER_SITES - remove indefinite article from COMMENT - remove exclicit dependency on qmake, since it is already defined in USE_QT4 - change BUILD_DEPENDS usage to more common - remove trailing whitespace in pkg-descr PR: 172583 Submitted by: Fernando <fernando.apesteguia at gmail dot com> (maintainer) Feature safe: yes
31 lines
780 B
Makefile
31 lines
780 B
Makefile
# Created by: Fernando Apesteguia <fernando.apesteguia@gmail.com>
|
|
# $FreeBSD$
|
|
|
|
PORTNAME= basic256
|
|
PORTVERSION= 0.9.9.1
|
|
CATEGORIES= lang
|
|
MASTER_SITES= SF
|
|
MASTER_SITE_SUBDIR= kidbasic/${PORTNAME}
|
|
DISTNAME= ${PORTNAME}_${PORTVERSION}
|
|
EXTRACT_SUFX= .tgz
|
|
|
|
MAINTAINER= fernando.apesteguia@gmail.com
|
|
COMMENT= Easy to use BASIC language and IDE for education
|
|
|
|
BUILD_DEPENDS= espeak:${PORTSDIR}/audio/espeak \
|
|
sqlite3:${PORTSDIR}/databases/sqlite3 \
|
|
flex:${PORTSDIR}/textproc/flex
|
|
|
|
WRKSRC= ${WRKDIR}
|
|
|
|
USE_BISON= build
|
|
USE_SDL= sdl mixer
|
|
USE_QT4= corelib gui network xml webkit moc_build qmake_build rcc_build uic_build
|
|
USE_DOS2UNIX= yes
|
|
HAS_CONFIGURE= yes
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${SETENV} ${CONFIGURE_ENV} \
|
|
${QMAKE} "PREFIX=${PREFIX}" BASIC256.pro
|
|
|
|
.include <bsd.port.mk>
|