blob: 6f6a5417052151a8855360c0145778b99fc8a901 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/chemical-mime-data/chemical-mime-data-0.1.94-r1.ebuild,v 1.3 2014/08/10 20:28:26 slyfox Exp $
EAPI="2"
inherit eutils fdo-mime
DESCRIPTION="A collection of data files to add support for chemical MIME types"
HOMEPAGE="http://chemical-mime.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN/-data/}/${P}.tar.bz2"
LICENSE="LGPL-2.1"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/pkgconfig
x11-misc/shared-mime-info
dev-util/intltool
dev-util/desktop-file-utils
dev-libs/libxslt
media-gfx/imagemagick[xml]
gnome-base/gnome-mime-data"
RDEPEND=""
src_configure() {
econf --disable-update-database --htmldir=/usr/share/doc/${PF}/html
}
src_install() {
emake DESTDIR="${D}" install || die "emake install failed"
}
pkg_postinst() {
fdo-mime_desktop_database_update
fdo-mime_mime_database_update
ewarn "You can ignore any 'Unknown media type in type' warnings."
}
|