diff options
author | 2004-06-28 03:24:46 +0000 | |
---|---|---|
committer | 2004-06-28 03:24:46 +0000 | |
commit | f42ad013a526c4afd53ebe6f97e0c01cfce45b19 (patch) | |
tree | e8c156ab2338fdbe7afda7c12c80d0f828ccdebd /app-misc/aldo | |
parent | QA - fix use invocation (Manifest recommit) (diff) | |
download | gentoo-2-f42ad013a526c4afd53ebe6f97e0c01cfce45b19.tar.gz gentoo-2-f42ad013a526c4afd53ebe6f97e0c01cfce45b19.tar.bz2 gentoo-2-f42ad013a526c4afd53ebe6f97e0c01cfce45b19.zip |
change glibc to libc and clean up other horribly ugly ebuilds
Diffstat (limited to 'app-misc/aldo')
-rw-r--r-- | app-misc/aldo/aldo-0.0.11.ebuild | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/app-misc/aldo/aldo-0.0.11.ebuild b/app-misc/aldo/aldo-0.0.11.ebuild index db9c104518c0..f9a59f2552b3 100644 --- a/app-misc/aldo/aldo-0.0.11.ebuild +++ b/app-misc/aldo/aldo-0.0.11.ebuild @@ -1,15 +1,17 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/aldo/aldo-0.0.11.ebuild,v 1.5 2004/06/24 22:01:31 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/aldo/aldo-0.0.11.ebuild,v 1.6 2004/06/28 03:23:52 vapier Exp $ -DESCRIPTION="ALDO is a morse tutor." -HOMEPAGE="http://aldo.sourceforge.net" +DESCRIPTION="a morse tutor" +HOMEPAGE="http://aldo.sourceforge.net/" SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2" + LICENSE="GPL-2" SLOT="0" KEYWORDS="x86" IUSE="" -DEPEND="virtual/glibc" + +DEPEND="virtual/libc" src_compile() { make libs || die @@ -17,7 +19,6 @@ src_compile() { } src_install() { - mkdir -p ${D}/usr/bin - cp aldo ${D}/usr/bin + dobin aldo || die dodoc README* TODO VERSION AUTHORS ChangeLog } |