X-Git-Url: http://git.cielonegro.org/gitweb.cgi?a=blobdiff_plain;f=TODO;h=cc117ccb6b3d5895b7d8824107131a95872c0acf;hb=31fece01cf583b2d893b2849cefd75e5dd05d6d1;hp=5c89a15fecb40cb3e9ad8b7ebff67eff16951b32;hpb=f1499ee0617b042295b3f1594edf71ef934bac7a;p=pkgsrc-ghc.git diff --git a/TODO b/TODO index 5c89a15..cc117cc 100644 --- a/TODO +++ b/TODO @@ -34,7 +34,9 @@ Build some configuration files:: Run ``./configure`` on the host tree:: $ cd ghc-{VERSION}-host - $ ./configure + $ ./configure \ + --with-iconv-includes=/usr/pkg/include \ + --with-iconv-libraries=/usr/pkg/lib Then create ``ghc-{VERSION}-host/mk/build.mk`` with the following contents:: @@ -55,6 +57,9 @@ contents:: utils/ghc-pkg_dist-install_v_HC_OPTS += -keep-hc-files INTEGER_LIBRARY = integer-simple + libraries/terminfo_CONFIGURE_OPTS += \ + --configure-option=--with-curses-includes=/usr/pkg/include \ + --configure-option=--with-curses-libraries=/usr/pkg/lib Copy some configuration files from the ``-target`` tree:: @@ -74,7 +79,7 @@ Create an intermediate tarball:: $ find . -name package-data.mk >> list $ find . -name package.conf.d >> list $ find . -name package.conf.inplace >> list - $ echo compiler/main/Config.hs >> list + $ ls compiler/stage?/build/Config.hs >> list $ echo compiler/prelude/primops.txt >> list $ ls compiler/primop-*.hs-incl >> list $ find . -name .depend | sed -e 's/^/mkdir -p `dirname /' -e 's/$/`/' >> mkfiles @@ -91,11 +96,13 @@ Then extract it again, in a different directory:: Modify hard-coded paths in inplace ``.conf`` files, and then re-archive the HC tree:: - $ sed -i.bak -e 's#'`dirname \`pwd\``'#[[GHC_SOURCE_PATH]]#g' \ + $ gsed -i.bak \ + -e 's#/usr/pkg#[[PREFIX]]#g' \ + -e 's#'`dirname \`pwd\``'#[[GHC_SOURCE_PATH]]#g' \ inplace/lib/package.conf.d/*.conf \ */*/package-data.mk \ */*/*/package-data.mk $ cd .. - $ tar jcf ghc-{VERSION}-boot-{PLATFORM}.tar.bz2 + $ tar jcf ghc-{VERSION}-boot-{PLATFORM}.tar.bz2 ghc-{VERSION} Done. Upload the archive to some host and add it to the ``Makefile``.