diff options
author | Seemant Kulleen <seemant@gentoo.org> | 2005-03-22 16:00:53 +0000 |
---|---|---|
committer | Seemant Kulleen <seemant@gentoo.org> | 2005-03-22 16:00:53 +0000 |
commit | b4e619885cba9eef260562f08c3b2aff09eac3a0 (patch) | |
tree | 74f078209af9859094005b018acb8e874ccfad54 /x11-themes/gtk-theme-switch/gtk-theme-switch-1.0.1-r2.ebuild | |
parent | Marked 2.1.6 as stable. Added sys-devel/gettext to DEPEND. Removed old versions. (diff) | |
download | gentoo-2-b4e619885cba9eef260562f08c3b2aff09eac3a0.tar.gz gentoo-2-b4e619885cba9eef260562f08c3b2aff09eac3a0.tar.bz2 gentoo-2-b4e619885cba9eef260562f08c3b2aff09eac3a0.zip |
install the man pages as gtk-theme-switch{,2} and put in symlinks for switch{,2} -- these will get put in on non-mac-os systems. Closes bug #63012 by Michal Suchanek <hramrach@centrum.cz>
(Portage version: 2.0.51.19)
Diffstat (limited to 'x11-themes/gtk-theme-switch/gtk-theme-switch-1.0.1-r2.ebuild')
-rw-r--r-- | x11-themes/gtk-theme-switch/gtk-theme-switch-1.0.1-r2.ebuild | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/x11-themes/gtk-theme-switch/gtk-theme-switch-1.0.1-r2.ebuild b/x11-themes/gtk-theme-switch/gtk-theme-switch-1.0.1-r2.ebuild new file mode 100644 index 000000000000..a72f6be849d6 --- /dev/null +++ b/x11-themes/gtk-theme-switch/gtk-theme-switch-1.0.1-r2.ebuild @@ -0,0 +1,44 @@ +# Copyright 1999-2005 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/x11-themes/gtk-theme-switch/gtk-theme-switch-1.0.1-r2.ebuild,v 1.1 2005/03/22 16:00:53 seemant Exp $ + +inherit eutils + +DESCRIPTION="Application for easy change of GTK-Themes" +HOMEPAGE="http://www.muhri.net/nav.php3?node=gts" +SRC_URI="http://www.muhri.net/${P}.tar.gz + mirror://gentoo/${P}b.patch.gz" + +SLOT="1.2" +LICENSE="GPL-2" +KEYWORDS="x86 ppc sparc alpha ~hppa ~amd64 ~ia64" +IUSE="" + +DEPEND="=x11-libs/gtk+-1.2*" + +src_unpack() { + unpack ${A} + cd ${S} + epatch ${WORKDIR}/${P}b.patch +} + +src_compile() { + make || die +} + +src_install () { + dodir usr/share + dodir usr/share/man + dodir usr/share/man/man1 + make PREFIX=${D}usr install || die + mv ${D}usr/man/switch.1* ${D}usr/share/man/man1/ + mv ${D}/usr/share/man/man1/{,gtk-theme-}switch.1* + dodoc ChangeLog readme* +} + +pkg_preinst() { + if [ ! -f ${ROOT}/usr/share/man/man1/switch.1* ] + then + ln -sf ${IMAGE}/usr/share/man/man1/{gtk-theme-,}switch.1.gz + fi +} |