aboutsummaryrefslogtreecommitdiffstats
path: root/textproc
diff options
context:
space:
mode:
authorashish <ashish@FreeBSD.org>2011-07-10 10:17:14 +0800
committerashish <ashish@FreeBSD.org>2011-07-10 10:17:14 +0800
commit3adb8b331286551aa5cac9c611a3d424baf86cd3 (patch)
treef5c83f8c51a5dee0ac5501c751bceb5a3b0d27c0 /textproc
parent7bffe685f132938312e9c4df9bf1acf4051db65f (diff)
downloadfreebsd-ports-gnome-3adb8b331286551aa5cac9c611a3d424baf86cd3.tar.gz
freebsd-ports-gnome-3adb8b331286551aa5cac9c611a3d424baf86cd3.tar.zst
freebsd-ports-gnome-3adb8b331286551aa5cac9c611a3d424baf86cd3.zip
- Update to 1.17
Obtained from: FreeBSD Haskell
Diffstat (limited to 'textproc')
-rw-r--r--textproc/hs-lhs2tex/Makefile2
-rw-r--r--textproc/hs-lhs2tex/distinfo4
-rw-r--r--textproc/hs-lhs2tex/files/patch-MathPoly.lhs11
-rw-r--r--textproc/hs-lhs2tex/files/patch-Setup.hs18
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.