blob: b0c603deb7cc09ec74ef478a436048bf44c84548 (
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
|
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-misc/fme/fme-1.1.0.ebuild,v 1.3 2011/03/29 06:13:46 nirbheek Exp $
EAPI="1"
inherit eutils
DESCRIPTION="Graphical menu editor for Fluxbox menus"
HOMEPAGE="http://fme.rhymux.info/"
SRC_URI="http://fme.rhymux.info/stable/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
RDEPEND="sys-devel/bc
>=x11-wm/fluxbox-1.0
>=dev-cpp/gtkmm-2.4:2.4
>=dev-cpp/glibmm-2.14.0:2
>=dev-cpp/libglademm-2.4:2.4"
DEPEND="dev-util/pkgconfig
${RDEPEND}"
src_install() {
emake DESTDIR="${D}" install || die "Install failed"
doicon glade/${PN}.png
make_desktop_entry ${PN} "Fluxbox Menu Editor" ${PN} "Settings;DesktopSettings"
dodoc AUTHORS ChangeLog README TODO
}
|