mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-14 03:10:47 +00:00
3f651573ad
Begin autotools sanitization sequence by requiring ports to explicitly specify which version of {libtool,autoconf,automake} they need, erasing the concept of a "system default". For ports-in-waiting: USE_LIBTOOL=YES -> USE_LIBTOOL_VER=13 USE_AUTOCONF=YES -> USE_AUTOCONF_VER=213 USE_AUTOMAKE=YES -> USE_AUTOMAKE_VER=14 Ports attempting to use the old style system after June 1st 2004 will be sorely disappointed.
41 lines
927 B
Makefile
41 lines
927 B
Makefile
# ex:ts=8
|
|
# Ports collection makefile for: serveez
|
|
# Date created: May 16, 2002
|
|
# Whom: ijliao
|
|
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
PORTNAME= serveez
|
|
PORTVERSION= 0.1.5
|
|
PORTREVISION= 1
|
|
CATEGORIES= net devel
|
|
MASTER_SITES= ftp://gatekeeper.dec.com/pub/GNU/serveez/ \
|
|
http://www.textsure.net/~ela/download/
|
|
|
|
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_GETOPT_LONG= yes
|
|
USE_GMAKE= yes
|
|
USE_LIBTOOL_VER=13
|
|
LIBTOOLFLAGS= --disable-ltlibs --release-ignore
|
|
CONFIGURE_TARGET= --build=${MACHINE_ARCH}-portbld-freebsd${OSREL}
|
|
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS}" LDFLAGS="${LDFLAGS}"
|
|
INSTALLS_SHLIB= yes
|
|
|
|
MAN1= serveez.1 serveez-config.1
|
|
INFO= serveez serveez-api
|
|
|
|
CPPFLAGS= `${GUILE_CONFIG} compile`
|
|
LDFLAGS= `${GUILE_CONFIG} link`
|
|
|
|
.include <bsd.port.mk>
|