Propose ebuild for uni2ascii-4.18 form http://billposer.org/Software/uni2ascii.html which provides conversion in both directions between UTF-8 Unicode and many 7-bit ASCII equivalents. Reproducible: Always
Created attachment 385918 [details] uni2ascii-4.18.ebuild
Created attachment 385920 [details] Manifest
Comment on attachment 385918 [details] uni2ascii-4.18.ebuild ># Copyright 1999-2014 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >EAPI=4 That should be 5 for new ebuilds. >DESCRIPTION="Provides conversion in both directions between UTF-8 Unicode and many 7-bit ASCII equivalents" Why not "more than thirty" like the HOMEPAGE says? >HOMEPAGE="http://billposer.org/Software/uni2ascii.html" >SRC_URI="http://billposer.org/Software/Downloads/${P}.tar.bz2" > >LICENSE="GPL-3" >SLOT="0" >KEYWORDS="~amd64" >IUSE="-tk" Why is it disabled by default? In any case, this USE flag should be documented in metadata.xml, I guess. >DEPEND="" No need to set an empty DEPEND. >RDEPEND="tk? ( > dev-lang/tcl > dev-lang/tk > dev-tcltk/tablelist >)" > >src_install() { > emake DESTDIR="${D}" install That's the default emake ... install, so just put "default".
(In reply to Jeroen Roovers from comment #3) > That should be 5 for new ebuilds. Agree. It will be fixed. > Why not "more than thirty" like the HOMEPAGE says? I thought it wasn't significant information. > In any case, this USE flag should be > documented in metadata.xml, I guess. "tk" USE flag has obvious meaning I think. > No need to set an empty DEPEND. Agree. It will be fixed. > That's the default emake ... install, so just put "default". Written according to the Gentoo Development Guide. What you mean "default"? Just "emake install"?