blob: b55dbd281a9c9cf8c6f08858a2ee7e5c83f97910 (
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
|
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-sci/chemtool/chemtool-1.6.ebuild,v 1.6 2003/12/02 10:27:16 phosphan Exp $
[ -n "`use kde`" ] && inherit kde-functions
inherit eutils
DESCRIPTION="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="x86"
IUSE="gnome kde nls"
DEPEND=">=media-gfx/transfig-3.2.3d
=x11-libs/gtk+-1*
>=media-libs/libemf-1.0
sys-apps/supersed
nls? ( sys-devel/gettext )"
src_unpack() {
unpack ${A}
cd ${S}
epatch ${FILESDIR}/${P}.patch
}
src_compile() {
local mykdedir="${KDEDIR}"
if [ -z "${mykdedir}" ]; then mykdedir="bogus_kde"; fi
local config_opts
config_opts="--enable-emf"
if [ "`use kde`" ]; then
need-kde 2
config_opts="${config_opts} --with-kdedir=${mykdedir}" ;
else
config_opts="${config_opts} --without-kdedir"
fi
if [ "`use gnome`" ] ; then
config_opts="${config_opts} --with-gnomedir=/usr" ;
else
config_opts="${config_opts} --without-gnomedir" ;
fi
if [ "`use nls`" ] ; then
config_opts="${config_opts} --enable-locales \
--with-localedir=/usr/share/locale"
else
config_opts="${config_opts} --disable-locales \
--without-localedir"
fi
econf ${config_opts} \
|| die "./configure failed"
emake || die "make failed"
}
src_install() {
local mykdedir="${KDEDIR}"
if [ -z "${mykdedir}" ]; then mykdedir="bogus_kde"; fi
local sharedirs="applnk/Graphics mimelnk/application icons/hicolor/32x32/mimetypes"
for dir in ${sharedirs}; do
dodir ${mykdedir}/share/${dir}
done
dodir /usr/share/mime-types
dodir /usr/share/pixmaps/mc
make DESTDIR="${D}" install || die "make install failed"
if ! use kde; then
rm -rf ${D}/${mykdedir}
fi
if ! use gnome; then
rm -rf ${D}/usr/share/pixmaps ${D}/usr/share/mime-types
fi
dodoc ChangeLog INSTALL README TODO
insinto /usr/share/${PN}/examples
doins ${S}/examples/*
}
|