blob: 190f3713c12454f9732947e41e9287d1b1ce73cf (
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
|
# Copyright 1999-2001 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License, v2 or later
# Michael Conrad Tilstra <michael@gentoo.org> <tadpol@tadpol.org>
# $Header: /var/cvsroot/gentoo-x86/app-misc/boxes/boxes-1.0.1.ebuild,v 1.3 2001/08/11 04:42:31 drobbins Exp $
A=${P}.src.tar.gz
S=${WORKDIR}/${P}
DESCRIPTION="boxes draws any kind of boxes around your text!"
SRC_URI="ftp://metalab.unc.edu/pub/Linux/utils/text/${A}"
HOMEPAGE="http://www6.informatik.uni-erlangen.de/~tsjensen/boxes/"
DEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
try patch -p1 < ${FILESDIR}/${P}-gentoo.diff
cd src
}
src_compile() {
try make clean
try make CFLAGS="$CFLAGS -I. -Iregexp"
}
src_install() {
dobin src/boxes
doman doc/boxes.1
dodoc README* COPYING
insinto /usr/share/boxes
doins boxes-config
}
|