blob: 104f3f31389f7339b84355293f921a0606fccf9c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
# Copyright 1999-2004 Gentoo Foundation
# 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.17 2004/06/24 22:04:02 agriffis Exp $
inherit eutils
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"
LICENSE="GPL-2"
SLOT="0"
IUSE=""
KEYWORDS="x86 ppc alpha"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}-gentoo.diff
}
src_compile() {
make clean || die
make CFLAGS="$CFLAGS -I. -Iregexp" || die
}
src_install() {
dobin src/boxes || die
doman doc/boxes.1
dodoc README*
insinto /usr/share/boxes
doins boxes-config
}
|