diff options
author | Gabor Pali <pgj@FreeBSD.org> | 2010-01-03 05:12:17 +0000 |
---|---|---|
committer | Gabor Pali <pgj@FreeBSD.org> | 2010-01-03 05:12:17 +0000 |
commit | 7f3079962f8903ff1334b70d507eea1e17f48fd3 (patch) | |
tree | d3d7a0c8b6671bea9bee1c6ba6917646561fa558 /www/hs-http-server | |
parent | 80bc5be124206e224c711f63ea48538e742a4592 (diff) | |
download | ports-7f3079962f8903ff1334b70d507eea1e17f48fd3.tar.gz ports-7f3079962f8903ff1334b70d507eea1e17f48fd3.zip |
Notes
Diffstat (limited to 'www/hs-http-server')
-rw-r--r-- | www/hs-http-server/Makefile | 100 | ||||
-rw-r--r-- | www/hs-http-server/distinfo | 3 | ||||
-rw-r--r-- | www/hs-http-server/files/pkg-message.in | 5 | ||||
-rw-r--r-- | www/hs-http-server/pkg-descr | 3 | ||||
-rw-r--r-- | www/hs-http-server/pkg-plist | 20 |
5 files changed, 131 insertions, 0 deletions
diff --git a/www/hs-http-server/Makefile b/www/hs-http-server/Makefile new file mode 100644 index 000000000000..f9dd1ba2812a --- /dev/null +++ b/www/hs-http-server/Makefile @@ -0,0 +1,100 @@ +# New ports collection makefile for: hs-http-server +# Date created: December 20 2009 +# Whom: Giuseppe Pilichi aka Jacula Modyun <jacula@gmail.com> +# +# $FreeBSD$ +# + +PORTNAME= http-server +PORTVERSION= 1 +CATEGORIES= www haskell +MASTER_SITES= http://hackage.haskell.org/packages/archive/${PORTNAME}/${PORTVERSION}/ +PKGNAMEPREFIX= hs- + +MAINTAINER= jacula@gmail.com +COMMENT= A library fro writing Haskell web servers + +BUILD_DEPENDS+= ghc:${PORTSDIR}/lang/ghc \ + hs-url>=2:${PORTSDIR}/www/hs-url \ + hs-HTTP>=4000.0.7:${PORTSDIR}/www/hs-HTTP \ + hs-utf8-string-ghc>=0.3.4:${PORTSDIR}/devel/hs-utf8-string-ghc \ + hs-mime>=0.3:${PORTSDIR}/mail/hs-mime +RUN_DEPENDS+= ghc:${PORTSDIR}/lang/ghc \ + hs-url>=2:${PORTSDIR}/www/hs-url \ + hs-HTTP>=4000.0.7:${PORTSDIR}/www/hs-HTTP \ + hs-utf8-string-ghc>=0.3.4:${PORTSDIR}/devel/hs-utf8-string-ghc \ + hs-mime>=0.3:${PORTSDIR}/mail/hs-mime + +GHC_VERSION= 6.10.4 +HTTPSERVER_VERSION= ${PORTVERSION} + +GHC_CMD= ${LOCALBASE}/bin/ghc +SETUP_CMD= ./setup + +EXAMPLESDIR= ${PREFIX}/share/examples/${DISTNAME} +PORTEXAMPLES= * + +DOCSDIR= ${PREFIX}/share/doc/${DISTNAME} +HTTPSERVER_LIBDIR_REL= lib/${DISTNAME} + +PLIST_SUB= GHC_VERSION=${GHC_VERSION} \ + HTTPSERVER_VERSION=${HTTPSERVER_VERSION} \ + HTTPSERVER_LIBDIR_REL=${HTTPSERVER_LIBDIR_REL} + +.if !defined(NOPORTEXAMPLES) +SUB_FILES= pkg-message +.endif + +.if defined(NOPORTDOCS) +PLIST_SUB+= NOPORTDOCS="" +.else +PLIST_SUB+= NOPORTDOCS="@comment " +.endif + +.if !defined(NOPORTDOCS) + +PORT_HADDOCK!= (cd ${.CURDIR}/../../lang/ghc && ${MAKE} -V PORT_HADDOCK) +.if !empty(PORT_HADDOCK:M?0) +BUILD_DEPENDS+= haddock:${PORTSDIR}/devel/hs-haddock +.endif +BUILD_DEPENDS+= HsColour:${PORTSDIR}/print/hs-hscolour + +HSCOLOUR_VERSION= 1.15 +HSCOLOUR_DATADIR= ${PREFIX}/share/hscolour-${HSCOLOUR_VERSION} + +PORTDOCS= * +.endif + +.SILENT: + +do-configure: + cd ${WRKSRC} && ${GHC_CMD} --make Setup.hs -o setup -package Cabal \ + && ${SETUP_CMD} configure --haddock-options=-w --prefix=${PREFIX} + +do-build: + cd ${WRKSRC} && ${SETUP_CMD} build \ + && ${SETUP_CMD} register --gen-script + +.if !defined(NOPORTDOCS) + cd ${WRKSRC} && ${SETUP_CMD} haddock --hyperlink-source \ + --hscolour-css=${HSCOLOUR_DATADIR}/hscolour.css +.endif + +do-install: + cd ${WRKSRC} && ${SETUP_CMD} install \ + && ${INSTALL_SCRIPT} register.sh ${PREFIX}/${HTTPSERVER_LIBDIR_REL}/register.sh +.if !defined(NOPORTEXAMPLES) + ${MKDIR} ${EXAMPLESDIR} && cd ${WRKSRC}/example && ${COPYTREE_SHARE} \* ${EXAMPLESDIR} +.endif + +post-install: + ${RM} -f ${PREFIX}/lib/ghc-${GHC_VERSION}/package.conf.old +.if !defined(NOPORTEXAMPLES) + @${ECHO_MSG} -e "\a" + @${ECHO_MSG} "=================================================================" + @${CAT} "${PKGMESSAGE}" + @${ECHO_MSG} "=================================================================" + @${ECHO_MSG} +.endif + +.include <bsd.port.mk> diff --git a/www/hs-http-server/distinfo b/www/hs-http-server/distinfo new file mode 100644 index 000000000000..b84ebbe87ba2 --- /dev/null +++ b/www/hs-http-server/distinfo @@ -0,0 +1,3 @@ +MD5 (http-server-1.tar.gz) = fbf28492249ecc89de71a2c600743e7b +SHA256 (http-server-1.tar.gz) = a724c4224c7bf000c7b498a7145efb5f2a4f7b8eab4033bc960c3f11026848b1 +SIZE (http-server-1.tar.gz) = 27654 diff --git a/www/hs-http-server/files/pkg-message.in b/www/hs-http-server/files/pkg-message.in new file mode 100644 index 000000000000..0932f20ea899 --- /dev/null +++ b/www/hs-http-server/files/pkg-message.in @@ -0,0 +1,5 @@ + You have installed the directory: + + %%EXAMPLESDIR%% + + you'll have to install the port converters/hs-json to use it. diff --git a/www/hs-http-server/pkg-descr b/www/hs-http-server/pkg-descr new file mode 100644 index 000000000000..f70d9d7ea9ca --- /dev/null +++ b/www/hs-http-server/pkg-descr @@ -0,0 +1,3 @@ +A library for writing Haskell web servers. + +WWW: http://code.galois.com/ diff --git a/www/hs-http-server/pkg-plist b/www/hs-http-server/pkg-plist new file mode 100644 index 000000000000..6cf4782e9bfb --- /dev/null +++ b/www/hs-http-server/pkg-plist @@ -0,0 +1,20 @@ +@comment $FreeBSD$ +%%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/HShttp-server-%%HTTPSERVER_VERSION%%.o +%%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Network/HTTP/Server.hi +%%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Network/HTTP/Server/HtmlForm.hi +%%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Network/HTTP/Server/Logger.hi +%%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Network/HTTP/Server/Response.hi +%%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Network/HTTP/Server/Utils.hi +%%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/libHShttp-server-%%HTTPSERVER_VERSION%%.a +%%HTTPSERVER_LIBDIR_REL%%/register.sh +%%NOPORTDOCS%%%%DOCSDIR%%/LICENSE +%%NOPORTDOCS%%@dirrmtry %%DOCSDIR%% +@dirrm %%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Network/HTTP/Server +@dirrm %%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Network/HTTP +@dirrm %%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%%/Network +@dirrm %%HTTPSERVER_LIBDIR_REL%%/ghc-%%GHC_VERSION%% +@dirrm %%HTTPSERVER_LIBDIR_REL%% +@exec /bin/sh %D/%%HTTPSERVER_LIBDIR_REL%%/register.sh +@exec /bin/rm -f %D/lib/ghc-%%GHC_VERSION%%/package.conf.old +@unexec %D/bin/ghc-pkg unregister http-server +@unexec /bin/rm -f %D/lib/ghc-%%GHC_VERSION%%/package.conf.old |