From 3ecd0e3c34b80f35c68295fb8d88a63992e6a64f Mon Sep 17 00:00:00 2001 From: "Aaron W. Swenson" Date: Sat, 10 Nov 2018 06:30:12 -0500 Subject: [PATCH] Correct Gentoo emerge instructions (#311) Emerge doesn't care what order the packages are given; it'll figure out the correct build order and pull in the proper dependencies. Adding the -u switch will only perform the emerge if the package is not yet installed or needs to be updated. This avoids wasting time performing an emerge on something that has already been emerged. While harmless, it is unnecessary to explicitly include eselect-postgresql in the list as the dev-db/postgresql ebuilds declare it as a dependency. There is no "sqlite3" or "libsqlite3-dev" ebuilds, so that command would fail. --- docs/INSTALL.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/INSTALL.md b/docs/INSTALL.md index 3d28db57..b55b0108 100644 --- a/docs/INSTALL.md +++ b/docs/INSTALL.md @@ -49,10 +49,10 @@ On **Gentoo**: emerge --sync # If you want PostgreSQL -emerge -av postgresql eselect-postgresql gettext && emerge --ask dev-vcs/git +emerge -avu dev-db/postgresql dev-vcs/git sys-devel/gettext # If you want SQlite -emerge -av gettext && emerge --ask dev-vcs/git && emerge -pv sqlite3 libsqlite3-dev +emerge -avu dev-db/sqlite dev-vcs/git sys-devel/gettext ``` On **Mac OS X**, with [Homebrew](https://brew.sh/):