forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
csvfix-1.6.ebuild
44 lines (34 loc) · 1.04 KB
/
csvfix-1.6.ebuild
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit eutils toolchain-funcs versionator vcs-snapshot
MY_PV="$(delete_all_version_separators)"
DESCRIPTION="A stream editor for manipulating CSV files"
HOMEPAGE="https://neilb.bitbucket.org/csvfix/ https://bitbucket.org/neilb/csvfix/"
SRC_URI="https://bitbucket.org/neilb/csvfix/get/version-${PV}.tar.bz2 -> ${P}.tar.bz2
doc? ( https://bitbucket.org/neilb/csvfix/downloads/csvfix_man_html_${MY_PV}0.zip )"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="doc"
RDEPEND="dev-libs/expat"
DEPEND="${RDEPEND}
doc? ( app-arch/unzip )"
src_prepare() {
epatch "${FILESDIR}"/${P}-makefile.patch
epatch "${FILESDIR}"/${PN}-1.10a-tests.patch
edos2unix $(find csvfix/tests -type f)
}
src_compile() {
emake CC="$(tc-getCXX)" AR="$(tc-getAR)" lin
}
src_test() {
cd ${PN}/tests
chmod +x run1 runtests
./runtests || die "tests failed"
}
src_install() {
dobin csvfix/bin/csvfix
use doc && dohtml -r "${WORKDIR}"/${PN}${MY_PV}/*
}