summaryrefslogtreecommitdiff
blob: 3dda3e461e819cef4ae984046fd8062789dc5d64 (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
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/tinyca/tinyca-0.6.7.ebuild,v 1.2 2005/05/25 14:07:55 mcummings Exp $


DESCRIPTION="Simple Perl/Tk GUI to manage a small certification authority"
HOMEPAGE="http://tinyca.sm-zone.net/"
SRC_URI="http://tinyca.sm-zone.net/${P}.tar.bz2"

LICENSE="Artistic"
SLOT="0"
KEYWORDS="~x86 ~sparc ~ppc ~amd64"
IUSE=""

RDEPEND=">=dev-libs/openssl-0.9.7d
	dev-perl/Locale-gettext
	>=perl-core/MIME-Base64-2.12
	dev-perl/gtk-perl
	>=dev-perl/perl-tk-800.024"
DEPEND="${RDEPEND}
	>=sys-apps/sed-4"


pkg_setup() {
	if [ ! -r /usr/lib/perl?/vendor_perl/*/*/Gnome.pm ]; then
		die "dev-perl/gtk-perl needs to be emerged with the gnome USE flag"
	fi
}


src_unpack() {
	unpack ${A}
	cd ${S}
	sed -i -e 's:./lib:/usr/share/tinyca/lib:g' \
		-e 's:./templates:/usr/share/tinyca/templates:g' \
		-e 's:./locale:/usr/share/locale:g' tinyca
}

src_compile() {
	make -C po
}

src_install() {
	dodir /usr/bin
	exeinto /usr/share/tinyca/
	doexe tinyca
	dosym /usr/share/tinyca/tinyca /usr/bin/tinyca
	insinto /usr/share/tinyca/lib
	doins lib/*.pm
	insinto /usr/share/tinyca/lib/GUI
	doins lib/GUI/*.pm
	insinto /usr/share/tinyca/templates
	doins templates/*
	insinto /usr/share/
	for LANG in de es cs; do
		dodir /usr/share/locale/${LANG}/LC_MESSAGES/
		insinto /usr/share/locale/${LANG}/LC_MESSAGES/
		doins locale/$LANG/LC_MESSAGES/tinyca.mo
	done

}