When you look at the package list for the build-essential meta-package, you see that the following files are included:
/usr/share/build-essential/essential-packages-list
/usr/share/build-essential/list
/usr/share/doc/build-essential/AUTHORS
/usr/share/doc/build-essential/changelog.gz
/usr/share/doc/build-essential/copyright
/usr/share/doc/build-essential/essential-packages-list
/usr/share/doc/build-essential/list
So, I would have to assume that one could look at the included list and see what it provides. Looking at /usr/share/build-essential/essential-packages-list, you see that these packages are installed as part of build-essential:
base-files
base-passwd
bash
bsdutils
coreutils
dash
debianutils
diffutils
dpkg
e2fsprogs
findutils
grep
gzip
hostname
login
mount
ncurses-base
ncurses-bin
perl-base
python-minimal
sed
tar
util-linux
Looking at this list, I would have to assume that some of these are already installed on Red Hat by default, so just install the missing packages. I highly doubt you will find an all encompassing package that just installs these for you.
yum groupinstall "Development Tools"would help me. But how do I find the list of those meta-packages and is there a list matching them up across distros? That is part of my question, too. I searched on the site before I asked. – 0xC0000022L Feb 1 at 14:27yum grouplistto get a list of groups. – TomH Feb 1 at 14:56yum groupinfo. Unfortunately as derobert pointed out, it appears that the scope of "Development Tools" is bigger thanbuild-essential. Write it up as an answer and you will at least get one upvote :) – 0xC0000022L Feb 1 at 15:02