Gentoo Archives: gentoo-commits

From: "Santiago M. Mola (coldwind)" <coldwind@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in x11-misc/dzen: ChangeLog dzen-0.8.5.ebuild dzen-0.5.0.ebuild
Date: Sun, 16 Sep 2007 22:03:56
Message-Id: E1IX26E-0001yK-Jb@stork.gentoo.org
1 coldwind 07/09/16 21:56:18
2
3 Modified: ChangeLog
4 Added: dzen-0.8.5.ebuild
5 Removed: dzen-0.5.0.ebuild
6 Log:
7 Bump to 0.8.5 and added minimal and xpm flags. bug #192257 Thanks to MATSUU Takuto <matsuu@g.o>
8 (Portage version: 2.1.2.12)
9
10 Revision Changes Path
11 1.3 x11-misc/dzen/ChangeLog
12
13 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/dzen/ChangeLog?rev=1.3&view=markup
14 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/dzen/ChangeLog?rev=1.3&content-type=text/plain
15 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/dzen/ChangeLog?r1=1.2&r2=1.3
16
17 Index: ChangeLog
18 ===================================================================
19 RCS file: /var/cvsroot/gentoo-x86/x11-misc/dzen/ChangeLog,v
20 retrieving revision 1.2
21 retrieving revision 1.3
22 diff -u -r1.2 -r1.3
23 --- ChangeLog 13 Aug 2007 15:46:13 -0000 1.2
24 +++ ChangeLog 16 Sep 2007 21:56:18 -0000 1.3
25 @@ -1,6 +1,13 @@
26 # ChangeLog for x11-misc/dzen
27 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
28 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/dzen/ChangeLog,v 1.2 2007/08/13 15:46:13 coldwind Exp $
29 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/dzen/ChangeLog,v 1.3 2007/09/16 21:56:18 coldwind Exp $
30 +
31 +*dzen-0.8.5 (16 Sep 2007)
32 +
33 + 16 Sep 2007; Santiago M. Mola <coldwind@g.o> -dzen-0.5.0.ebuild,
34 + +dzen-0.8.5.ebuild:
35 + Bump to 0.8.5 and added minimal and xpm flags. bug #192257 Thanks to MATSUU
36 + Takuto <matsuu@g.o>
37
38 *dzen-0.8.0 (13 Aug 2007)
39
40
41
42
43 1.1 x11-misc/dzen/dzen-0.8.5.ebuild
44
45 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/dzen/dzen-0.8.5.ebuild?rev=1.1&view=markup
46 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/dzen/dzen-0.8.5.ebuild?rev=1.1&content-type=text/plain
47
48 Index: dzen-0.8.5.ebuild
49 ===================================================================
50 # Copyright 1999-2007 Gentoo Foundation
51 # Distributed under the terms of the GNU General Public License v2
52 # $Header: /var/cvsroot/gentoo-x86/x11-misc/dzen/dzen-0.8.5.ebuild,v 1.1 2007/09/16 21:56:18 coldwind Exp $
53
54 inherit toolchain-funcs multilib
55
56 SLOT="2"
57 MY_P="${PN}${SLOT}-${PV}"
58
59 DESCRIPTION="a general purpose messaging, notification and menuing program for
60 X11."
61 HOMEPAGE="http://gotmor.googlepages.com/dzen"
62 SRC_URI="http://gotmor.googlepages.com/${MY_P}.tar.gz"
63
64 LICENSE="MIT"
65 KEYWORDS="~x86"
66 IUSE="minimal xinerama xpm"
67
68 RDEPEND="x11-libs/libX11
69 xinerama? ( x11-libs/libXinerama )
70 xpm? ( x11-libs/libXpm )"
71 DEPEND="${RDEPEND}
72 xinerama? ( x11-proto/xineramaproto )"
73
74 S=${WORKDIR}/${MY_P}
75
76 src_unpack() {
77 unpack ${A}
78 cd "${S}"
79 sed -e "s:/usr/local:/usr:g" \
80 -e "s:-Os:${CFLAGS}:g" \
81 -e "/CC/s:gcc:$(tc-getCC):" \
82 -e "s:/usr/lib :/usr/$(get_libdir):" \
83 -i config.mk gadgets/config.mk || die "sed failed"
84 sed -i -e "/strip/d" Makefile gadgets/Makefile || die "sed failed"
85 if use xinerama ; then
86 sed -e "/^LIBS/s/$/\ -lXinerama/" \
87 -e "/^CFLAGS/s/$/\ -DDZEN_XINERAMA/" \
88 -i config.mk || die "sed failed"
89 fi
90 if use xpm ; then
91 sed -e "/^LIBS/s/$/\ -lXpm/" \
92 -e "/^CFLAGS/s/$/\ -DDZEN_XPM/" \
93 -i config.mk || die "sed failed"
94 fi
95 }
96
97 src_compile() {
98 emake || die "emake failed"
99
100 if ! use minimal ; then
101 cd "${S}"/gadgets
102 emake || die "emake gadgets failed"
103 fi
104 }
105
106 src_install() {
107 emake DESTDIR="${D}" install || die "emake install failed"
108 dodoc README || die
109
110 if ! use minimal ; then
111 cd "${S}"/gadgets
112 emake DESTDIR="${D}" install || die "emake gadgets install failed"
113 dodoc README* || die
114 fi
115 }
116
117
118
119 --
120 gentoo-commits@g.o mailing list