diff options
author | Mounir Lamouri <volkmar@gentoo.org> | 2009-04-20 04:01:42 +0000 |
---|---|---|
committer | Mounir Lamouri <volkmar@gentoo.org> | 2009-04-20 04:01:42 +0000 |
commit | 64368944d19ff019fe3ef6512600816fac39345f (patch) | |
tree | 979491f1517040173d4e72744d861708e1406239 /net-libs/osptoolkit/osptoolkit-3.4.2.ebuild | |
parent | stable amd64, bug 208945 (diff) | |
download | gentoo-2-64368944d19ff019fe3ef6512600816fac39345f.tar.gz gentoo-2-64368944d19ff019fe3ef6512600816fac39345f.tar.bz2 gentoo-2-64368944d19ff019fe3ef6512600816fac39345f.zip |
version bump to 3.4.2 with major rewrite, bug 259311
(Portage version: 2.1.6.7/cvs/Linux ppc)
Diffstat (limited to 'net-libs/osptoolkit/osptoolkit-3.4.2.ebuild')
-rw-r--r-- | net-libs/osptoolkit/osptoolkit-3.4.2.ebuild | 96 |
1 files changed, 96 insertions, 0 deletions
diff --git a/net-libs/osptoolkit/osptoolkit-3.4.2.ebuild b/net-libs/osptoolkit/osptoolkit-3.4.2.ebuild new file mode 100644 index 000000000000..9e8c0be6442d --- /dev/null +++ b/net-libs/osptoolkit/osptoolkit-3.4.2.ebuild @@ -0,0 +1,96 @@ +# 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.4.2.ebuild,v 1.1 2009/04/20 04:01:41 volkmar Exp $ + +EAPI="2" + +inherit eutils multilib toolchain-funcs + +S_DATE="20071227" + +DESCRIPTION="Open Settlement Protocol development kit" +HOMEPAGE="http://www.transnexus.com/OSP%20Toolkit/OSP%20Toolkit%20Documents/OSP%20Toolkit%20Documents.htm" +SRC_URI="mirror://sourceforge/osp-toolkit/OSPToolkit-${PV}.tar.gz + mirror://sourceforge/osp-toolkit/${PN}_${PV}-1.diff.gz" + +LICENSE="BSD" +SLOT="0" +KEYWORDS="~x86" +IUSE="" + +RDEPEND="dev-libs/openssl" +DEPEND="${RDEPEND}" + +S="${WORKDIR}"/TK-${PV//./_}-${S_DATE} + +# TODO: +# LDFLAGS are not used +# generate a shared lib +# create a main Makefile +# => a gentoo-patch ? + +# NOTES: +# debian patch is used atm but will surely not for further versions +# osptest is not a test that can be used for src_test() +# install it only when test is enabled ? + +src_prepare() { + # applying debian patches + epatch "${WORKDIR}"/${PN}_${PV}-1.diff + + # change enroll path from debian paches + sed -i -e "s:^\(ospdir\).*:\1=/usr/lib/${PN}:" \ + bin/enroll.sh || die "patching bin/enroll.sh failed" + + # remove -O and use users CFLAGS, see bug 241034 + sed -i -e "s/ -O//" -e "s/^CFLAGS =/CFLAGS +=/" src/Makefile test/Makefile \ + enroll/Makefile || die "patching Makefiles failed" + + # change lib dir to $(get_libdir) + sed -i -e "s:\$(INSTALL_PATH)/lib:\$(INSTALL_PATH)/$(get_libdir):" \ + src/Makefile || die "patching src/Makefile failed" + + # test.cfg is located in /etc/${PN}/test.cfg + sed -i -e \ + "s:\(^#define CONFIG_FILENAME.*\"\).*\(test.cfg\"\):\1/etc/${PN}/\2:" \ + test/test_app.c || die "patching test/test_app.c failed" + + # configure enroll.sh + sed -i -e "s:^\(OPENSSL_CONF\).*:\1=/etc/ssl/openssl.cnf:" \ + -e "s:^\(RANDFILE\).*:\1=\/etc/${PN}/.rnd:" \ + bin/enroll.sh || die "patching bin/enroll.sh failed" +} + +src_compile() { + local my_cc=$(tc-getCC) + + emake -C src CC="${my_cc}" build || die "emake libosp failed" + emake -C enroll CC="${my_cc}" linux || die "emake enroll failed" + emake -C test CC="${my_cc}" linux || die "emake test failed" +} + +src_install() { + local ospdir="/usr/$(get_libdir)/${PN}" + + emake -C src INSTALL_PATH="${D}"/usr install || die "emake install failed" + + insinto /etc/${PN} + doins bin/test.cfg bin/.rnd || die "doins failed" + + # install enroll and enroll.sh in lib dir to prevent executing them + dodir ${ospdir} + exeinto ${ospdir} + doexe bin/enroll bin/enroll.sh || die "doexe failed" + + # use the symlink to execute enroll.sh + dosym ${ospdir}/enroll.sh /usr/bin/ospenroll || die "dosym failed" + + newbin bin/test_app osptest || die "newbin failed" + + dodoc README.txt RELNOTES.txt || die "dodoc failed" +} + +pkg_postinst() { + elog "OSP test application is now available with 'osptest' command" + elog "OSP enroll application is now available with 'ospenroll' command" +} |