freebsd-ports/security/bjorb/Makefile
Ade Lovett 54a0b86543 Mass-conversion to the USE_AUTOTOOLS New World Order. The code present
in bsd.autotools.mk essentially makes this a no-op given that all the
old variables set a USE_AUTOTOOLS_COMPAT variable, which is parsed in
exactly the same way as USE_AUTOTOOLS itself.

Moreover, USE_AUTOTOOLS has already been extensively tested by the GNOME
team -- all GNOME 2.12.x ports use it.

Preliminary documentation can be found at:
	http://people.FreeBSD.org/~ade/autotools.txt

which is in the process of being SGMLized before introduction into the
Porters Handbook.

Light blue touch-paper.  Run.
2005-11-15 06:52:12 +00:00

56 lines
1.3 KiB
Makefile

# New ports collection makefile for: bjorb
# Date created: May 16, 1998
# Whom: issei@jp.FreeBSD.org
#
# $FreeBSD$
#
PORTNAME= bjorb
PORTVERSION= 0.5.5p1
CATEGORIES= security
MASTER_SITES= http://people.FreeBSD.org/~foxfair/distfiles/
MAINTAINER= ports@FreeBSD.org
COMMENT= Secure TCP relay software with SSL
USE_OPENSSL= YES
USE_PERL5= yes
.if !defined(BATCH)
INSTALL_TARGET= install certificate
.endif
USE_AUTOTOOLS= autoconf:213
CFLAGS+= -I${OPENSSLINC}/openssl
CONFIGURE_ARGS= --with-ssltop=${OPENSSLBASE} --with-ssllib=${OPENSSLLIB}
CONFIGURE_ENV+= LOCALBASE=${LOCALBASE}
WRKSRC= ${WRKDIR}/${DISTNAME}/src
DOCSRC= ${WRKDIR}/${DISTNAME}
DOCS= ChangeLog \
COPYRIGHT \
INSTALL \
README \
ChangeLog.jp \
COPYRIGHT.jp \
INSTALL.jp \
README.jp \
doc/bjorb.conf.5.jp.txt \
doc/features.jp
EXAMPLES= doc/sample/bjorb.conf.doc
.include <bsd.port.pre.mk>
post-install:
@${INSTALL_SCRIPT} ${DOCSRC}/doc/sample/bjorb.sh ${PREFIX}/etc/rc.d/bjorb.sh.sample
.if !defined(NOPORTDOCS)
@${MKDIR} ${PREFIX}/share/doc/bjorb
.for i in ${DOCS}
@${INSTALL_DATA} ${DOCSRC}/$i ${PREFIX}/share/doc/bjorb
.endfor
@${MKDIR} ${PREFIX}/share/examples/bjorb
.for i in ${EXAMPLES}
@${INSTALL_DATA} ${DOCSRC}/$i ${PREFIX}/share/examples/bjorb
.endfor
.endif
.include <bsd.port.post.mk>