View | Details | Raw Unified | Return to bug 174782
Collapse All | Expand All

(-)clucene/Makefile (-8 / +11 lines)
Lines 1-9 Link Here
1
# New ports collection makefile for:	clucene
1
# Created by: Cheng-Lung Sung <clsung@FreeBSD.org>
2
# Date created:		2006-08-09
3
# Whom:			Cheng-Lung Sung <clsung@FreeBSD.org>
4
#
5
# $FreeBSD: ports/textproc/clucene/Makefile,v 1.13 2012/11/17 06:01:53 svnexp Exp $
2
# $FreeBSD: ports/textproc/clucene/Makefile,v 1.13 2012/11/17 06:01:53 svnexp Exp $
6
#
7
3
8
PORTNAME=	clucene
4
PORTNAME=	clucene
9
PORTVERSION=	0.9.21
5
PORTVERSION=	0.9.21
Lines 14-28 Link Here
14
MAINTAINER=	clsung@FreeBSD.org
10
MAINTAINER=	clsung@FreeBSD.org
15
COMMENT=	CLucene is a C++ port of Lucene
11
COMMENT=	CLucene is a C++ port of Lucene
16
12
13
LICENSE=	AL2
14
15
CONFLICTS=	clucene2-[0-9]*
16
17
GNU_CONFIGURE=	yes
17
GNU_CONFIGURE=	yes
18
USE_BZIP2=	yes
18
USE_BZIP2=	yes
19
USE_LDCONFIG=	yes
19
USE_LDCONFIG=	yes
20
USE_AUTOTOOLS=	libtool
20
USE_AUTOTOOLS=	libtool
21
21
22
.include <bsd.port.pre.mk>
22
OPTIONS_DEFINE=	ASCII_SUPPORT
23
ASCII_SUPPORT_DESC=	Enable ascii support
24
25
.include <bsd.port.options.mk>
23
26
24
.if defined(WITH_ASCII_SUPPORT)
27
.if ${PORT_OPTIONS:MASCII_SUPPORT}
25
CONFIGURE_ARGS+=	--enable-ascii
28
CONFIGURE_ARGS+=	--enable-ascii
26
.endif
29
.endif
27
30
28
.include <bsd.port.post.mk>
31
.include <bsd.port.mk>
(-)clucene-contrib/Makefile (-9 / +12 lines)
Lines 1-9 Link Here
1
# New ports collection makefile for:	clucene-contrib
1
# Created by: Tom Judge <tom@tomjudge.com>
2
# Date created:				2010-10-4
3
# Whom:					Tom Judge <tom@tomjudge.com>
4
#
5
# $FreeBSD: ports/textproc/clucene-contrib/Makefile,v 1.5 2012/11/17 06:01:53 svnexp Exp $
2
# $FreeBSD: ports/textproc/clucene-contrib/Makefile,v 1.5 2012/11/17 06:01:53 svnexp Exp $
6
#
7
3
8
PORTNAME=	clucene-contrib
4
PORTNAME=	clucene-contrib
9
PORTVERSION=	0.9.16a
5
PORTVERSION=	0.9.16a
Lines 13-31 Link Here
13
MAINTAINER=	tj@FreeBSD.org
9
MAINTAINER=	tj@FreeBSD.org
14
COMMENT=	CLucene Contrib Code and Tools
10
COMMENT=	CLucene Contrib Code and Tools
15
11
16
LIB_DEPENDS=	clucene.0:${PORTSDIR}/textproc/clucene
12
LICENSE=	AL2
13
14
LIB_DEPENDS=	clucene:${PORTSDIR}/textproc/clucene
17
BUILD_DEPENDS=	${LOCALBASE}/include/iconv.h:${PORTSDIR}/converters/libiconv
15
BUILD_DEPENDS=	${LOCALBASE}/include/iconv.h:${PORTSDIR}/converters/libiconv
18
16
17
CONFLICTS=	clucene2-[0-9]*
18
19
GNU_CONFIGURE=	yes
19
GNU_CONFIGURE=	yes
20
USE_BZIP2=	yes
20
USE_BZIP2=	yes
21
USE_LDCONFIG=	yes
21
USE_LDCONFIG=	yes
22
USE_AUTOTOOLS=	libtool
22
USE_AUTOTOOLS=	libtool
23
USE_DOS2UNIX=	yes
23
USE_DOS2UNIX=	yes
24
24
25
.include <bsd.port.pre.mk>
25
OPTIONS_DEFINE=	ASCII_SUPPORT
26
ASCII_SUPPORT_DESC=	Enable ascii support
27
28
.include <bsd.port.options.mk>
26
29
27
.if defined(WITH_ASCII_SUPPORT)
30
.if ${PORT_OPTIONS:MASCII_SUPPORT}
28
CONFIGURE_ARGS+=	--enable-ascii
31
CONFIGURE_ARGS+=	--enable-ascii
29
.endif
32
.endif
30
33
31
.include <bsd.port.post.mk>
34
.include <bsd.port.mk>

Return to bug 174782