summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDiego Elio Pettenò <flameeyes@gentoo.org>2006-11-28 00:15:06 +0000
committerDiego Elio Pettenò <flameeyes@gentoo.org>2006-11-28 00:15:06 +0000
commit00ac36863c4e05f6827119585851f3dafea1bd4c (patch)
treea06c4ff61e4d1ab5130f2f33683f21c659f8363c
parentVersion bump (diff)
downloadgentoo-2-00ac36863c4e05f6827119585851f3dafea1bd4c.tar.gz
gentoo-2-00ac36863c4e05f6827119585851f3dafea1bd4c.tar.bz2
gentoo-2-00ac36863c4e05f6827119585851f3dafea1bd4c.zip
Add ~x86-fbsd keyword (at least the style works), cleanup the ebuild not to use the kde eclass, use insinto/doins rather than cp'ing stuff around, use elog instead of einfo, install in /usr rather than in kde's prefix.
(Portage version: 2.1.2_rc2-r2)
-rw-r--r--x11-themes/fusionx-aqua/ChangeLog8
-rw-r--r--x11-themes/fusionx-aqua/files/digest-fusionx-aqua-1.12
-rw-r--r--x11-themes/fusionx-aqua/fusionx-aqua-1.1.ebuild58
3 files changed, 36 insertions, 32 deletions
diff --git a/x11-themes/fusionx-aqua/ChangeLog b/x11-themes/fusionx-aqua/ChangeLog
index 55a82facd522..38dcb1b906ef 100644
--- a/x11-themes/fusionx-aqua/ChangeLog
+++ b/x11-themes/fusionx-aqua/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-themes/fusionx-aqua
# Copyright 2000-2006 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/fusionx-aqua/ChangeLog,v 1.11 2006/01/12 14:48:35 gustavoz Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/fusionx-aqua/ChangeLog,v 1.12 2006/11/28 00:15:06 flameeyes Exp $
+
+ 28 Nov 2006; Diego Pettenò <flameeyes@gentoo.org>
+ fusionx-aqua-1.1.ebuild:
+ Add ~x86-fbsd keyword (at least the style works), cleanup the ebuild not to
+ use the kde eclass, use insinto/doins rather than cp'ing stuff around, use
+ elog instead of einfo, install in /usr rather than in kde's prefix.
12 Jan 2006; Gustavo Zacarias <gustavoz@gentoo.org>
fusionx-aqua-1.1.ebuild:
diff --git a/x11-themes/fusionx-aqua/files/digest-fusionx-aqua-1.1 b/x11-themes/fusionx-aqua/files/digest-fusionx-aqua-1.1
index 700f960a44d6..30bcd5cd0e7c 100644
--- a/x11-themes/fusionx-aqua/files/digest-fusionx-aqua-1.1
+++ b/x11-themes/fusionx-aqua/files/digest-fusionx-aqua-1.1
@@ -1 +1,3 @@
MD5 d2689ccf68343e7e0d05dd4295bbec4c 5296-FusionX-Aqua-1.1.tar.gz 24913
+RMD160 44fa30cd3d61c56993ecafa259ab4ebc31bb6819 5296-FusionX-Aqua-1.1.tar.gz 24913
+SHA256 60fcc7377e6bbd490fa04e240dff08e4d25d9a162bb3a570655cb101b986d67b 5296-FusionX-Aqua-1.1.tar.gz 24913
diff --git a/x11-themes/fusionx-aqua/fusionx-aqua-1.1.ebuild b/x11-themes/fusionx-aqua/fusionx-aqua-1.1.ebuild
index 21e346ecbc3c..687ed8040635 100644
--- a/x11-themes/fusionx-aqua/fusionx-aqua-1.1.ebuild
+++ b/x11-themes/fusionx-aqua/fusionx-aqua-1.1.ebuild
@@ -1,8 +1,6 @@
# Copyright 1999-2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-themes/fusionx-aqua/fusionx-aqua-1.1.ebuild,v 1.16 2006/01/12 14:48:35 gustavoz Exp $
-
-inherit kde
+# $Header: /var/cvsroot/gentoo-x86/x11-themes/fusionx-aqua/fusionx-aqua-1.1.ebuild,v 1.17 2006/11/28 00:15:06 flameeyes Exp $
MY_P="FusionX-Aqua-${PV}"
S=${WORKDIR}/${MY_P}
@@ -13,40 +11,38 @@ SRC_URI="http://www.kdelook.org/content/files/5296-${MY_P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
-KEYWORDS="alpha amd64 ia64 ppc sparc x86"
+KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~x86-fbsd"
IUSE=""
-DEPEND="|| ( kde-base/kwin kde-base/kdebase )"
-
-need-kde 3.1
+RDEPEND="|| ( kde-base/kwin kde-base/kdebase )"
+DEPEND=""
-src_compile() {
- # nothing to compile, but don't want the eclass to try to compile anything
- return 0
-}
+src_compile() { :; }
src_install() {
- mkdir -p ${D}/${KDEDIR}/share/apps/kstyle
- cp -R -f ${WORKDIR}/${MY_P}/pixmaps ${D}/${KDEDIR}/share/apps/kstyle/ || die
- cp -R -f ${WORKDIR}/${MY_P}/themes ${D}/${KDEDIR}/share/apps/kstyle/ || die
- mkdir -p ${D}/${KDEDIR}/share/apps/kwin
- cp -R -f ${WORKDIR}/${MY_P}/icewm-themes ${D}/${KDEDIR}/share/apps/kwin || die
- mkdir -p ${D}/${KDEDIR}/share/apps/kdisplay
- cp -R -f ${WORKDIR}/${MY_P}/color-schemes ${D}/${KDEDIR}/share/apps/kdisplay || die
- dodoc ${WORKDIR}/${MY_P}/{CREDITS,README,CHANGELOG}
+ insinto /usr/share/apps/kstyle
+ doins -r pixmaps themes || die "doins pixmap themes failed"
+
+ insinto /usr/share/apps/kwin
+ doins -r icewm-themes || die "doins icewm-themes failed"
+
+ insinto /usr/share/apps/kdisplay
+ doins -r color-schemes
+
+ dodoc CREDITS README CHANGELOG
}
pkg_postinst() {
- einfo "This theme is an IceWM pixmap theme for KDE."
- einfo ""
- einfo "To use this theme set the following options in the"
- einfo "KDE Control Center:"
- einfo " o Appearance & Themes"
- einfo " - Style = \"fusionx-aqua\""
- einfo " - Window Decorations = \"IceWM\""
- einfo " - Configuration [IceWM] = \"fusionX-aqua\""
- einfo ""
- einfo "To make the theme visible execute the following command"
- einfo "from a shell or the KDE \"Run Command\" dialog:"
- einfo " kinstalltheme"
+ elog "This theme is an IceWM pixmap theme for KDE."
+ elog ""
+ elog "To use this theme set the following options in the"
+ elog "KDE Control Center:"
+ elog " o Appearance & Themes"
+ elog " - Style = \"fusionx-aqua\""
+ elog " - Window Decorations = \"IceWM\""
+ elog " - Configuration [IceWM] = \"fusionX-aqua\""
+ elog ""
+ elog "To make the theme visible execute the following command"
+ elog "from a shell or the KDE \"Run Command\" dialog:"
+ elog " kinstalltheme"
}