diff options
author | Aaron Mavrinac <mavrinac@gmail.com> | 2012-02-20 11:08:24 -0500 |
---|---|---|
committer | Aaron Mavrinac <mavrinac@gmail.com> | 2012-02-20 11:08:24 -0500 |
commit | b0f5b330f45966b9c01d4f6fae74f2b6e9314215 (patch) | |
tree | 0f171d810576a904dace966589596a386f78ecfb | |
parent | Retire www-plugins/google-talkplugin (no longer needed). (diff) | |
download | ezod-b0f5b330f45966b9c01d4f6fae74f2b6e9314215.tar.gz ezod-b0f5b330f45966b9c01d4f6fae74f2b6e9314215.tar.bz2 ezod-b0f5b330f45966b9c01d4f6fae74f2b6e9314215.zip |
Make the repository self-contained.
-rw-r--r-- | README.markdown | 44 | ||||
-rwxr-xr-x | genlist.sh | 8 | ||||
-rw-r--r-- | layman-ezod.xml | 15 |
3 files changed, 63 insertions, 4 deletions
diff --git a/README.markdown b/README.markdown new file mode 100644 index 0000000..ce04317 --- /dev/null +++ b/README.markdown @@ -0,0 +1,44 @@ +# Aaron Mavrinac's Unofficial Portage Overlay + + +## Usage + +Ensure that Layman and Git are installed. + + emerge --noreplace layman git + +Add the following URL to the list of remote overlays in +`/etc/layman/layman.cfg`: + + https://raw.github.com/ezod/ezod-overlay/master/layman-ezod.xml + +Finally, add the overlay. + + layman -L + layman -a ezod + +For more information on overlays, see the [Gentoo overlays users' guide] [1]. + + +## Package List + +* app-emulation/cbmbasic +* dev-embedded/as31 +* dev-python/fuzzpy +* dev-python/polygon +* dev-python/progressbar +* dev-python/visual +* media-libs/artoolkit +* media-sound/pykaraoke +* media-tv/entertainer +* net-misc/bti +* net-p2p/retroshare +* sci-libs/flann +* sci-libs/gandalf +* sci-libs/pcl +* sci-misc/swarm +* x11-misc/tinybat +* x11-wm/wmname + + +[1]: http://www.gentoo.org/proj/en/overlays/userguide.xml @@ -1,10 +1,10 @@ #!/bin/bash for C in * - do if [[ -d $C ]] - then for E in $C/* - do if [[ -d $C ]] - then echo "<li>$E</li>" + do if [[ -d $C ]] && [[ $C != "profiles" ]]; then + for E in $C/* + do if [[ -d $C ]]; then + echo "* $E" fi done fi diff --git a/layman-ezod.xml b/layman-ezod.xml new file mode 100644 index 0000000..18b8b27 --- /dev/null +++ b/layman-ezod.xml @@ -0,0 +1,15 @@ +<?xml version="1.0" ?> +<layman> + <overlay + type = "git" + src = "git://github.com/ezod/ezod-overlay.git" + contact = "mavrinac@gmail.com" + name = "ezod"> + <link> + https://github.com/ezod/ezod-overlay + </link> + <description> + Aaron Mavrinac's personal, unofficial overlay. + </description> + </overlay> +</layman> |