diff options
author | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-06-26 00:23:24 +0200 |
---|---|---|
committer | Andreas K. Hüttel <dilfridge@gentoo.org> | 2017-06-26 21:39:26 +0200 |
commit | 19659988b457fe2c56776bd57840647c9aa6b6ec (patch) | |
tree | d4152d12abb77c9574bfeac5b45294c250909099 /net-mail/eps | |
parent | app-office/libreoffice: 5.3.4.2 version bump (diff) | |
download | gentoo-19659988b457fe2c56776bd57840647c9aa6b6ec.tar.gz gentoo-19659988b457fe2c56776bd57840647c9aa6b6ec.tar.bz2 gentoo-19659988b457fe2c56776bd57840647c9aa6b6ec.zip |
net-mail/eps: EAPI bump, bug 605728
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Diffstat (limited to 'net-mail/eps')
-rw-r--r-- | net-mail/eps/eps-1.7-r1.ebuild | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/net-mail/eps/eps-1.7-r1.ebuild b/net-mail/eps/eps-1.7-r1.ebuild new file mode 100644 index 000000000000..f0109531933b --- /dev/null +++ b/net-mail/eps/eps-1.7-r1.ebuild @@ -0,0 +1,37 @@ +# Copyright 1999-2017 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit toolchain-funcs + +DESCRIPTION="Inter7 Email Processing and mht System library" +HOMEPAGE="http://www.inter7.com/eps" +SRC_URI="http://www.inter7.com/eps/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~x86" +IUSE="" + +DEPEND="sys-apps/sed" +RDEPEND="" + +src_prepare() { + sed -i -e 's:/usr:$(DESTDIR)$(prefix):g' \ + -e 's:\(DEFS.*\):\1 $(CFLAGS):' \ + -e 's:$(DEFS):$(DEFS) -fPIC:' \ + -e 's:-shared:-shared -Wl,-soname,libeps.so $(LDFLAGS):' \ + -e 's:cp -pf:cp -f:g' \ + Makefile || die + default +} + +src_compile() { + emake CC="$(tc-getCC)" AR="$(tc-getAR)" +} + +src_install() { + emake prefix=/usr DESTDIR="${D}" LIBDIR="${D}/usr/$(get_libdir)" install + dodoc ChangeLog TODO doc/* +} |