Bug 40828 - [MAINTAINER UPDATE] Fix devel/hat for bento
Summary: [MAINTAINER UPDATE] Fix devel/hat for bento
Status: Closed FIXED
Alias: None
Product: Ports & Packages
Classification: Unclassified
Component: Individual Port(s) (show other bugs)
Version: Latest
Hardware: Any Any
: Normal Affects Only Me
Assignee: Oliver Braun
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2002-07-21 11:20 UTC by obraun
Modified: 2002-08-21 16:33 UTC (History)
0 users

See Also:


Attachments
file.diff (333 bytes, patch)
2002-07-21 11:20 UTC, obraun
no flags Details | Diff

Note You need to log in before you can comment on or make changes to this bug.
Description obraun 2002-07-21 11:20:01 UTC
devel/hat fails on bento, because bento does not recognize -p for uname.
Added files/patch-script::harch to fix this problem.

Regards,
         Olli
Comment 1 obraun 2002-07-23 20:13:53 UTC
hat does not build with ghc-5.04. I am working with the developers on
this, but it is no FreeBSD-specific problem.

For the time being set FORBIDDEN if WITHOUT_NHC98 is defined and undef
WITH_GHC if WITH_GHC is defined.

Please apply this patch and add files/patch-script::harch from my
previous message in this PR.

Regards,
         Olli


Index: Makefile
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D
RCS file: /home/ncvs/ports/devel/hat/Makefile,v
retrieving revision 1.15
diff -u -r1.15 Makefile
--- Makefile	15 Jul 2002 17:21:53 -0000	1.15
+++ Makefile	23 Jul 2002 19:06:18 -0000
@@ -12,6 +12,14 @@
=20
 MAINTAINER=3D	obraun@informatik.unibw-muenchen.de
=20
+.if defined(WITHOUT_NHC98)
+FORBIDDEN=3D	does not build with ghc-5.04 for the time being
+.endif
+
+.if defined(WITH_GHC)
+.undef WITH_GHC
+.endif
+
 .if !defined(WITHOUT_NHC98)
 BUILD_DEPENDS=3D	nhc98:${PORTSDIR}/lang/nhc98
 RUN_DEPENDS=3D	nhc98:${PORTSDIR}/lang/nhc98
@@ -63,8 +71,9 @@
 	@${ECHO_CMD} " HAT will be built and installed for ghc only."
 .else
 	@${ECHO_CMD} " HAT will be built and installed for nhc98 only."
-	@${ECHO_CMD} " Define WITH_GHC      to install for ghc, too."
-	@${ECHO_CMD} " Define WITHOUT_NHC98 to install for ghc only."
+#	@${ECHO_CMD} " Define WITH_GHC      to install for ghc, too."
+#	@${ECHO_CMD} " Define WITHOUT_NHC98 to install for ghc only."
+	@${ECHO_CMD} " HAT does not build with ghc-5.04 for the time being."
 .endif
 	@${ECHO_CMD} ""
=20
Comment 2 dwcjr 2002-08-12 00:06:15 UTC
You sent your patch in MIME to the list, could you post it in plain text?
Comment 3 obraun 2002-08-12 00:17:45 UTC
>  You sent your patch in MIME to the list, could you post it in plain text?

Of course, sorry.

Index: Makefile
===================================================================
RCS file: /home/ncvs/ports/devel/hat/Makefile,v
retrieving revision 1.15
diff -u -r1.15 Makefile
--- Makefile	15 Jul 2002 17:21:53 -0000	1.15
+++ Makefile	11 Aug 2002 23:16:57 -0000
@@ -12,6 +12,14 @@
 
 MAINTAINER=	obraun@informatik.unibw-muenchen.de
 
+.if defined(WITHOUT_NHC98)
+FORBIDDEN=	does not build with ghc-5.04 for the time being
+.endif
+
+.if defined(WITH_GHC)
+.undef WITH_GHC
+.endif
+
 .if !defined(WITHOUT_NHC98)
 BUILD_DEPENDS=	nhc98:${PORTSDIR}/lang/nhc98
 RUN_DEPENDS=	nhc98:${PORTSDIR}/lang/nhc98
@@ -63,8 +71,9 @@
 	@${ECHO_CMD} " HAT will be built and installed for ghc only."
 .else
 	@${ECHO_CMD} " HAT will be built and installed for nhc98 only."
-	@${ECHO_CMD} " Define WITH_GHC      to install for ghc, too."
-	@${ECHO_CMD} " Define WITHOUT_NHC98 to install for ghc only."
+#	@${ECHO_CMD} " Define WITH_GHC      to install for ghc, too."
+#	@${ECHO_CMD} " Define WITHOUT_NHC98 to install for ghc only."
+	@${ECHO_CMD} " HAT does not build with ghc-5.04 for the time being."
 .endif
 	@${ECHO_CMD} ""
Comment 4 Oliver Braun freebsd_committer freebsd_triage 2002-08-21 13:18:39 UTC
Responsible Changed
From-To: freebsd-ports->obraun

I am submitter and maintainer.
Comment 5 Oliver Braun freebsd_committer freebsd_triage 2002-08-21 16:33:01 UTC
State Changed
From-To: open->closed

Committed, thanks!