summaryrefslogtreecommitdiff
path: root/devel/florist/Makefile
diff options
context:
space:
mode:
authorEdwin Groothuis <edwin@FreeBSD.org>2003-09-27 06:46:04 +0000
committerEdwin Groothuis <edwin@FreeBSD.org>2003-09-27 06:46:04 +0000
commit36c5a39f05e26c47327a0b7034622c9ee5d8100c (patch)
tree690302331d7ad79ce8c835625f8d92680f820f8a /devel/florist/Makefile
parentNew port: adabooch is a Booch implementation for Ada95 (diff)
New port: florist (Ada-POSIX bindings)
FLORIST is a FSU implementation of POSIX.5 WWW: http://www.gnat.com/ PR: ports/42280 Submitted by: Vadim Godunko <vgodunko@vipmail.ru> <vgodunko@rost.ru>
Notes
Notes: svn path=/head/; revision=89520
Diffstat (limited to 'devel/florist/Makefile')
-rw-r--r--devel/florist/Makefile45
1 files changed, 45 insertions, 0 deletions
diff --git a/devel/florist/Makefile b/devel/florist/Makefile
new file mode 100644
index 000000000000..97db0fa01532
--- /dev/null
+++ b/devel/florist/Makefile
@@ -0,0 +1,45 @@
+# New ports collection makefile for: florist
+# Date created: 1 Sep 2002
+# Whom: Vadim Godunko <vgodunko@vipmail.ru>
+#
+# $FreeBSD$
+#
+
+PORTNAME= florist
+PORTVERSION= 3.15p
+CATEGORIES= devel
+MASTER_SITES= ftp://cs.nyu.edu/pub/gnat/${PORTVERSION}/
+DISTNAME= florist-${PORTVERSION}-src
+EXTRACT_SUFX= .tgz
+
+MAINTAINER= vgodunko@vipmail.ru
+COMMENT= FSU implementation of POSIX.5
+
+BUILD_DEPENDS= adagcc:${PORTSDIR}/lang/gnat
+
+USE_AUTOCONF= yes
+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>