Not sure. But below is what I would do if I wanted to install the package using the ebuild from Gentoo Bugzilla Bug Report No. 139715:
1. Download the ebuild:
- Code: Select all
$ wget http://bugs.gentoo.org/attachment.cgi?id=227965 --output-document=/home/fitzcarraldo/Desktop/samsung-unifieddriver-3.00.62-r1.ebuild
2. Synchronise the Portage main tree’s ebuilds on my PC with those in the repositories:
- Code: Select all
# emerge --sync
3. Add the Portage Sabayon overlay if it is not already added, and synchronise the Portage Sabayon overlay's ebuilds on my PC with those in the repositories:
- Code: Select all
# layman -a sabayon # Do not worry if a message says it is already added.
# layman -S
(If a message says that git is not installed, then install it using either Entropy or Portage, then repeat the above layman commands.)
4. Make sure that /etc/make.conf has the following lines at the end of the file:
- Code: Select all
PORTDIR_OVERLAY="${PORTDIR_OVERLAY} /usr/local/portage/"
ACCEPT_LICENSE="*"
5. Create the required directories in the local overlay:
- Code: Select all
# mkdir -p /usr/local/portage/net-print/samsung-unifieddriver/files
6. Make sure Portage would not nag me about a missing name for my local overlay:
- Code: Select all
# mkdir /usr/local/portage/profiles
# echo "local_overlay" > /usr/local/portage/profiles/repo_name
7. Copy the ebuild into the relevant directory in the local overlay:
- Code: Select all
# cd /usr/local/portage/net-print/samsung-unifieddriver
# cp /home/fitzcarraldo/Desktop/samsung-unifieddriver-3.00.62-r1.ebuild .
8. Generate the manifest for the package:
- Code: Select all
# ebuild samsung-unifieddriver-3.00.62-r1.ebuild manifest
9. Merge the package:
- Code: Select all
# emerge -1v samsung-unifieddriver