diff options
-rw-r--r-- | app-misc/aldo/aldo-0.0.11.ebuild | 13 | ||||
-rw-r--r-- | app-misc/away/away-0.9.5.ebuild | 15 |
2 files changed, 15 insertions, 13 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 } diff --git a/app-misc/away/away-0.9.5.ebuild b/app-misc/away/away-0.9.5.ebuild index a329b0acc959..fd8df20d81fc 100644 --- a/app-misc/away/away-0.9.5.ebuild +++ b/app-misc/away/away-0.9.5.ebuild @@ -1,18 +1,20 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/away/away-0.9.5.ebuild,v 1.4 2004/06/24 22:02:18 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/away/away-0.9.5.ebuild,v 1.5 2004/06/28 03:24:46 vapier Exp $ DESCRIPTION="Terminal locking program with few additional features" HOMEPAGE="http://unbeatenpath.net/software/away/" SRC_URI="http://unbeatenpath.net/software/away/${P}.tar.bz2" + LICENSE="GPL-2" SLOT="0" KEYWORDS="x86 sparc" -DEPEND="virtual/glibc" -RDEPEND=">=sys-libs/pam-0.75" IUSE="" -src_unpack () { +DEPEND="virtual/libc" +RDEPEND=">=sys-libs/pam-0.75" + +src_unpack() { unpack ${A} sed -i "s:-O2:${CFLAGS}:" ${S}/Makefile } @@ -21,9 +23,8 @@ src_compile() { } src_install() { - into /usr - dobin away + dobin away || die insinto /etc/pam.d ; newins data/away.pam away doman doc/* - dodoc BUGS AUTHORS COPYING NEWS README TODO data/awayrc + dodoc BUGS AUTHORS NEWS README TODO data/awayrc } |