diff options
author | Patrick Lauer <patrick@gentoo.org> | 2008-12-07 22:01:35 +0000 |
---|---|---|
committer | Patrick Lauer <patrick@gentoo.org> | 2008-12-07 22:01:35 +0000 |
commit | 6e60bf1102ab45000a59893a58b8c14ccdbba8d2 (patch) | |
tree | c3a3b488f790241b9cfd6a00ffc065095e9c5f8b /x11-themes/fvwm-crystal | |
parent | 07 Dec 2008; Zac Medico <zmedico@gentoo.org> +portage-2.1.6.ebuild: (diff) | |
download | gentoo-2-6e60bf1102ab45000a59893a58b8c14ccdbba8d2.tar.gz gentoo-2-6e60bf1102ab45000a59893a58b8c14ccdbba8d2.tar.bz2 gentoo-2-6e60bf1102ab45000a59893a58b8c14ccdbba8d2.zip |
Bump to 3.0.6, closes #250183
(Portage version: 2.2_rc17/cvs/Linux 2.6.26.5 x86_64)
Diffstat (limited to 'x11-themes/fvwm-crystal')
-rw-r--r-- | x11-themes/fvwm-crystal/ChangeLog | 8 | ||||
-rw-r--r-- | x11-themes/fvwm-crystal/fvwm-crystal-3.0.6.ebuild | 59 |
2 files changed, 66 insertions, 1 deletions
diff --git a/x11-themes/fvwm-crystal/ChangeLog b/x11-themes/fvwm-crystal/ChangeLog index d3e15cd65cd1..c63a562a79d1 100644 --- a/x11-themes/fvwm-crystal/ChangeLog +++ b/x11-themes/fvwm-crystal/ChangeLog @@ -1,6 +1,12 @@ # ChangeLog for x11-themes/fvwm-crystal # Copyright 2000-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/x11-themes/fvwm-crystal/ChangeLog,v 1.57 2008/11/02 16:33:10 jmbsvicetto Exp $ +# $Header: /var/cvsroot/gentoo-x86/x11-themes/fvwm-crystal/ChangeLog,v 1.58 2008/12/07 22:01:35 patrick Exp $ + +*fvwm-crystal-3.0.6 (07 Dec 2008) + + 07 Dec 2008; Patrick Lauer <patrick@gentoo.org> + +fvwm-crystal-3.0.6.ebuild: + Bump to 3.0.6, closes #250183 02 Nov 2008; Jorge Manuel B. S. Vicetto <jmbsvicetto@gentoo.org> metadata.xml: diff --git a/x11-themes/fvwm-crystal/fvwm-crystal-3.0.6.ebuild b/x11-themes/fvwm-crystal/fvwm-crystal-3.0.6.ebuild new file mode 100644 index 000000000000..4a92b9dc605c --- /dev/null +++ b/x11-themes/fvwm-crystal/fvwm-crystal-3.0.6.ebuild @@ -0,0 +1,59 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/fvwm-crystal/fvwm-crystal-3.0.6.ebuild,v 1.1 2008/12/07 22:01:35 patrick Exp $ + +inherit eutils + +DESCRIPTION="Configurable and full featured theme for FVWM, with lots of transparency." +HOMEPAGE="http://fvwm-crystal.org/" +SRC_URI="http://download.gna.org/${PN}/${PV}/${P}.tar.gz + mirror://gentoo/${PN}-3.0.5-envfix.patch.bz2" +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86" +IUSE="" +RDEPEND=">=x11-wm/fvwm-2.5.13 + media-gfx/imagemagick + || ( x11-misc/stalonetray x11-misc/trayer ) + || ( x11-misc/habak x11-misc/hsetroot )" + +src_unpack() { + unpack ${A} + cd "${S}" + #epatch "${WORKDIR}/${PN}-3.0.5-envfix.patch" + sed -e 's/MenuPosition-/MenuPosition_/g' \ + -i bin/fvwm-crystal.apps +} + +src_compile() { + einfo "There is nothing to compile." +} + +src_install() { + einstall || die "einstall failed" + + dodoc AUTHORS README INSTALL NEWS ChangeLog doc/* + + insinto /usr/share/doc/${PF} + doins -r addons + + exeinto /etc/X11/Sessions + doexe "${FILESDIR}"/fvwm-crystal + + insinto /usr/share/xsessions + doins addons/fvwm-crystal.desktop +} + +pkg_postinst() { + elog + elog "After installation, execute following commands:" + elog " $ cp -r /usr/share/doc/${PF}/addons/Xresources ~/.Xresources" + elog " $ cp -r /usr/share/doc/${PF}/addons/Xsession ~/.xinitrc" + elog + elog "Many applications can extend functionality of fvwm-crystal." + elog "They are listed in /usr/share/doc/${PF}/INSTALL.gz." + elog + ewarn "In this release, all hyphens (-) in names of env variables" + ewarn "used by FVWM-Crystal have been replaced by underscores (_)." + ewarn "You may need to update your configuration." +} |