summaryrefslogtreecommitdiff
blob: 68c48049cb8711450697e3c0e1c27e78cbf9acc1 (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
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header:  $

EAPI=2

inherit eutils

if [ "${ARCH}" = "amd64" ] ; then
        LNXARCH="linux-x86_64"
else
        LNXARCH="linux-i486"
fi

DESCRIPTION="A free research management tool for desktop & web"
HOMEPAGE="http://www.mendeley.com/"
SRC_URI="http://www.mendeley.com/downloads/linux/${P}-${LNXARCH}.tar.bz2"

LICENSE="Mendelay-EULA"
SLOT="0"
KEYWORDS="~amd64 ~x86"
RESTRICT="mirror strip"
RDEPEND="media-libs/libpng:1.2"

S="${WORKDIR}/${P}-${LNXARCH}"

MENDELEY_INSTALL_DIR="/opt/${PN}"

src_install() {
	# install menu
	domenu ${S}/share/applications/${PN}.desktop || die "Installing desktop files failed."
	# Install commonly used icon sizes
	for res in 16x16 22x22 32x32 48x48 64x64 128x128 ; do
		insinto /usr/share/icons/hicolor/${res}/apps
		doins share/icons/hicolor/${res}/apps/${PN}.png || die "Installing icons failed."
	done
	insinto /usr/share/pixmaps
	doins share/icons/hicolor/48x48/apps/${PN}.png || die "Installing pixmap failed."


	# dodoc
	dodoc ${S}/share/doc/${PN}/* || die "Installing docs failed."

	dodir ${MENDELEY_INSTALL_DIR}
	dodir ${MENDELEY_INSTALL_DIR}/lib
	dodir ${MENDELEY_INSTALL_DIR}/share
	#mv ${S}/share/icons ${D}/usr/share
	mv ${S}/bin ${D}${MENDELEY_INSTALL_DIR} || die "Installing bin failed."
	mv ${S}/lib ${D}${MENDELEY_INSTALL_DIR} || die "Installing libs failed."
	mv ${S}/share/${PN} ${D}${MENDELEY_INSTALL_DIR}/share || die "Installing shared files failed."

	dosym /opt/${PN}/bin/${PN} /opt/bin/${PN} || die "Installing launcher symlinks failed."

}

pkg_postinst() {

	einfo "If you have an error message \"Cannot mix incompatible Qt libraries\","
	einfo "when you run mendeleydesktop, follow the instructions below:"
	echo
	einfo "- To disable the default widget style, run Mendeley with the "
	einfo "'-style cleanlooks' argument (where 'cleanlooks' can also be substituted"
    einfo "with 'gtk' or 'plastique' amongst others)."
	echo
	einfo "- To disable the 'platform integration' plugin (new feature in Qt >= 4.6),"
	einfo "set the QT_PLATFORM_PLUGIN environment variable to some nonsense value "
	einfo "(eg. \"ignoreme\") before running Mendeley."
}