diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-06-28 03:45:42 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-06-28 03:45:42 +0000 |
commit | ed34e375961396c31c32ea54685059966d51665e (patch) | |
tree | 318409b3268d5b5cf241ef4ccc6ea1c977e22b7c /app-misc/jive | |
parent | QA - fix use invocation (diff) | |
download | historical-ed34e375961396c31c32ea54685059966d51665e.tar.gz historical-ed34e375961396c31c32ea54685059966d51665e.tar.bz2 historical-ed34e375961396c31c32ea54685059966d51665e.zip |
change glibc to libc and clean up other horribly ugly ebuilds
Diffstat (limited to 'app-misc/jive')
-rw-r--r-- | app-misc/jive/jive-1.1.ebuild | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/app-misc/jive/jive-1.1.ebuild b/app-misc/jive/jive-1.1.ebuild index c4828ec99057..d04e2c36d1e5 100644 --- a/app-misc/jive/jive-1.1.ebuild +++ b/app-misc/jive/jive-1.1.ebuild @@ -1,25 +1,26 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/jive/jive-1.1.ebuild,v 1.6 2004/06/24 22:17:10 agriffis Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/jive/jive-1.1.ebuild,v 1.7 2004/06/28 03:45:42 vapier Exp $ DESCRIPTION="Filter that converts English text to Jive, by Adam Douglas" HOMEPAGE="http://dev.gentoo.org/~brad/" SRC_URI="http://dev.gentoo.org/~brad/${P}.tar.gz" + LICENSE="public-domain" SLOT="0" KEYWORDS="x86 ppc ~sparc" IUSE="" -DEPEND="virtual/glibc" -#RDEPEND="" + +DEPEND="virtual/libc" S=${WORKDIR}/${PN} src_compile() { - emake + emake || die } src_install() { - dobin jive + dobin jive || die doman jive.1 dodoc README POSTER } |