blob: 51b59fa44bea386f7502677c8353a40d20e2d972 (
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
|
# Copyright 1999-2009 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-libs/osptoolkit/osptoolkit-3.3.6-r1.ebuild,v 1.1 2009/02/17 05:08:42 darkside Exp $
EAPI="2"
inherit eutils
DESCRIPTION="OSP (Open Settlement Protocol) library"
HOMEPAGE="http://www.transnexus.com/"
SRC_URI="http://www.transnexus.com/OSP%20Toolkit/Toolkits%20for%20Download/OSPToolkit-${PV}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="~x86"
IUSE=""
RDEPEND="dev-libs/openssl"
DEPEND="${RDEPEND}"
S="${WORKDIR}"/TK-${PV//./_}-20060303
src_prepare() {
# change lib dir to $(LIBDIR)
# and use users CFLAGS, see bug #241034
sed -i -e "s:\$(INSTALL_PATH)/lib:\$(INSTALL_PATH)/\$(LIBDIR):" \
-e "s:CFLAGS\t= -O:CFLAGS\t+= :" \
src/Makefile || die "patching src/Makefile failed"
sed -i -e "/CFLAGS /d" enroll/Makefile \
|| die "patching enroll/Makefile failed"
sed -i -e "s/CFLAGS = -g/CFLAGS +=/" test/Makefile \
|| die "patching test/Makefile failed"
}
src_compile() {
emake -C src build || die "emake libosp failed"
emake -C enroll linux || die "emake enroll failed"
emake -C test linux || die "emake test failed"
}
src_install() {
dodir /usr/include /usr/$(get_libdir)
emake -C src INSTALL_PATH="${D}"/usr LIBDIR=$(get_libdir) \
install || die "make install failed"
sed -i -e "s:^\(OPENSSL_CONF\).*:\1=/etc/ssl/openssl.cnf:" \
-e "s:^\(RANDFILE\).*:\1=/etc/ssl/.rnd:" \
bin/enroll.sh || die "patching bin/enroll.sh failed"
dosbin bin/enroll* || die "dosbin failed"
newbin bin/test_app osp_test_app || die "newbin failed"
dodoc *.txt || die "dodoc failed"
insinto /usr/share/doc/${PF}
doins bin/test.cfg || die "doins failed"
}
pkg_postinst() {
elog "The OSP test application is located in ${ROOT}usr/bin/osp_test_app"
elog "See ${ROOT}usr/share/doc/${PF}/test.cfg for a sample test.cfg for osp_test_app"
}
|