diff options
author | nox <nox@FreeBSD.org> | 2011-04-02 11:14:28 +0800 |
---|---|---|
committer | nox <nox@FreeBSD.org> | 2011-04-02 11:14:28 +0800 |
commit | 6673b7745e43e53541571700654e908b12e44e5f (patch) | |
tree | 49a5e0cccb161eb546a2559355d7b6edebaef643 /print | |
parent | b500735f28e2b99a4b3374915e1eee19f0401b72 (diff) | |
download | freebsd-ports-graphics-6673b7745e43e53541571700654e908b12e44e5f.tar.gz freebsd-ports-graphics-6673b7745e43e53541571700654e908b12e44e5f.tar.zst freebsd-ports-graphics-6673b7745e43e53541571700654e908b12e44e5f.zip |
Add patch to fix build. (bad imake target)
PR: ports/156104
Submitted by: Callum Gibson <callum@omma.gibson.athome>
Diffstat (limited to 'print')
-rw-r--r-- | print/xdvi/Makefile | 2 | ||||
-rw-r--r-- | print/xdvi/files/patch-Imakefile | 11 |
2 files changed, 11 insertions, 2 deletions
diff --git a/print/xdvi/Makefile b/print/xdvi/Makefile index ac80a0eb374..66580e3b161 100644 --- a/print/xdvi/Makefile +++ b/print/xdvi/Makefile @@ -17,8 +17,6 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= ports@FreeBSD.org COMMENT= A DVI Previewer for the X Window System -BROKEN= does not build - CONFLICTS= teTeX-* DIST_SUBDIR= xdvi diff --git a/print/xdvi/files/patch-Imakefile b/print/xdvi/files/patch-Imakefile new file mode 100644 index 00000000000..2705db1b191 --- /dev/null +++ b/print/xdvi/files/patch-Imakefile @@ -0,0 +1,11 @@ +--- Imakefile.orig 2011-04-01 14:12:59.000000000 +1100 ++++ Imakefile 2011-04-01 14:11:38.000000000 +1100 +@@ -82,7 +82,7 @@ + mostlyclean: + $(RM) *.o xdvi xdvi.man core sedscript *~ + +-distclean: clean ++distclean:: clean + $(RM) Makefile.cfg + + veryclean: distclean |