summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Turner <jturner.usa@gmail.com>2023-09-12 00:45:49 -0400
committerJohn Turner <jturner.usa@gmail.com>2023-09-12 00:45:49 -0400
commit6442c4be10df665c4e2143c0eab1dc4502112c81 (patch)
tree8d264eaf6916d042c509798b39737d0b3b713639
parent42fe62da24704155e74528d738830492fe64e2a8 (diff)
downloademacs.d-6442c4be10df665c4e2143c0eab1dc4502112c81.tar.gz
create package ebuild-mode
-rw-r--r--packages/ebuild-mode.el11
1 files changed, 11 insertions, 0 deletions
diff --git a/packages/ebuild-mode.el b/packages/ebuild-mode.el
new file mode 100644
index 0000000..f3b3448
--- /dev/null
+++ b/packages/ebuild-mode.el
@@ -0,0 +1,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))))