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/ifpgui: ifpgui-0.10.8.ebuild ChangeLog
Date: Fri, 07 Dec 2007 14:00:38
Message-Id: E1J0dkj-0003zr-Cc@stork.gentoo.org
1 coldwind 07/12/07 14:00:29
2
3 Modified: ifpgui-0.10.8.ebuild ChangeLog
4 Log:
5 .desktop file fixed to be standard compliant.
6 (Portage version: 2.1.3.19)
7
8 Revision Changes Path
9 1.4 x11-misc/ifpgui/ifpgui-0.10.8.ebuild
10
11 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ifpgui/ifpgui-0.10.8.ebuild?rev=1.4&view=markup
12 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ifpgui/ifpgui-0.10.8.ebuild?rev=1.4&content-type=text/plain
13 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ifpgui/ifpgui-0.10.8.ebuild?r1=1.3&r2=1.4
14
15 Index: ifpgui-0.10.8.ebuild
16 ===================================================================
17 RCS file: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ifpgui-0.10.8.ebuild,v
18 retrieving revision 1.3
19 retrieving revision 1.4
20 diff -u -r1.3 -r1.4
21 --- ifpgui-0.10.8.ebuild 12 Jan 2007 23:48:44 -0000 1.3
22 +++ ifpgui-0.10.8.ebuild 7 Dec 2007 14:00:28 -0000 1.4
23 @@ -1,6 +1,6 @@
24 # Copyright 1999-2007 Gentoo Foundation
25 # Distributed under the terms of the GNU General Public License v2
26 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ifpgui-0.10.8.ebuild,v 1.3 2007/01/12 23:48:44 nelchael Exp $
27 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ifpgui-0.10.8.ebuild,v 1.4 2007/12/07 14:00:28 coldwind Exp $
28
29 inherit eutils qt3
30
31 @@ -26,11 +26,11 @@
32
33 src_unpack() {
34 unpack ${A}
35 - cd ${S}
36 + cd "${S}"
37
38 # some Doxyfile improvements
39 if use doc; then
40 - epatch ${FILESDIR}/${PN}-doxyfile_fixes.patch
41 + epatch "${FILESDIR}"/${PN}-doxyfile_fixes.patch
42 sed -i -e '/PROJECT_NUMBER/ s/[0..9].*$/'${PV}'/' \
43 -e '/OUTPUT/ s/\/home.*$/\.\/doc/' Doxyfile
44 mkdir doc
45 @@ -38,25 +38,25 @@
46
47 # we want to use system libifp
48 rm -rf src/libifp src/ifp.h
49 - epatch ${FILESDIR}/${PN}-use_system_libifp.patch
50 + epatch "${FILESDIR}"/${PN}-use_system_libifp.patch
51
52 # change path to translation files
53 - epatch ${FILESDIR}/${PN}-translation_files_directory.patch
54 + epatch "${FILESDIR}"/${PN}-translation_files_directory.patch
55
56 # fixing locale
57 - mv ${S}/src/translations/${PN}_da_DK.ts ${S}/src/translations/${PN}_da.ts
58 + mv src/translations/${PN}_da_DK.ts src/translations/${PN}_da.ts
59 }
60
61 src_compile() {
62 - cd ${S}/src
63 + cd src
64 ${QTDIR}/bin/qmake src.pro \
65 QMAKE=${QTDIR}/bin/qmake \
66 QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \
67 QMAKE_RPATH= \
68 "CONFIG += no_fixpath release thread" \
69 || die "qmake src.pro failed"
70 + cd "${S}"
71
72 - cd ${S}
73 ${QTDIR}/bin/qmake ${PN}.pro \
74 QMAKE=${QTDIR}/bin/qmake \
75 QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \
76 @@ -69,7 +69,7 @@
77 use doc && doxygen
78
79 # make translation files if there are any chosen
80 - cd ${S}/src/translations
81 + cd src/translations
82 for i in ${LANGS}; do
83 use linguas_${i} && [ -f ${PN}_${i}.ts ] && ${QTDIR}/bin/lrelease ${PN}_${i}.ts
84 done;
85 @@ -83,19 +83,20 @@
86
87 dodoc README CHANGELOG
88 if use doc; then
89 - cp -ar doc/* ${D}/usr/share/doc/${PF}
90 + cp -ar doc/* "${D}"/usr/share/doc/${PF}
91 fi;
92
93 # install translation files
94 - cd ${S}/src/translations
95 + cd src/translations
96 insinto /usr/share/${PN}/i18n
97 for i in ${LANGS}; do
98 use linguas_${i} && [ -f ${PN}_${i}.qm ] && doins ${PN}_${i}.qm
99 done;
100 + cd "${S}"
101
102 # desktop file and icon
103 - domenu ${FILESDIR}/${PN}.desktop
104 - doicon ${FILESDIR}/${PN}.png
105 + domenu "${FILESDIR}"/${PN}.desktop
106 + doicon "${FILESDIR}"/${PN}.png
107 }
108
109 pkg_postinst() {
110 @@ -109,5 +110,5 @@
111 }
112
113 pkg_config() {
114 - ${ROOT}/usr/share/${PN}/nonroot.sh || die "config failed"
115 + "${ROOT}"/usr/share/${PN}/nonroot.sh || die "config failed"
116 }
117
118
119
120 1.4 x11-misc/ifpgui/ChangeLog
121
122 file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ifpgui/ChangeLog?rev=1.4&view=markup
123 plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ifpgui/ChangeLog?rev=1.4&content-type=text/plain
124 diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/x11-misc/ifpgui/ChangeLog?r1=1.3&r2=1.4
125
126 Index: ChangeLog
127 ===================================================================
128 RCS file: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ChangeLog,v
129 retrieving revision 1.3
130 retrieving revision 1.4
131 diff -u -r1.3 -r1.4
132 --- ChangeLog 12 Jan 2007 23:48:44 -0000 1.3
133 +++ ChangeLog 7 Dec 2007 14:00:28 -0000 1.4
134 @@ -1,6 +1,10 @@
135 # ChangeLog for x11-misc/ifpgui
136 # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2
137 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ChangeLog,v 1.3 2007/01/12 23:48:44 nelchael Exp $
138 +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ChangeLog,v 1.4 2007/12/07 14:00:28 coldwind Exp $
139 +
140 + 07 Dec 2007; Santiago M. Mola <coldwind@g.o> files/ifpgui.desktop,
141 + ifpgui-0.10.8.ebuild:
142 + .desktop file fixed to be standard compliant.
143
144 12 Jan 2007; Krzysiek Pawlik <nelchael@g.o> ifpgui-0.10.8.ebuild:
145 Fix bug #109482 (ebuild ... config).
146
147
148
149 --
150 gentoo-commits@g.o mailing list