blob: 2c02ded017bb0938d33b4a78c684f225cc1d9ad4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
# New ports collection makefile for: dtse
# Date created: 7 Mar 2004
# Whom: Douglas Thrift <douglas@douglasthrift.net>
#
# $FreeBSD$
#
PORTNAME= dtse
PORTVERSION= 1.2
CATEGORIES= www perl5
MASTER_SITES= http://computers.douglasthrift.net/searchengine/download/
DISTNAME= ${PORTNAME}-${PORTVERSION}-src
MAINTAINER= douglas@douglasthrift.net
COMMENT= An indexing search engine for use on small websites
.if defined(WITH_OPENSSL)
USE_OPENSSL= yes
CONFIGURE_ARGS+= --with-openssl=${OPENSSLBASE}
.endif
USE_PERL5= yes
USE_BZIP2= yes
USE_GMAKE= yes
HAS_CONFIGURE= yes
CONFIGURE_ARGS+= --prefix=${PREFIX}/${PORTNAME}
MAKEFILE= GNUmakefile
WRKSRC= ${WRKDIR}/${PORTNAME}-${PORTVERSION}
.include <bsd.port.pre.mk>
.if ${OSVERSION} < 500000
USE_GCC= 3.3
.endif
.include <bsd.port.post.mk>
|