0
|
1 # Copyright 1999-2004 Gentoo Foundation
|
|
2 # Distributed under the terms of the GNU General Public License v2
|
|
3 # $Header: $
|
|
4
|
|
5 inherit eutils
|
|
6
|
|
7 DESCRIPTION="Fast, secure and complete C string library"
|
|
8 HOMEPAGE="http://www.and.org/vstr/"
|
|
9 SRC_URI="ftp://ftp.and.org/pub/james/vstr/${PV}/${P}.tar.gz"
|
|
10 LICENSE="LGPL-2.1"
|
|
11 SLOT="0"
|
|
12 KEYWORDS="~x86"
|
|
13 IUSE=""
|
|
14
|
|
15 src_unpack() {
|
|
16 unpack ${A}
|
|
17 epatch ${FILESDIR}/${P}-Makefile.in.patch
|
|
18 }
|
|
19
|
|
20 src_compile() {
|
|
21 econf || die
|
|
22 emake || die "emake failed"
|
|
23 }
|
|
24
|
|
25 src_install() {
|
|
26 einstall || die
|
|
27 }
|
|
28
|