Hi there ! Here is a small ebuild for DarkSnow 0.4.4 (from http://darksnow.radiolivre.org) which is a GUI front-end to (& so depend on) DarkIce.
Created attachment 29433 [details] darksnow-0.4.4 This ebuild was written by scout@scoutheeten.com ("scout" in the forum) from http://www.scoutheeten.com
http://darksnow.radiolivre.org/index.en.html
I have this one. Checking the package out right now.
Alright, in cvs :). Couple of things you might want to pass on though: -KEYWORDS="x86" +KEYWORDS="~x86" new packages are always ~arch marked unless a dev decides it should be stable (most likely after he/she has ran it through extensive testing beforehand) - sed -i "s:^PREFIX=.*:PREFIX=${D}:" Makefile + sed -i "s:^PREFIX=.*:PREFIX=${D}/usr:" Makefile + sed -i "s:^INTLPREFIX=.*:INTLPREFIX=${D}/usr:" Makefile PREFIX should be ${D}/usr not just ${D} in situations like this. INTLPREFIX was added just to be safe. src_install () { - make install + dobin darksnow + cd ${S}/documentation + dodoc * } installation process was weird, so I decided to do it somewhat manually. Other than that, good work :).