freebsd-ports/devel/florist/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

46 lines
1.2 KiB
Makefile

# New ports collection makefile for: florist
# Date created: 1 Sep 2002
# Whom: Vadim Godunko <vgodunko@vipmail.ru>
#
# $FreeBSD$
#
PORTNAME= florist
PORTVERSION= 3.15p
PORTREVISION= 1
CATEGORIES= devel
MASTER_SITES= http://www.cs.fsu.edu/~baker/ftp/
DISTNAME= florist-${PORTVERSION}-src
EXTRACT_SUFX= .tgz
MAINTAINER= ports@FreeBSD.org
COMMENT= FSU implementation of POSIX.5, the POSIX Ada binding
BUILD_DEPENDS= adagcc:${PORTSDIR}/lang/gnat
USE_AUTOTOOLS= autoconf:213
USE_GMAKE= yes
CONFIGURE_ARGS= --enable-threads
CONFIGURE_ENV= CPPFLAGS="${CPPFLAGS} ${PTHREAD_CFLAGS}" \
LIBS="${LIBS} ${PTHREAD_LIBS}"
MAKEFILE= "${FILESDIR}/Makefile.bsd"
MAKE_ARGS= GMAKE=${GMAKE} PORTVERSION=${PORTVERSION} LN=${LN} \
RM=${RM}
INSTALLS_SHLIB= yes
post-extract:
# add FreeBSD configuration
@${CP} ${FILESDIR}/pconfig.FreeBSD \
${WRKSRC}/configs
do-install:
@${MKDIR} ${PREFIX}/lib/florist
@${INSTALL_DATA} ${WRKSRC}/floristlib/*.ad[sb] \
${WRKSRC}/floristlib/*.ali \
${PREFIX}/lib/florist
@${INSTALL_DATA} ${WRKSRC}/floristlib/libflorist.a ${PREFIX}/lib
@${INSTALL_DATA} ${WRKSRC}/libflorist-${PORTVERSION}.so.1 ${PREFIX}/lib
@${LN} -sf ${PREFIX}/lib/libflorist-${PORTVERSION}.so.1 \
${PREFIX}/lib/libflorist-${PORTVERSION}.so
.include <bsd.port.mk>