blob: 3c559c06f41cb142c2e60c4610bc971ef268562e (
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
|
# Copyright 1999-2012 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=4
inherit autotools eutils
MY_P="${PN}-v${PV}"
DESCRIPTION="A collection of high performance c-string transformations"
HOMEPAGE="http://code.google.com/p/stringencoders/"
SRC_URI="http://${PN}.googlecode.com/files/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~amd64"
IUSE=""
S=${WORKDIR}/${MY_P}
src_prepare() {
epatch "${FILESDIR}"/${P}-werror.patch
eautoreconf
}
# default `make check` doesn't work
src_test() {
emake test
}
|