From b0f5b330f45966b9c01d4f6fae74f2b6e9314215 Mon Sep 17 00:00:00 2001 From: Aaron Mavrinac Date: Mon, 20 Feb 2012 11:08:24 -0500 Subject: Make the repository self-contained. --- README.markdown | 44 ++++++++++++++++++++++++++++++++++++++++++++ genlist.sh | 8 ++++---- layman-ezod.xml | 15 +++++++++++++++ 3 files changed, 63 insertions(+), 4 deletions(-) create mode 100644 README.markdown create mode 100644 layman-ezod.xml 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 diff --git a/genlist.sh b/genlist.sh index ca6b8b2..6d1a4ca 100755 --- a/genlist.sh +++ b/genlist.sh @@ -1,10 +1,10 @@ #!/bin/bash for C in * - do if [[ -d $C ]] - then for E in $C/* - do if [[ -d $C ]] - then echo "
  • $E
  • " + 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 @@ + + + + + https://github.com/ezod/ezod-overlay + + + Aaron Mavrinac's personal, unofficial overlay. + + + -- cgit v1.2.3-65-gdbad