diff options
author | Ashish SHUKLA <ashish@FreeBSD.org> | 2011-07-10 02:17:14 +0000 |
---|---|---|
committer | Ashish SHUKLA <ashish@FreeBSD.org> | 2011-07-10 02:17:14 +0000 |
commit | c0e538d0196fdf5c5501adec2bf121f72289807e (patch) | |
tree | aa1777002b5844718c927db20f932952c814ff23 | |
parent | 43a9e78a0c7018dcaf7a1c8e3a244bbb71019932 (diff) | |
download | ports-c0e538d0196fdf5c5501adec2bf121f72289807e.tar.gz ports-c0e538d0196fdf5c5501adec2bf121f72289807e.zip |
Notes
-rw-r--r-- | textproc/hs-lhs2tex/Makefile | 2 | ||||
-rw-r--r-- | textproc/hs-lhs2tex/distinfo | 4 | ||||
-rw-r--r-- | textproc/hs-lhs2tex/files/patch-MathPoly.lhs | 11 | ||||
-rw-r--r-- | textproc/hs-lhs2tex/files/patch-Setup.hs | 18 |
4 files changed, 6 insertions, 29 deletions
diff --git a/textproc/hs-lhs2tex/Makefile b/textproc/hs-lhs2tex/Makefile index 6e3b8dba09bd..5290549e883a 100644 --- a/textproc/hs-lhs2tex/Makefile +++ b/textproc/hs-lhs2tex/Makefile @@ -7,7 +7,7 @@ # PORTNAME= lhs2tex -PORTVERSION= 1.16 +PORTVERSION= 1.17 CATEGORIES= textproc haskell MAINTAINER= haskell@FreeBSD.org diff --git a/textproc/hs-lhs2tex/distinfo b/textproc/hs-lhs2tex/distinfo index 5cfbc116227b..fb52aa0d782f 100644 --- a/textproc/hs-lhs2tex/distinfo +++ b/textproc/hs-lhs2tex/distinfo @@ -1,2 +1,2 @@ -SHA256 (cabal/lhs2tex-1.16.tar.gz) = aa43ec92e8d7c94213365a7211d605314476977155e36420caa3cfb394f7c76f -SIZE (cabal/lhs2tex-1.16.tar.gz) = 581362 +SHA256 (cabal/lhs2tex-1.17.tar.gz) = 2cf7495b951f44454a73d1be32617ffeba9b938af3e0c2a171a4f6524d1889f4 +SIZE (cabal/lhs2tex-1.17.tar.gz) = 662684 diff --git a/textproc/hs-lhs2tex/files/patch-MathPoly.lhs b/textproc/hs-lhs2tex/files/patch-MathPoly.lhs deleted file mode 100644 index 7c4ca99a1acd..000000000000 --- a/textproc/hs-lhs2tex/files/patch-MathPoly.lhs +++ /dev/null @@ -1,11 +0,0 @@ ---- ./MathPoly.lhs.orig 2010-07-22 12:13:20.000000000 +0200 -+++ ./MathPoly.lhs 2011-03-27 01:52:26.469094252 +0100 -@@ -358,7 +358,7 @@ - > (rn,rc) = findrel (n,c) rstack - > -- Schritt 3: Zeile auf Stack legen - > fstack = (c,l) : rstack --> in mkFromTo fstack rn n rc [fromToken $ TeX False (indent (rn,rc) (n,c))] p ls -+> in mkFromTo fstack rn n rc [fromToken $ (TeX False (indent (rn,rc) (n,c))) :: Token] p ls - > - > - > | c `elem` z -> mkFromTo stack n (n ++ "E") c ts rs ls diff --git a/textproc/hs-lhs2tex/files/patch-Setup.hs b/textproc/hs-lhs2tex/files/patch-Setup.hs index a5ea584380dc..aa6c860894fd 100644 --- a/textproc/hs-lhs2tex/files/patch-Setup.hs +++ b/textproc/hs-lhs2tex/files/patch-Setup.hs @@ -1,5 +1,5 @@ ---- ./Setup.hs.orig 2010-07-22 12:13:20.000000000 +0200 -+++ ./Setup.hs 2011-03-27 01:53:35.109600797 +0100 +--- ./Setup.hs.orig 2011-03-17 11:23:52.000000000 +0100 ++++ ./Setup.hs 2011-05-22 14:33:40.000000000 +0200 @@ -204,7 +204,7 @@ else docdir (absoluteInstallDirs pd lbi cd) `joinFileName` "doc" let manDir = if isWindows @@ -7,17 +7,5 @@ - else datadir (absoluteInstallDirs pd lbi cd) `joinFileName` ".." `joinFileName` "man" `joinFileName` "man1" + else prefix (absoluteInstallDirs pd lbi cd) `joinFileName` "man" `joinFileName` "man1" createDirectoryIfMissing True docDir - copyFileVerbose v (lhs2texDocDir `joinFileName` "Guide2.pdf") (docDir `joinFileName` "Guide2.pdf") + installOrdinaryFile v (lhs2texDocDir `joinFileName` "Guide2.pdf") (docDir `joinFileName` "Guide2.pdf") when (not isWindows) $ -@@ -291,9 +291,9 @@ - do let mProg = lookupProgram (simpleProgram progName) programConf - case mProg of - Just (ConfiguredProgram { programLocation = UserSpecified p, -- programArgs = args }) -> return (p,args) -+ programDefaultArgs = args }) -> return (p,args) - Just (ConfiguredProgram { programLocation = FoundOnSystem p, -- programArgs = args }) -> return (p,args) -+ programDefaultArgs = args }) -> return (p,args) - _ -> (die (progName ++ " command not found")) - - -- | Run a command in a specific environment and return the output and errors. |