diff options
author | Santiago M. Mola <coldwind@gentoo.org> | 2007-12-07 14:00:29 +0000 |
---|---|---|
committer | Santiago M. Mola <coldwind@gentoo.org> | 2007-12-07 14:00:29 +0000 |
commit | 463fdb0a43466200429a73b7b38751c2a63e8534 (patch) | |
tree | 842e16b2835cfd06bf665a867da49edb34a5344c /x11-misc | |
parent | Stable on ppc64; bug #198911 (diff) | |
download | gentoo-2-463fdb0a43466200429a73b7b38751c2a63e8534.tar.gz gentoo-2-463fdb0a43466200429a73b7b38751c2a63e8534.tar.bz2 gentoo-2-463fdb0a43466200429a73b7b38751c2a63e8534.zip |
.desktop file fixed to be standard compliant.
(Portage version: 2.1.3.19)
Diffstat (limited to 'x11-misc')
-rw-r--r-- | x11-misc/ifpgui/ChangeLog | 6 | ||||
-rw-r--r-- | x11-misc/ifpgui/files/ifpgui.desktop | 5 | ||||
-rw-r--r-- | x11-misc/ifpgui/ifpgui-0.10.8.ebuild | 29 |
3 files changed, 22 insertions, 18 deletions
diff --git a/x11-misc/ifpgui/ChangeLog b/x11-misc/ifpgui/ChangeLog index b90b76118952..3237b7cb4726 100644 --- a/x11-misc/ifpgui/ChangeLog +++ b/x11-misc/ifpgui/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for x11-misc/ifpgui # Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ChangeLog,v 1.3 2007/01/12 23:48:44 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ChangeLog,v 1.4 2007/12/07 14:00:28 coldwind Exp $ + + 07 Dec 2007; Santiago M. Mola <coldwind@gentoo.org> files/ifpgui.desktop, + ifpgui-0.10.8.ebuild: + .desktop file fixed to be standard compliant. 12 Jan 2007; Krzysiek Pawlik <nelchael@gentoo.org> ifpgui-0.10.8.ebuild: Fix bug #109482 (ebuild ... config). diff --git a/x11-misc/ifpgui/files/ifpgui.desktop b/x11-misc/ifpgui/files/ifpgui.desktop index 0cbc9b669892..80ac10d43e2e 100644 --- a/x11-misc/ifpgui/files/ifpgui.desktop +++ b/x11-misc/ifpgui/files/ifpgui.desktop @@ -6,7 +6,6 @@ Comment=Graphicsl user interface (GUI) for iRiver's iFP flash player Comment[pl]=Graficzny interfejs użytkownika (GUI) dla odtwarzaczy flash serii iFP iRiver Exec=ifpgui Type=Application -Encoding=UTF-8 Terminal=false -Categories=Application;AudioVideo; -Icon=ifpgui.png +Categories=AudioVideo; +Icon=ifpgui diff --git a/x11-misc/ifpgui/ifpgui-0.10.8.ebuild b/x11-misc/ifpgui/ifpgui-0.10.8.ebuild index 9b02ce6ab517..c06a9f95e452 100644 --- a/x11-misc/ifpgui/ifpgui-0.10.8.ebuild +++ b/x11-misc/ifpgui/ifpgui-0.10.8.ebuild @@ -1,6 +1,6 @@ # Copyright 1999-2007 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ifpgui-0.10.8.ebuild,v 1.3 2007/01/12 23:48:44 nelchael Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-misc/ifpgui/ifpgui-0.10.8.ebuild,v 1.4 2007/12/07 14:00:28 coldwind Exp $ inherit eutils qt3 @@ -26,11 +26,11 @@ DEPEND="${RDEPEND} src_unpack() { unpack ${A} - cd ${S} + cd "${S}" # some Doxyfile improvements if use doc; then - epatch ${FILESDIR}/${PN}-doxyfile_fixes.patch + epatch "${FILESDIR}"/${PN}-doxyfile_fixes.patch sed -i -e '/PROJECT_NUMBER/ s/[0..9].*$/'${PV}'/' \ -e '/OUTPUT/ s/\/home.*$/\.\/doc/' Doxyfile mkdir doc @@ -38,25 +38,25 @@ src_unpack() { # we want to use system libifp rm -rf src/libifp src/ifp.h - epatch ${FILESDIR}/${PN}-use_system_libifp.patch + epatch "${FILESDIR}"/${PN}-use_system_libifp.patch # change path to translation files - epatch ${FILESDIR}/${PN}-translation_files_directory.patch + epatch "${FILESDIR}"/${PN}-translation_files_directory.patch # fixing locale - mv ${S}/src/translations/${PN}_da_DK.ts ${S}/src/translations/${PN}_da.ts + mv src/translations/${PN}_da_DK.ts src/translations/${PN}_da.ts } src_compile() { - cd ${S}/src + cd src ${QTDIR}/bin/qmake src.pro \ QMAKE=${QTDIR}/bin/qmake \ QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \ QMAKE_RPATH= \ "CONFIG += no_fixpath release thread" \ || die "qmake src.pro failed" + cd "${S}" - cd ${S} ${QTDIR}/bin/qmake ${PN}.pro \ QMAKE=${QTDIR}/bin/qmake \ QMAKE_CXXFLAGS_RELEASE="${CXXFLAGS}" \ @@ -69,7 +69,7 @@ src_compile() { use doc && doxygen # make translation files if there are any chosen - cd ${S}/src/translations + cd src/translations for i in ${LANGS}; do use linguas_${i} && [ -f ${PN}_${i}.ts ] && ${QTDIR}/bin/lrelease ${PN}_${i}.ts done; @@ -83,19 +83,20 @@ src_install() { dodoc README CHANGELOG if use doc; then - cp -ar doc/* ${D}/usr/share/doc/${PF} + cp -ar doc/* "${D}"/usr/share/doc/${PF} fi; # install translation files - cd ${S}/src/translations + cd src/translations insinto /usr/share/${PN}/i18n for i in ${LANGS}; do use linguas_${i} && [ -f ${PN}_${i}.qm ] && doins ${PN}_${i}.qm done; + cd "${S}" # desktop file and icon - domenu ${FILESDIR}/${PN}.desktop - doicon ${FILESDIR}/${PN}.png + domenu "${FILESDIR}"/${PN}.desktop + doicon "${FILESDIR}"/${PN}.png } pkg_postinst() { @@ -109,5 +110,5 @@ pkg_postinst() { } pkg_config() { - ${ROOT}/usr/share/${PN}/nonroot.sh || die "config failed" + "${ROOT}"/usr/share/${PN}/nonroot.sh || die "config failed" } |