blob: 2a5034f245728cfe95ae4d1066bae3691c4f9e6f (
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
# Copyright 1999-2023 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=8
inherit toolchain-funcs
SV="0.1.0"
SCRIPTS="scripts-${SV}"
DESCRIPTION="Genetic Algorithm File Fitter"
HOMEPAGE="https://gaffitter.sourceforge.net/"
SRC_URI="
mirror://sourceforge/${PN}/${P}.tar.bz2
scripts? ( mirror://sourceforge/${PN}/scripts/${SV}/${SCRIPTS}.tar.bz2 )"
LICENSE="GPL-3"
SLOT="0"
KEYWORDS="amd64 x86"
IUSE="scripts"
PATCHES=( "${FILESDIR}"/${PN}-0.6.0-fix-build-system.patch )
src_prepare() {
default
if use scripts; then
sed -i -re "s:--data((cd)|(dvd)):--data:" "${WORKDIR}"/${PN}/${SCRIPTS}/gaff-k3b || die
fi
}
src_configure() {
tc-export CXX
}
src_install() {
dobin src/gaffitter
einstalldocs
if use scripts; then
dobin "${WORKDIR}"/${PN}/${SCRIPTS}/gaff-**
dobin "${WORKDIR}"/${PN}/${SCRIPTS}/nautilus/nautilus-*
fi
}
|