summaryrefslogtreecommitdiff
path: root/packages/ebuild-mode.el
blob: f3b344802917bf97bfd8c21829df55f49e4345be (plain)
1
2
3
4
5
6
7
8
9
10
11
(use-package ebuild-mode
  :if (locate-library "ebuild-mode")
  :mode (rx (literal ".") (or "ebuild" "eclass") eos)
  :custom
  (ebuild-mode-full-name  "John Turner")
  (ebuild-mode-mail-address "jturner.usa@gmail.com")
  (ebuild-mode-portage-tmpdir (file-name-concat (getenv "HOME") "tmp" "ebuild"))
  (ebuild-mode-portdir "/var/db/repos/gentoo")
  (ebuild-mode-xml-indent-tabs t)
  (ebuild-mode-process-environment (list (format "ROOT=%s" ebuild-mode-portage-tmpdir)
                                         (format "PORTAGE_TMPDIR=%s" ebuild-mode-portage-tmpdir))))