diff options
author | adamw <adamw@FreeBSD.org> | 2014-09-01 05:27:28 +0800 |
---|---|---|
committer | adamw <adamw@FreeBSD.org> | 2014-09-01 05:27:28 +0800 |
commit | 5ff0641ca447adc48af39d6fe1d88fd2a8c9e0dc (patch) | |
tree | 0a19715930e169a254569f77636dea1b0b5ef4cc /misc/latex-mk | |
parent | b140b983caa22f4072599424b1b01b48ef48820d (diff) | |
download | freebsd-ports-gnome-5ff0641ca447adc48af39d6fe1d88fd2a8c9e0dc.tar.gz freebsd-ports-gnome-5ff0641ca447adc48af39d6fe1d88fd2a8c9e0dc.tar.zst freebsd-ports-gnome-5ff0641ca447adc48af39d6fe1d88fd2a8c9e0dc.zip |
USES=makeinfo broke the build here. This port requires texi2dvi, and
USES=makinfo will only bring it in on -current. Fix this by partially
reverting 366590 and adding back the dependencies on print/texinfo.
While here, correct the LICENSE.
Diffstat (limited to 'misc/latex-mk')
-rw-r--r-- | misc/latex-mk/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/misc/latex-mk/Makefile b/misc/latex-mk/Makefile index 2ca2537efd24..34fadc84b54c 100644 --- a/misc/latex-mk/Makefile +++ b/misc/latex-mk/Makefile @@ -10,10 +10,13 @@ MASTER_SITES= SF/${PORTNAME}/${PORTNAME}/${PORTNAME}-${PORTVERSION} MAINTAINER= hrs@FreeBSD.org COMMENT= Collection of makefile and scripts for LaTeX documents -LICENSE= BSD +LICENSE= BSD4CLAUSE + +BUILD_DEPENDS= texi2dvi:${PORTSDIR}/print/texinfo +RUN_DEPENDS= texi2dvi:${PORTSDIR}/print/texinfo USE_TEX= latex -USES= gmake makeinfo +USES= gmake GNU_CONFIGURE= yes INFO= latex-mk |