blob: 0a6a3ccf7c2f006be982ec21a7dccc00dc999dac (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/chemtool/chemtool-1.6.14.ebuild,v 1.1 2014/02/11 19:00:09 jlec Exp $
EAPI=5
AUTOTOOLS_AUTORECONF=true
inherit autotools-utils eutils
DESCRIPTION="A GTK program for drawing organic molecules"
HOMEPAGE="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/"
SRC_URI="http://ruby.chemie.uni-freiburg.de/~martin/chemtool/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="emf gnome nls"
RDEPEND="
dev-libs/glib:2
media-gfx/transfig
x11-libs/gtk+:2
x11-libs/libX11
x11-libs/pango
emf? ( media-libs/libemf )"
DEPEND="${RDEPEND}
virtual/pkgconfig"
AUTOTOOLS_IN_SOURCE_BUILD=1
PATCHES=(
"${FILESDIR}"/1.6.13-no-underlinking.patch
)
src_configure() {
local myeconfargs=(
--without-kdedir
$(use_with gnome gnomedir /usr)
$(use_enable emf)
--enable-undo
--enable-menu
)
autotools-utils_src_configure
}
src_install() {
autotools-utils_src_install
insinto /usr/share/${PN}/examples
doins "${S}"/examples/*
if ! use nls; then rm -rf "${ED}"/usr/share/locale || die; fi
insinto /usr/share/pixmaps
doins chemtool.xpm
make_desktop_entry ${PN} Chemtool ${PN} "Education;Science;Chemistry"
}
|