Gentoo Archives: gentoo-commits

From: "Jeff Horelick (jdhore)" <jdhore@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in net-irc/bitchx: bitchx-1.2.ebuild ChangeLog
Date: Wed, 02 Jan 2013 00:26:53
Message-Id: 20130102002639.E71132171E@flycatcher.gentoo.org
1 jdhore 13/01/02 00:26:39
2
3 Modified: ChangeLog
4 Added: bitchx-1.2.ebuild
5 Log:
6 Version bump
7
8 (Portage version: 2.2.0_alpha149/cvs/Linux i686, signed Manifest commit with key 23E9E900)
9
10 Revision Changes Path
11 1.71 net-irc/bitchx/ChangeLog
12
13 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/ChangeLog?rev=1.71&view=markup
14 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/ChangeLog?rev=1.71&content-type=text/plain
15 diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/ChangeLog?r1=1.70&r2=1.71
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/net-irc/bitchx/ChangeLog,v
20 retrieving revision 1.70
21 retrieving revision 1.71
22 diff -u -r1.70 -r1.71
23 --- ChangeLog 21 Dec 2011 19:52:31 -0000 1.70
24 +++ ChangeLog 2 Jan 2013 00:26:39 -0000 1.71
25 @@ -1,6 +1,12 @@
26 # ChangeLog for net-irc/bitchx
27 -# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/net-irc/bitchx/ChangeLog,v 1.70 2011/12/21 19:52:31 binki Exp $
29 +# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
30 +# $Header: /var/cvsroot/gentoo-x86/net-irc/bitchx/ChangeLog,v 1.71 2013/01/02 00:26:39 jdhore Exp $
31 +
32 +*bitchx-1.2 (02 Jan 2013)
33 +
34 + 02 Jan 2013; Jeff Horelick <jdhore@g.o> +bitchx-1.2.ebuild,
35 + +files/bitchx-1.2-build.patch:
36 + Version bump
37
38 21 Dec 2011; Nathan Phillip Brink <binki@g.o> bitchx-1.1-r4.ebuild:
39 Update SRC_URI to point to tarball's new home.
40
41
42
43 1.1 net-irc/bitchx/bitchx-1.2.ebuild
44
45 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/bitchx-1.2.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-irc/bitchx/bitchx-1.2.ebuild?rev=1.1&content-type=text/plain
47
48 Index: bitchx-1.2.ebuild
49 ===================================================================
50 # Copyright 1999-2013 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/net-irc/bitchx/bitchx-1.2.ebuild,v 1.1 2013/01/02 00:26:39 jdhore Exp $
53
54 EAPI=4
55
56 inherit flag-o-matic eutils
57
58 MY_PN=BitchX
59 MY_P=${MY_PN}-${PV}-final
60 S=${WORKDIR}/${MY_PN}-${PV}
61 DESCRIPTION="An IRC Client"
62 HOMEPAGE="http://www.bitchx.ca/"
63 SRC_URI="http://bitchx.ca/${MY_P}.tar.gz"
64
65 LICENSE="GPL-2"
66 SLOT="0"
67 KEYWORDS="~amd64 ~x86"
68 IUSE="ipv6 ssl"
69
70 DEPEND="sys-libs/ncurses
71 ssl? ( dev-libs/openssl )"
72 RDEPEND="${DEPEND}"
73
74 src_prepare() {
75 sed -i \
76 -e "s/#undef LATIN1/#define LATIN1 ON/;" \
77 include/config.h
78
79 epatch ${FILESDIR}/${P}-build.patch
80 # Do epatch_user since even BX-1.2 has A LOT of patches and A LOT
81 # of behaviour controlled by manually editing config.h
82 epatch_user
83 }
84
85 src_configure() {
86 # Disable CDROM or else it will take over your CDROM drive
87 local myconf="--disable-cdrom --disable-sound --without-gtk"
88
89 econf \
90 --with-plugins \
91 $(use_with ssl) \
92 $(use_enable ipv6) \
93 ${myconf}
94 }
95
96 src_compile() {
97 replace-flags -O[3-9] -O2
98 append-flags -fno-strict-aliasing
99
100 emake
101 emake -C contrib vh1
102 }
103
104 src_install () {
105 einstall
106 dobin contrib/vh1
107 dosym BitchX /usr/bin/bitchx
108
109 cd "${S}"
110 dodoc bugs Changelog README* IPv6-support
111
112 cd "${S}"/doc
113 insinto /usr/include/X11/bitmaps
114 doins BitchX.xpm
115 dodoc *.txt */*.txt
116 dohtml -r *
117
118 cd "${S}"/dll
119 docinto plugins
120 dodoc nap/README.nap
121 newdoc acro/README README.acro
122 newdoc arcfour/README README.arcfour
123 newdoc blowfish/README README.blowfish
124 newdoc qbx/README README.qbx
125 }