Gentoo Archives: gentoo-commits

From: "Samuli Suominen (drac)" <drac@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in app-misc/emelfm2: ChangeLog emelfm2-0.4.ebuild
Date: Sun, 20 Apr 2008 16:49:54
Message-Id: E1Jncjf-0006XA-MD@stork.gentoo.org
1 drac 08/04/20 16:49:51
2
3 Modified: ChangeLog
4 Added: emelfm2-0.4.ebuild
5 Log:
6 Version bump and ~amd64 keyword wrt #217039, thanks to Tobias Jakobi.
7 (Portage version: 2.1.5_rc4)
8
9 Revision Changes Path
10 1.19 app-misc/emelfm2/ChangeLog
11
12 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/emelfm2/ChangeLog?rev=1.19&view=markup
13 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/emelfm2/ChangeLog?rev=1.19&content-type=text/plain
14 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/emelfm2/ChangeLog?r1=1.18&r2=1.19
15
16 Index: ChangeLog
17 ===================================================================
18 RCS file: /var/cvsroot/gentoo-x86/app-misc/emelfm2/ChangeLog,v
19 retrieving revision 1.18
20 retrieving revision 1.19
21 diff -u -r1.18 -r1.19
22 --- ChangeLog 7 Sep 2007 19:12:16 -0000 1.18
23 +++ ChangeLog 20 Apr 2008 16:49:51 -0000 1.19
24 @@ -1,6 +1,11 @@
25 # ChangeLog for app-misc/emelfm2
26 -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
27 -# $Header: /var/cvsroot/gentoo-x86/app-misc/emelfm2/ChangeLog,v 1.18 2007/09/07 19:12:16 josejx Exp $
28 +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
29 +# $Header: /var/cvsroot/gentoo-x86/app-misc/emelfm2/ChangeLog,v 1.19 2008/04/20 16:49:51 drac Exp $
30 +
31 +*emelfm2-0.4 (20 Apr 2008)
32 +
33 + 20 Apr 2008; Samuli Suominen <drac@g.o> +emelfm2-0.4.ebuild:
34 + Version bump and ~amd64 keyword wrt #217039, thanks to Tobias Jakobi.
35
36 07 Sep 2007; Joseph Jezak <josejx@g.o> emelfm2-0.3.5.ebuild:
37 Marked ~ppc for bug #186562.
38
39
40
41 1.1 app-misc/emelfm2/emelfm2-0.4.ebuild
42
43 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/emelfm2/emelfm2-0.4.ebuild?rev=1.1&view=markup
44 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/app-misc/emelfm2/emelfm2-0.4.ebuild?rev=1.1&content-type=text/plain
45
46 Index: emelfm2-0.4.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/app-misc/emelfm2/emelfm2-0.4.ebuild,v 1.1 2008/04/20 16:49:51 drac Exp $
51
52 inherit eutils toolchain-funcs multilib
53
54 DESCRIPTION="A file manager that implements the popular two-pane design"
55 HOMEPAGE="http://emelfm2.net"
56 SRC_URI="http://${PN}.net/rel/${P}.tar.gz"
57
58 LICENSE="GPL-2"
59 SLOT="0"
60 KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
61 IUSE="acl unicode fam"
62
63 RESTRICT="test"
64
65 DEPEND=">=x11-libs/gtk+-2.12
66 fam? ( virtual/fam )
67 acl? ( sys-apps/acl )"
68 RDEPEND="${DEPEND}
69 dev-util/pkgconfig"
70
71 src_unpack() {
72 unpack ${A}
73 cd "${S}"
74 sed -i -e "s:${PN}/${PN}_48.png:${PN}:" \
75 docs/desktop_environment/${PN}.desktop || die "sed failed."
76 sed -i -e "s:(PREFIX)/lib:(PREFIX)/$(get_libdir):" \
77 Makefile || die "sed failed."
78 }
79
80 src_compile() {
81 # These options need >=x11-libs/gtk-2.12 which we depend upon
82 local myconf="USE_LATEST=1 WITH_TRANSPARENCY=1"
83
84 if use acl; then
85 myconf="${myconf} WITH_ACL=1"
86 fi
87
88 if use unicode; then
89 myconf="${myconf} FILES_UTF8ONLY=1"
90 fi
91
92 if use fam; then
93 if has_version "app-admin/gamin"; then
94 myconf="${myconf} USE_GAMIN=1"
95 else
96 myconf="${myconf} USE_FAM=1"
97 fi
98 else
99 myconf="${myconf} USE_FAM=0"
100 fi
101
102 tc-export CC
103 emake ICON_DIR="/usr/share/pixmaps/${PN}" ${myconf} || die "emake failed."
104 }
105
106 src_install() {
107 emake PREFIX="${D}/usr" install || die "emake install failed."
108 newicon icons/${PN}_48.png ${PN}.png
109 prepalldocs
110 }
111
112
113
114 --
115 gentoo-commits@l.g.o mailing list