forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gaffitter-0.6.0-r1.ebuild
39 lines (32 loc) · 1018 Bytes
/
gaffitter-0.6.0-r1.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
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI="2"
inherit toolchain-funcs
SV="0.1.0"
SCRIPTS="scripts-${SV}"
DESCRIPTION="Genetic Algorithm File Fitter"
HOMEPAGE="http://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"
src_prepare() {
sed -i -e "/^INCLUDES\ =.*/d" \
-e "s/^CXXFLAGS\ =.*/CXXFLAGS\ =\ ${CXXFLAGS} ${LDFLAGS}/" \
-e "s/^CXX\ =.*/CXX\ =\ $(tc-getCXX)/" src/Makefile || die "sed failed"
if use scripts; then
sed -i -re "s:--data((cd)|(dvd)):--data:" "${WORKDIR}"/${PN}/${SCRIPTS}/gaff-k3b || die
fi
}
src_install() {
dobin src/gaffitter || die "dobin failed"
if use scripts; then
dobin "${WORKDIR}"/${PN}/${SCRIPTS}/gaff-** || die
dobin "${WORKDIR}"/${PN}/${SCRIPTS}/nautilus/nautilus-* || die
fi
dodoc AUTHORS README || die "dodoc failed"
}