2015-01-09 23:08:52 +03:00
|
|
|
# Copyright 1999-2015 Gentoo Foundation
|
2014-08-31 15:58:11 +04:00
|
|
|
# Distributed under the terms of the GNU General Public License v2
|
2015-08-10 23:59:40 +03:00
|
|
|
# $Id$
|
2014-08-31 15:58:11 +04:00
|
|
|
|
|
|
|
EAPI="5"
|
|
|
|
|
|
|
|
inherit eutils
|
|
|
|
|
|
|
|
DESCRIPTION="A C implementation of MD6"
|
|
|
|
HOMEPAGE="http://groups.csail.mit.edu/cis/md6"
|
|
|
|
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
|
|
|
|
|
|
|
|
LICENSE="MIT"
|
|
|
|
SLOT="0"
|
2015-01-26 19:40:42 +03:00
|
|
|
KEYWORDS="amd64 x86"
|
2014-08-31 15:58:11 +04:00
|
|
|
IUSE=""
|
|
|
|
|
|
|
|
src_prepare() {
|
|
|
|
epatch "${FILESDIR}/${P}-ldflags.patch"
|
|
|
|
epatch "${FILESDIR}/${P}-cflags.patch"
|
|
|
|
epatch "${FILESDIR}/${P}-format-security.patch"
|
|
|
|
}
|
|
|
|
|
|
|
|
src_install() {
|
|
|
|
default
|
|
|
|
newdoc README_Reference.txt README
|
|
|
|
}
|