Gentoo Archives: gentoo-commits

From: "Mike Frysinger (vapier)" <vapier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in sys-libs/gpm: ChangeLog gpm-1.20.5.ebuild
Date: Thu, 19 Jun 2008 01:13:46
Message-Id: E1K98ia-0003GX-HF@stork.gentoo.org
1 vapier 08/06/19 01:13:40
2
3 Modified: ChangeLog
4 Added: gpm-1.20.5.ebuild
5 Log:
6 Version bump #228065 by Conrad Kostecki.
7 (Portage version: 2.2_pre8/cvs/Linux 2.6.25 x86_64)
8
9 Revision Changes Path
10 1.70 sys-libs/gpm/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gpm/ChangeLog?rev=1.70&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gpm/ChangeLog?rev=1.70&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gpm/ChangeLog?r1=1.69&r2=1.70
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/sys-libs/gpm/ChangeLog,v
19 retrieving revision 1.69
20 retrieving revision 1.70
21 diff -u -r1.69 -r1.70
22 --- ChangeLog 8 Jun 2008 21:17:53 -0000 1.69
23 +++ ChangeLog 19 Jun 2008 01:13:40 -0000 1.70
24 @@ -1,6 +1,12 @@
25 # ChangeLog for sys-libs/gpm
26 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/sys-libs/gpm/ChangeLog,v 1.69 2008/06/08 21:17:53 vapier Exp $
28 +# $Header: /var/cvsroot/gentoo-x86/sys-libs/gpm/ChangeLog,v 1.70 2008/06/19 01:13:40 vapier Exp $
29 +
30 +*gpm-1.20.5 (19 Jun 2008)
31 +
32 + 19 Jun 2008; Mike Frysinger <vapier@g.o>
33 + +files/gpm-1.20.5-abi.patch, +gpm-1.20.5.ebuild:
34 + Version bump #228065 by Conrad Kostecki.
35
36 08 Jun 2008; Mike Frysinger <vapier@g.o> gpm-1.20.4.ebuild:
37 Append _GNU_SOURCE to CPPFLAGS to fix building with glibc-2.8 #225375 by
38
39
40
41 1.1 sys-libs/gpm/gpm-1.20.5.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gpm/gpm-1.20.5.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/sys-libs/gpm/gpm-1.20.5.ebuild?rev=1.1&content-type=text/plain
45
46 Index: gpm-1.20.5.ebuild
47 ===================================================================
48 # Copyright 1999-2008 Gentoo Foundation
49 # Distributed under the terms of the GNU General Public License v2
50 # $Header: /var/cvsroot/gentoo-x86/sys-libs/gpm/gpm-1.20.5.ebuild,v 1.1 2008/06/19 01:13:40 vapier Exp $
51
52 # emacs support disabled due to Bug 99533
53
54 inherit eutils toolchain-funcs flag-o-matic
55
56 DESCRIPTION="Console-based mouse driver"
57 HOMEPAGE="http://linux.schottelius.org/gpm/"
58 SRC_URI="http://linux.schottelius.org/gpm/archives/${P}.tar.lzma"
59
60 LICENSE="GPL-2"
61 SLOT="0"
62 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
63 IUSE="selinux"
64
65 DEPEND="sys-libs/ncurses
66 app-arch/lzma-utils"
67 RDEPEND="selinux? ( sec-policy/selinux-gpm )"
68
69 src_unpack() {
70 unpack ${A}
71 cd "${S}"
72 epatch "${FILESDIR}"/${PN}-1.20.5-abi.patch
73 }
74
75 src_compile() {
76 econf \
77 --libdir=/$(get_libdir) \
78 --sysconfdir=/etc/gpm \
79 || die "econf failed"
80
81 # workaround broken release
82 find -name '*.o' | xargs rm
83 emake clean || die
84 emake -j1 -C doc || die
85
86 emake EMACS=: || die "emake failed"
87 }
88
89 src_install() {
90 emake install DESTDIR="${D}" EMACS=: ELISP="" || die "make install failed"
91
92 dosym libgpm.so.1.20.0 /$(get_libdir)/libgpm.so.1
93 dosym libgpm.so.1 /$(get_libdir)/libgpm.so
94 dodir /usr/$(get_libdir)
95 mv "${D}"/$(get_libdir)/libgpm.a "${D}"/usr/$(get_libdir)/ || die
96 gen_usr_ldscript libgpm.so
97
98 insinto /etc/gpm
99 doins conf/gpm-*.conf
100
101 dodoc BUGS Changes README TODO
102 dodoc doc/Announce doc/FAQ doc/README*
103
104 newinitd "${FILESDIR}"/gpm.rc6 gpm
105 newconfd "${FILESDIR}"/gpm.conf.d gpm
106 }
107
108
109
110 --
111 gentoo-commits@l.g.o mailing list