# HG changeset patch
# User Sean Farley <sean@mcs.anl.gov>
# Date 1348004292 18000
# Node ID c0fcd9d263da7dafe791ab184ed8cf3a73dea0a3
# Parent 17927bd2472746a588d83d780801f19af46532d2
auctex: add biber variant
diff --git a/editors/auctex/Portfile b/editors/auctex/Portfile
a
|
b
|
|
41 | 41 | variant mactex description "If your TeX distribution is MacTeX" { |
42 | 42 | # Note: This also needs /usr/texbin in binpath in macports.conf |
43 | 43 | configure.args-append --with-texmf-dir=/usr/local/texlive/texmf-local |
44 | 44 | } |
45 | 45 | |
| 46 | variant biber description {Enable using biblatex with the biber backend} { |
| 47 | depends_lib-append port:biblatex-biber port:texlive-bibtex-extra |
| 48 | patchfiles-append biber.patch |
| 49 | patch.pre_args -p1 |
| 50 | } |
| 51 | |
46 | 52 | notes "To use this, put the following into your ~/.emacs:\n\ |
47 | 53 | (require 'tex-site)" |