the Gtk2Hs suite of libraries. These tools include a modified c2hs binding tool that is used to generate FFI declarations, a tool to build a type hierarchy that mirrors the C type hierarchy of GObjects found in glib, and a generator for signal declarations that are used to call back from C to Haskell. These tools are not needed to actually run Gtk2Hs programs.
30 lines
563 B
Makefile
30 lines
563 B
Makefile
# $OpenBSD: Makefile,v 1.1.1.1 2010/06/16 13:57:39 kili Exp $
|
|
|
|
COMMENT = tools to build Gtk2Hs
|
|
|
|
DISTNAME = gtk2hs-buildtools-0.9
|
|
CATEGORIES = devel
|
|
|
|
HOMEPAGE = http://www.haskell.org/gtk2hs/
|
|
|
|
MAINTAINER = Matthias Kilian <kili@openbsd.org>
|
|
|
|
# GPL2
|
|
PERMIT_PACKAGE_CDROM = Yes
|
|
PERMIT_PACKAGE_FTP = Yes
|
|
PERMIT_DISTFILES_CDROM =Yes
|
|
PERMIT_DISTFILES_FTP = Yes
|
|
|
|
WANTLIB = c m util
|
|
|
|
MODULES = lang/ghc converters/libiconv
|
|
|
|
MODGHC_BUILD = cabal hackage nort
|
|
|
|
BUILD_DEPENDS = ::devel/alex \
|
|
::devel/happy
|
|
|
|
LIB_DEPENDS = gmp::devel/gmp
|
|
|
|
.include <bsd.port.mk>
|