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

EAPI="2"

inherit eutils autotools fdo-mime

DESCRIPTION="Application to organise documents or references, and to generate BibTeX files"
HOMEPAGE="http://icculus.org/referencer/"
SRC_URI="http://icculus.org/${PN}/downloads/${P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""

RDEPEND=">=app-text/poppler-0.12.3-r3
	>=dev-cpp/gtkmm-2.8
	>=dev-cpp/libgnomeuimm-2.14.0
	>=dev-cpp/gnome-vfsmm-2.14.0
	>=dev-cpp/libglademm-2.6.0
	>=dev-cpp/gconfmm-2.14.0
	dev-libs/boost
	dev-lang/python"

DEPEND="${RDEPEND}
	>=app-text/gnome-doc-utils-0.3.2
	virtual/pkgconfig
	>=dev-lang/perl-5.8.1
	dev-perl/libxml-perl
	dev-util/intltool
	app-text/rarian"

src_prepare() {
	epatch "${FILESDIR}"/referencer-1.1.6-poppler016.patch
	eautoreconf
}

src_configure() {
	econf --disable-update-mime-database --enable-python
}

src_install() {
	emake install DESTDIR="${D}" || die "emake failed"
	dodoc AUTHORS ChangeLog NEWS README TODO || die
}

pkg_postinst() {
	fdo-mime_mime_database_update
}

pkg_postrm() {
	fdo-mime_mime_database_update
}