Gentoo Archives: gentoo-commits

From: "Pacho Ramos (pacho)" <pacho@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-libs/ffcall: ffcall-1.10-r4.ebuild ChangeLog
Date: Sat, 08 Feb 2014 13:42:25
Message-Id: 20140208134221.1A6722004C@flycatcher.gentoo.org
1 pacho 14/02/08 13:42:21
2
3 Modified: ChangeLog
4 Added: ffcall-1.10-r4.ebuild
5 Log:
6 Drop .la files (#343973)
7
8 (Portage version: 2.2.8-r1/cvs/Linux x86_64, signed Manifest commit with key A188FBD4)
9
10 Revision Changes Path
11 1.43 dev-libs/ffcall/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ffcall/ChangeLog?rev=1.43&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ffcall/ChangeLog?rev=1.43&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ffcall/ChangeLog?r1=1.42&r2=1.43
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/dev-libs/ffcall/ChangeLog,v
20 retrieving revision 1.42
21 retrieving revision 1.43
22 diff -u -r1.42 -r1.43
23 --- ChangeLog 29 Jan 2014 14:21:48 -0000 1.42
24 +++ ChangeLog 8 Feb 2014 13:42:20 -0000 1.43
25 @@ -1,6 +1,11 @@
26 # ChangeLog for dev-libs/ffcall
27 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/dev-libs/ffcall/ChangeLog,v 1.42 2014/01/29 14:21:48 voyageur Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/dev-libs/ffcall/ChangeLog,v 1.43 2014/02/08 13:42:20 pacho Exp $
30 +
31 +*ffcall-1.10-r4 (08 Feb 2014)
32 +
33 + 08 Feb 2014; Pacho Ramos <pacho@g.o> +ffcall-1.10-r4.ebuild:
34 + Drop .la files (#343973)
35
36 29 Jan 2014; Bernard Cafarelli <voyageur@g.o> metadata.xml:
37 Move to maintainer-needed
38
39
40
41 1.1 dev-libs/ffcall/ffcall-1.10-r4.ebuild
42
43 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ffcall/ffcall-1.10-r4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/ffcall/ffcall-1.10-r4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: ffcall-1.10-r4.ebuild
47 ===================================================================
48 # Copyright 1999-2014 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/dev-libs/ffcall/ffcall-1.10-r4.ebuild,v 1.1 2014/02/08 13:42:20 pacho Exp $
51
52 EAPI=5
53 inherit eutils flag-o-matic
54
55 # CLISP maintains ffcall now
56 CLISP_PACKAGE="clisp-2.41"
57
58 DESCRIPTION="foreign function call libraries"
59 HOMEPAGE="http://www.haible.de/bruno/packages-ffcall.html"
60 SRC_URI="mirror://sourceforge/clisp/${CLISP_PACKAGE}.tar.bz2"
61
62 # "Ffcall is under GNU GPL. As a special exception, if used in GNUstep
63 # or in derivate works of GNUstep, the included parts of ffcall are
64 # under GNU LGPL." -ffcall author
65 LICENSE="|| ( GPL-2 LGPL-2 )"
66 SLOT="0"
67 KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~sparc-solaris ~x86-solaris"
68 IUSE=""
69
70 S=${WORKDIR}/${CLISP_PACKAGE}/${PN}
71
72 DEPEND=""
73 RDEPEND=""
74
75 src_prepare() {
76 epatch "${FILESDIR}"/${PN}-make-jN.patch
77 }
78
79 src_configure() {
80 append-flags -fPIC
81
82 # Doc goes in datadir
83 econf \
84 --datadir="${EPREFIX}"/usr/share/doc/${PF} \
85 --enable-shared \
86 --disable-static
87 }
88
89 src_compile() {
90 # Because CHOST is set to (for example)
91 # alphaev67-unknown-linux-gnu, CPU gets set to alphaev67 which
92 # doesn't work in the Makefile (29 Jan 2004 agriffis)
93 local cpu_setting
94 [[ "${ARCH}" == "alpha" ]] && cpu_setting='CPU=alpha'
95
96 emake ${cpu_setting}
97 }
98
99 src_install() {
100 dodoc NEWS README
101 dodir /usr/share/man
102 default
103 prune_libtool_files
104 }