forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
beaver-0.4.1.ebuild
51 lines (40 loc) · 926 Bytes
/
beaver-0.4.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
51
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=5
inherit eutils gnome2-utils
DESCRIPTION="Beaver is an Early AdVanced EditoR"
HOMEPAGE="http://beaver-editor.sourceforge.net/"
SRC_URI="mirror://sourceforge/beaver-editor/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug doc"
RDEPEND=">=dev-libs/glib-2.14:2
>=x11-libs/gtk+-2.10:2"
DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )
virtual/pkgconfig
dev-util/intltool
sys-devel/gettext"
src_prepare() {
epatch "${FILESDIR}"/${PN}-0.4.1-desktop-file-validate.patch
}
src_configure() {
econf \
$(use_enable doc doxygen-doc) \
$(use_enable debug)
}
DOCS=( AUTHORS ChangeLog NEWS README THANKS TODO )
src_install() {
default
prune_libtool_files
}
pkg_preinst() {
gnome2_icon_savelist
}
pkg_postinst() {
gnome2_icon_cache_update
}
pkg_postrm() {
gnome2_icon_cache_update
}