diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-04-06 04:24:01 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-04-06 04:24:01 +0000 |
commit | cdad8cc1503508272afe435960943040cd4493a9 (patch) | |
tree | a68e1ad962d66a6856e510c06458281804738111 /app-misc/boxes | |
parent | Corrective patch for docbook errors. Closes bug #46692. (diff) | |
download | historical-cdad8cc1503508272afe435960943040cd4493a9.tar.gz historical-cdad8cc1503508272afe435960943040cd4493a9.tar.bz2 historical-cdad8cc1503508272afe435960943040cd4493a9.zip |
add inherit eutils
Diffstat (limited to 'app-misc/boxes')
-rw-r--r-- | app-misc/boxes/boxes-1.0.1.ebuild | 19 |
1 files changed, 10 insertions, 9 deletions
diff --git a/app-misc/boxes/boxes-1.0.1.ebuild b/app-misc/boxes/boxes-1.0.1.ebuild index 64e140ea683d..4b8effec451e 100644 --- a/app-misc/boxes/boxes-1.0.1.ebuild +++ b/app-misc/boxes/boxes-1.0.1.ebuild @@ -1,22 +1,23 @@ # Copyright 1999-2004 Gentoo Technologies, Inc. # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/boxes/boxes-1.0.1.ebuild,v 1.14 2004/03/14 10:49:30 mr_bones_ Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/boxes/boxes-1.0.1.ebuild,v 1.15 2004/04/06 04:09:22 vapier Exp $ -DESCRIPTION="boxes draws any kind of boxes around your text!" -SRC_URI="ftp://metalab.unc.edu/pub/Linux/utils/text/${P}.src.tar.gz" -HOMEPAGE="http://www6.informatik.uni-erlangen.de/~tsjensen/boxes/" +inherit eutils -DEPEND="virtual/glibc" +DESCRIPTION="draw any kind of boxes around your text!" +HOMEPAGE="http://www6.informatik.uni-erlangen.de/~tsjensen/boxes/" +SRC_URI="ftp://metalab.unc.edu/pub/Linux/utils/text/${P}.src.tar.gz" -SLOT="0" LICENSE="GPL-2" +SLOT="0" KEYWORDS="x86 ppc alpha" +DEPEND="virtual/glibc" + src_unpack() { unpack ${A} cd ${S} epatch ${FILESDIR}/${P}-gentoo.diff - cd src } @@ -26,9 +27,9 @@ src_compile() { } src_install() { - dobin src/boxes + dobin src/boxes || die doman doc/boxes.1 - dodoc README* COPYING + dodoc README* insinto /usr/share/boxes doins boxes-config } |