blob: 2b5f0b0489410c1d91e24c4d7306725fb6871e0c (
plain) (
blame)
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
40
41
42
43
44
|
# ex:ts=8
# Ports collection makefile for: serveez
# Date created: May 16, 2002
# Whom: ijliao
#
# $FreeBSD$
#
PORTNAME= serveez
PORTVERSION= 0.1.4
PORTREVISOIN= 0
CATEGORIES= net devel
MASTER_SITES= ${MASTER_SITE_GNU} \
http://www.textsure.net/~ela/download/
MASTER_SITE_SUBDIR= ${PORTNAME}
MAINTAINER= ports@FreeBSD.org
COMMENT= A server framework
LIB_DEPENDS= guile.15:${PORTSDIR}/lang/guile
.if !exists(/usr/bin/bzip2)
LIB_DEPENDS+= bz2.1:${PORTSDIR}/archivers/bzip2
.endif
GUILE_CONFIG?= ${LOCALBASE}/bin/guile-config
USE_GMAKE= yes
USE_LIBTOOL= yes
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
INSTALLS_SHLIB= yes
MAN1= serveez.1
CPPFLAGS= `${GUILE_CONFIG} compile`
LDFLAGS= `${GUILE_CONFIG} link`
.if !exists(/usr/include/getopt.h)
LIB_DEPENDS+= gnugetopt.1:${PORTSDIR}/devel/libgnugetopt
CPPFLAGS+= -I${LOCALBASE}/include
LDFLAGS+= -L${LOCALBASE}/lib -lgnugetopt
.endif
.include <bsd.port.mk>
|