mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-11 02:50:24 +00:00
123036d789
Update to 2005.03 release. Switch MATERSITES to the official one sourceforge. Change log: - XML syntax highlighting - spelling suggestions (excellent for converting from texts w/o Romanian language specific letters) - check word on dexonline.ro - bookmarks - 30,000 new words - small fix for status window PR: ports/90301 Submitted by: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
43 lines
1.2 KiB
Makefile
43 lines
1.2 KiB
Makefile
# New ports collection makefile for: rospell
|
|
# Date created: 2005-11-04
|
|
# Whom: Ion-Mihai "IOnut" Tetcu <itetcu@people.tecnik93.com>
|
|
#
|
|
# $FreeBSD$
|
|
# $Id: Makefile,v 1.1 2005/11/20 18:17:56 itetcu Rel $
|
|
# $Tecnik: ports/editors/rospell/Makefile,v 1.2 2005/12/12 19:00:23 itetcu Exp $
|
|
|
|
PORTNAME= rospell
|
|
PORTVERSION= 2005.03
|
|
CATEGORIES= editors textproc # this should/will be romanian ;)
|
|
MASTER_SITES= ${MASTER_SITE_SOURCEFORGE}
|
|
MASTER_SITE_SUBDIR= ${PORTNAME}
|
|
|
|
MAINTAINER= itetcu@people.tecnik93.com
|
|
COMMENT= QT-based editor with support for romanian charsets and spell checking
|
|
|
|
USE_XLIB= yes
|
|
USE_QT_VER= 3
|
|
MAKE_ENV+= PTHREAD_CFLAGS=${PTHREAD_CFLAGS} PTHREAD_LIBS=${PTHREAD_LIBS}
|
|
CONFIGURE_ENV= QTDIR=${X11BASE} LDFLAGS="${LDFLAGS} ${PTHREAD_LIBS}"
|
|
|
|
MAKEFILE= BSDmakefile
|
|
|
|
MAN1= rospell.1
|
|
|
|
.include <bsd.port.pre.mk>
|
|
|
|
.if ${OSVERSION} < 500000
|
|
IGNORE= doesn't compile properly on 4.x systems
|
|
.endif
|
|
|
|
do-configure:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} -f ${MAKEFILE} dictfiles.h
|
|
|
|
do-build:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} -f ${MAKEFILE} ${ALL_TARGET}
|
|
|
|
do-install:
|
|
@cd ${WRKSRC} && ${SETENV} ${MAKE_ENV} ${MAKE} -f ${MAKEFILE} ${INSTALL_TARGET}
|
|
|
|
.include <bsd.port.post.mk>
|