blob: 2d224eb94082616f498c9c726d88445d67350d26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/ustr/ustr-1.0.4.ebuild,v 1.1 2008/10/03 03:15:41 pebenito Exp $
inherit eutils
DESCRIPTION="Low-overhead managed string library for C"
HOMEPAGE="http://www.and.org/ustr"
SRC_URI="ftp://ftp.and.org/pub/james/ustr/${PV}/${P}.tar.bz2"
LICENSE="|| ( BSD-2 MIT LGPL-2 )"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~mips ~ppc ~sparc ~x86"
IUSE=""
src_compile() {
make all all-shared
}
src_install() {
emake install DESTDIR="${D}" || die
dodoc ChangeLog README README-DEVELOPERS AUTHORS NEWS TODO
}
|