Gentoo Archives: gentoo-commits

From: "Michael Sterrett (mr_bones_)" <mr_bones_@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/libjsw: libjsw-1.5.8.ebuild ChangeLog
Date: Tue, 28 May 2013 23:37:46
Message-Id: 20130528233740.271992171D@flycatcher.gentoo.org
1 mr_bones_ 13/05/28 23:37:40
2
3 Modified: libjsw-1.5.8.ebuild ChangeLog
4 Log:
5 fix soname QA warning; tidy
6
7 (Portage version: 2.1.11.62/cvs/Linux x86_64, unsigned Manifest commit)
8
9 Revision Changes Path
10 1.7 media-libs/libjsw/libjsw-1.5.8.ebuild
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjsw/libjsw-1.5.8.ebuild?rev=1.7&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjsw/libjsw-1.5.8.ebuild?rev=1.7&content-type=text/plain
14 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjsw/libjsw-1.5.8.ebuild?r1=1.6&r2=1.7
15
16 Index: libjsw-1.5.8.ebuild
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/media-libs/libjsw/libjsw-1.5.8.ebuild,v
19 retrieving revision 1.6
20 retrieving revision 1.7
21 diff -u -r1.6 -r1.7
22 --- libjsw-1.5.8.ebuild 15 Jul 2010 09:04:12 -0000 1.6
23 +++ libjsw-1.5.8.ebuild 28 May 2013 23:37:39 -0000 1.7
24 @@ -1,8 +1,8 @@
25 -# Copyright 1999-2010 Gentoo Foundation
26 +# Copyright 1999-2013 Gentoo Foundation
27 # Distributed under the terms of the GNU General Public License v2
28 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libjsw/libjsw-1.5.8.ebuild,v 1.6 2010/07/15 09:04:12 fauli Exp $
29 -EAPI=2
30 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libjsw/libjsw-1.5.8.ebuild,v 1.7 2013/05/28 23:37:39 mr_bones_ Exp $
31
32 +EAPI=2
33 inherit eutils multilib
34
35 DESCRIPTION="provide a uniform API and user configuration for joysticks and game controllers"
36 @@ -19,25 +19,27 @@
37 src_prepare() {
38 cp include/jsw.h libjsw/
39 epatch "${FILESDIR}"/${P}-build.patch
40 - bunzip2 libjsw/man/* jscalibrator/jscalibrator.1.bz2 || die "bunzip failed"
41 + bunzip2 libjsw/man/* || die
42 }
43
44 src_compile() {
45 + LDFLAGS+=" -Wl,-soname,libjsw.so.1"
46 cd libjsw
47 - emake || die "main build failed"
48 + emake || die
49 ln -s libjsw.so.${PV} libjsw.so
50 }
51
52 src_install() {
53 insinto /usr/include
54 - doins include/jsw.h || die "doins jsw.h failed"
55 + doins include/jsw.h || die
56
57 dodoc README
58 docinto jswdemos
59 dodoc jswdemos/*
60
61 cd "${S}"/libjsw
62 - dolib.so libjsw.so.${PV} || die "dolib.so"
63 + dolib.so libjsw.so.${PV} || die
64 dosym libjsw.so.${PV} /usr/$(get_libdir)/libjsw.so
65 + dosym libjsw.so.${PV} /usr/$(get_libdir)/libjsw.so.1
66 doman man/*
67 }
68
69
70
71 1.22 media-libs/libjsw/ChangeLog
72
73 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjsw/ChangeLog?rev=1.22&view=markup
74 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjsw/ChangeLog?rev=1.22&content-type=text/plain
75 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/libjsw/ChangeLog?r1=1.21&r2=1.22
76
77 Index: ChangeLog
78 ===================================================================
79 RCS file: /var/cvsroot/gentoo-x86/media-libs/libjsw/ChangeLog,v
80 retrieving revision 1.21
81 retrieving revision 1.22
82 diff -u -r1.21 -r1.22
83 --- ChangeLog 15 Jul 2010 09:04:12 -0000 1.21
84 +++ ChangeLog 28 May 2013 23:37:39 -0000 1.22
85 @@ -1,6 +1,9 @@
86 # ChangeLog for media-libs/libjsw
87 -# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
88 -# $Header: /var/cvsroot/gentoo-x86/media-libs/libjsw/ChangeLog,v 1.21 2010/07/15 09:04:12 fauli Exp $
89 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
90 +# $Header: /var/cvsroot/gentoo-x86/media-libs/libjsw/ChangeLog,v 1.22 2013/05/28 23:37:39 mr_bones_ Exp $
91 +
92 + 28 May 2013; Michael Sterrett <mr_bones_@g.o> libjsw-1.5.8.ebuild:
93 + fix soname QA warning; tidy
94
95 15 Jul 2010; Christian Faulhammer <fauli@g.o> libjsw-1.5.8.ebuild:
96 stable x86, bug 325157