forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gnome-avrdude-0.1.ebuild
50 lines (39 loc) · 985 Bytes
/
gnome-avrdude-0.1.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
45
46
47
48
49
50
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=5
inherit gnome2 autotools
DESCRIPTION="GNOME GUI for avrdude"
HOMEPAGE="http://www.sourceforge.net/projects/gnome-avrdude/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND=">=dev-libs/glib-2
x11-libs/gtk+:2
gnome-base/gconf
gnome-base/libgnome
gnome-base/libgnomeui
gnome-base/libglade
x11-libs/pango"
DEPEND="${RDEPEND}
virtual/pkgconfig"
RDEPEND="${RDEPEND}
dev-embedded/avrdude"
DOCS="AUTHORS NEWS README"
src_prepare() {
sed -i \
-e :a -e '/\\$/N; s/\\\n//; ta' \
-e 's/^gnome_avrdude/#gnome_avrdude/' \
"${S}"/Makefile.am \
|| die "sed failed"
sed -i \
-e 's/Wall\\/Wall/' \
-e 's/^[\t ]*-g//' \
"${S}"/src/Makefile.am \
|| die "sed failed"
# Remove Application category from .desktop file.
sed -i 's/;Application;/;/' gnome-avrdude.desktop
eautoreconf
}