35 lines
598 B
Bash
35 lines
598 B
Bash
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
inherit git-r3 autotools
|
|
|
|
DESCRIPTION="Send and receive radio fax"
|
|
HOMEPAGE="http://hamfax.sourceforge.net/"
|
|
|
|
SRC_URI=""
|
|
EGIT_REPO_URI="git://git.code.sf.net/p/hamfax/code"
|
|
KEYWORDS=""
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0/${PV}"
|
|
IUSE=""
|
|
|
|
RDEPEND=""
|
|
DEPEND=""
|
|
|
|
REQUIRED_USE=""
|
|
|
|
src_prepare() {
|
|
[[ ${PV} == "9999" ]] && eautoreconf
|
|
eapply ${FILESDIR}/fix_broken_logging.patch
|
|
eapply_user
|
|
}
|
|
|
|
src_install() {
|
|
dobin hamfax
|
|
doman doc/hamfax.1
|
|
dodoc AUTHORS COPYING ChangeLog NEWS README TODO
|
|
}
|