Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ganto/linuxmonk-overlay
Gentoo Overlay - Ganto's ebuild brewery
https://github.com/ganto/linuxmonk-overlay
ebuilds gentoo gentoo-overlay
Last synced: about 2 months ago
JSON representation
Gentoo Overlay - Ganto's ebuild brewery
- Host: GitHub
- URL: https://github.com/ganto/linuxmonk-overlay
- Owner: ganto
- License: gpl-2.0
- Created: 2016-01-16T21:29:00.000Z (almost 9 years ago)
- Default Branch: master
- Last Pushed: 2024-11-02T10:46:07.000Z (2 months ago)
- Last Synced: 2024-11-02T11:26:15.509Z (2 months ago)
- Topics: ebuilds, gentoo, gentoo-overlay
- Language: Shell
- Size: 4.1 MB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Linuxmonk Overlay
[![Build Status](https://travis-ci.org/ganto/linuxmonk-overlay.png)](https://travis-ci.org/ganto/linuxmonk-overlay)
This is a personal [Gentoo Portage Overlay](https://wiki.gentoo.org/wiki/Overlay). It mostly contains ebuilds of applications and libraries that I am/was interested to try on one of my Gentoo boxes or that solve a particular issue with an upstream ebuild.
Feel free to use any ebuild for your own purpose, however I might not be able to help you with any problems, as I'm not regularly using most of the packaged applications. Still every ebuild published here is in a fully functional condition at the time of upload.
### Installing the overlay
In order to manage the overlay, the package **app-portage/layman** must be installed into your environment:
```
emerge -av app-portage/layman
```If the installation of _layman_ was successfully completed, enable custom overlays by uncommenting the following line in `/etc/layman/layman.cfg`:
```
overlay_defs : /etc/layman/overlays
```Add this overlay by fetching its remote list as showed below:
```
wget -O /etc/layman/overlays/linuxmonk-overlay.xml https://raw.github.com/ganto/linuxmonk-overlay/master/overlay.xml
```At this point you can execute:
```
layman -a linuxmonk-overlay
```Finally make sure that _emerge_ can find the ebuilds of the custom overlay:
```
echo "source /var/lib/layman/make.conf" >> /etc/portage/make.conf
```### Updating the overlay
Keep the overlay up to date with:
```
layman -s linuxmonk-overlay
```### Removing the overlay
The process of removing this overlay from your Gentoo environment is quite straightforward:
```
layman -d linuxmonk-overlay
rm /etc/layman/overlays/linuxmonk-overlay.xml
```