diff options
author | Torsten Veller <tove@gentoo.org> | 2011-01-03 09:36:11 +0000 |
---|---|---|
committer | Torsten Veller <tove@gentoo.org> | 2011-01-03 09:36:11 +0000 |
commit | 44d997205762c4db1a17697f9b24ede9e971b81b (patch) | |
tree | 21be88e9cef0ce50ffca8804c159b574eb3ea17c /app-shells/zsh | |
parent | Version bump (#349291) (diff) | |
download | gentoo-2-44d997205762c4db1a17697f9b24ede9e971b81b.tar.gz gentoo-2-44d997205762c4db1a17697f9b24ede9e971b81b.tar.bz2 gentoo-2-44d997205762c4db1a17697f9b24ede9e971b81b.zip |
Cleanup
(Portage version: 2.2.0_alpha10/cvs/Linux x86_64)
Diffstat (limited to 'app-shells/zsh')
-rw-r--r-- | app-shells/zsh/ChangeLog | 9 | ||||
-rw-r--r-- | app-shells/zsh/files/prompt_gentoo_setup | 45 | ||||
-rw-r--r-- | app-shells/zsh/files/zprofile | 41 | ||||
-rw-r--r-- | app-shells/zsh/files/zsh-4.3.4-configure-changequote.patch | 25 | ||||
-rw-r--r-- | app-shells/zsh/files/zsh-4.3.4-mkmakemod.patch | 15 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.3.10-r1.ebuild | 185 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.3.10.ebuild | 191 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.3.4-r1.ebuild | 175 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.3.5.ebuild | 150 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.3.6.ebuild | 176 | ||||
-rw-r--r-- | app-shells/zsh/zsh-4.3.9.ebuild | 191 |
11 files changed, 8 insertions, 1195 deletions
diff --git a/app-shells/zsh/ChangeLog b/app-shells/zsh/ChangeLog index 04d5f0c60faf..e21cf276357f 100644 --- a/app-shells/zsh/ChangeLog +++ b/app-shells/zsh/ChangeLog @@ -1,6 +1,13 @@ # ChangeLog for app-shells/zsh # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.158 2011/01/03 09:31:37 tove Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/ChangeLog,v 1.159 2011/01/03 09:36:11 tove Exp $ + + 03 Jan 2011; Torsten Veller <tove@gentoo.org> -zsh-4.3.4-r1.ebuild, + -files/zsh-4.3.4-configure-changequote.patch, + -files/zsh-4.3.4-mkmakemod.patch, -zsh-4.3.5.ebuild, -zsh-4.3.6.ebuild, + -zsh-4.3.9.ebuild, -zsh-4.3.10.ebuild, -zsh-4.3.10-r1.ebuild, + -files/prompt_gentoo_setup, -files/zprofile: + Cleanup *zsh-4.3.11 (03 Jan 2011) diff --git a/app-shells/zsh/files/prompt_gentoo_setup b/app-shells/zsh/files/prompt_gentoo_setup deleted file mode 100644 index abc3ceb154c5..000000000000 --- a/app-shells/zsh/files/prompt_gentoo_setup +++ /dev/null @@ -1,45 +0,0 @@ -# gentoo prompt theme - -prompt_gentoo_help () { - cat <<'EOF' -This prompt is color-scheme-able. You can invoke it thus: - - prompt gentoo [<promptcolor> [<usercolor> [<rootcolor>]]] - -EOF -} - -prompt_gentoo_setup () { - prompt_gentoo_prompt=${1:-'blue'} - prompt_gentoo_user=${2:-'green'} - prompt_gentoo_root=${3:-'red'} - - if [ "$USER" = 'root' ] - then - base_prompt="%{$fg_bold[$prompt_gentoo_root]%}%m%{$reset_color%} " - else - base_prompt="%{$fg_bold[$prompt_gentoo_user]%}%n@%m%{$reset_color%} " - fi - post_prompt="%{$reset_color%}" - - local color="%{*}" - base_prompt_no_color="${(S)base_prompt//${~color}/}" - post_prompt_no_color="${(S)post_prompt//${~color}/}" - - setopt noxtrace localoptions - local base_prompt_expanded_no_color base_prompt_etc - local prompt_length space_left - - base_prompt_expanded_no_color=$(print -P "$base_prompt_no_color") - base_prompt_etc=$(print -P "$base_prompt%(4~|...|)%3~") - prompt_length=${#base_prompt_etc} - path_prompt="%{$fg_bold[$prompt_gentoo_prompt]%}%1~" - PS1="$base_prompt$path_prompt %# $post_prompt" - PS2="$base_prompt$path_prompt %_> $post_prompt" - PS3="$base_prompt$path_prompt ?# $post_prompt" - - precmd () { } - preexec () { } -} - -prompt_gentoo_setup "$@" diff --git a/app-shells/zsh/files/zprofile b/app-shells/zsh/files/zprofile deleted file mode 100644 index 73a7cf83d0f4..000000000000 --- a/app-shells/zsh/files/zprofile +++ /dev/null @@ -1,41 +0,0 @@ -# /etc/zsh/zprofile -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/files/zprofile,v 1.5 2008/05/23 12:02:51 tove Exp $ - -# Load environment settings from profile.env, which is created by -# env-update from the files in /etc/env.d -if [ -e /etc/profile.env ] ; then - . /etc/profile.env -fi - -# You should override these in your ~/.zprofile (or equivalent) for per-user -# settings. For system defaults, you can add a new file in /etc/profile.d/. -export EDITOR=${EDITOR:-/bin/nano} -export PAGER=${PAGER:-/usr/bin/less} - -# 077 would be more secure, but 022 is generally quite realistic -umask 022 - -# Set up PATH depending on whether we're root or a normal user. -# There's no real reason to exclude sbin paths from the normal user, -# but it can make tab-completion easier when they aren't in the -# user's PATH to pollute the executable namespace. -# -# It is intentional in the following line to use || instead of -o. -# This way the evaluation can be short-circuited and calling whoami is -# avoided. -if [ "$EUID" = "0" ] || [ "$USER" = "root" ] ; then - PATH="/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:${ROOTPATH}" -else - PATH="/usr/local/bin:/usr/bin:/bin:${PATH}" -fi -export PATH -unset ROOTPATH - -shopts=$- -setopt nullglob -for sh in /etc/profile.d/*.sh ; do - [ -r "$sh" ] && . "$sh" -done -unsetopt nullglob -set -$shopts -unset sh shopts diff --git a/app-shells/zsh/files/zsh-4.3.4-configure-changequote.patch b/app-shells/zsh/files/zsh-4.3.4-configure-changequote.patch deleted file mode 100644 index 2abad2462ee2..000000000000 --- a/app-shells/zsh/files/zsh-4.3.4-configure-changequote.patch +++ /dev/null @@ -1,25 +0,0 @@ -diff -ur a/configure.ac b/configure.ac ---- a/configure.ac 2007-01-05 13:58:04 +0000 -+++ b/configure.ac 2007-08-16 09:17:29 +0100 -@@ -2249,6 +2249,10 @@ - zsh_cv_sys_elf=yes, - zsh_cv_sys_elf=no, - zsh_cv_sys_elf=yes)]) -+ -+ # We use [0-9]* in case statements, so need to change quoting -+ changequote(, ) -+ - DL_EXT="${DL_EXT=so}" - if test x$zsh_cv_sys_elf = xyes; then - case "$host" in -@@ -2352,6 +2356,10 @@ - esac - ;; - esac -+ -+ # Done with our shell code, so restore autotools quoting -+ changequote([, ]) -+ - AC_CACHE_CHECK(if your dlsym() needs a leading underscore, - zsh_cv_func_dlsym_needs_underscore, - [echo failed >conftestval && cat >conftest.c <<EOM diff --git a/app-shells/zsh/files/zsh-4.3.4-mkmakemod.patch b/app-shells/zsh/files/zsh-4.3.4-mkmakemod.patch deleted file mode 100644 index f8dea0397a9b..000000000000 --- a/app-shells/zsh/files/zsh-4.3.4-mkmakemod.patch +++ /dev/null @@ -1,15 +0,0 @@ -bug #254348 ---- a/Src/mkmakemod.sh -+++ b/Src/mkmakemod.sh -@@ -111,10 +111,7 @@ - sed -e '/^#/d' -e 's/ .*/ /' -e 's/^name=/ /'`" - module_list="${bin_mods}${dyn_mods}" - -- # check 2.13, 2.50, and 2.60 syntaxes -- if grep '%@D@%D%' config.status >/dev/null || -- grep ',@D@,D,' config.status >/dev/null || -- grep ',@D@,|#_!!_#|D,' config.status >/dev/null; then -+ if grep '^#define DYNAMIC ' config.h >/dev/null; then - is_dynamic=true - else - is_dynamic=false diff --git a/app-shells/zsh/zsh-4.3.10-r1.ebuild b/app-shells/zsh/zsh-4.3.10-r1.ebuild deleted file mode 100644 index f45ba4182243..000000000000 --- a/app-shells/zsh/zsh-4.3.10-r1.ebuild +++ /dev/null @@ -1,185 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.3.10-r1.ebuild,v 1.1 2010/05/02 18:41:39 tove Exp $ - -EAPI=2 - -# doc package for -dev version exists? -doc_available=true - -inherit flag-o-matic eutils multilib - -MY_PV=${PV/_p/-dev-} -S=${WORKDIR}/${PN}-${MY_PV} - -zsh_ftp="ftp://ftp.zsh.org/pub" - -if [[ ${PV} != "${MY_PV}" ]] ; then - ZSH_URI="${zsh_ftp}/development/${PN}-${MY_PV}.tar.bz2" - if ${doc_available} ; then - ZSH_DOC_URI="${zsh_ftp}/development/${PN}-${MY_PV}-doc.tar.bz2" - else - ZSH_DOC_URI="${zsh_ftp}/${PN}-${PV%_*}-doc.tar.bz2" - fi -else - ZSH_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 - ${zsh_ftp}/${P}.tar.bz2" - ZSH_DOC_URI="${zsh_ftp}/${PN}-${PV%_*}-doc.tar.bz2" -fi - -LOVERS_PV=0.5.orig -LOVERS_P=zsh-lovers-${LOVERS_PV} -LOVERS_URI="http://deb.grml.org/pool/main/z/zsh-lovers" - -DESCRIPTION="UNIX Shell similar to the Korn shell" -HOMEPAGE="http://www.zsh.org/" -SRC_URI="${ZSH_URI} - examples? ( ${LOVERS_URI}/zsh-lovers_${LOVERS_PV}.tar.gz ) - doc? ( ${ZSH_DOC_URI} )" - -LICENSE="ZSH gdbm? ( GPL-2 )" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" -IUSE="caps debug doc examples gdbm maildir pcre static unicode" - -RDEPEND=">=sys-libs/ncurses-5.1 - caps? ( sys-libs/libcap ) - pcre? ( >=dev-libs/libpcre-3.9 - static? ( >=dev-libs/libpcre-3.9[static-libs] ) ) - gdbm? ( sys-libs/gdbm )" -DEPEND="|| ( sys-apps/groff app-doc/heirloom-doctools ) - ${RDEPEND}" - -src_prepare() { - # fix zshall problem with soelim - ln -s Doc man1 - mv Doc/zshall.1 Doc/zshall.1.soelim - soelim Doc/zshall.1.soelim > Doc/zshall.1 - - epatch "${FILESDIR}/${PN}"-init.d-gentoo.diff -} - -src_configure() { - local myconf= - - if use static ; then - myconf="${myconf} --disable-dynamic" - append-ldflags -static - fi - if use debug ; then - myconf="${myconf} \ - --enable-zsh-debug \ - --enable-zsh-mem-debug \ - --enable-zsh-mem-warning \ - --enable-zsh-secure-free \ - --enable-zsh-hash-debug" - fi - - econf \ - --bindir=/bin \ - --libdir=/usr/$(get_libdir) \ - --enable-etcdir=/etc/zsh \ - --enable-fndir=/usr/share/zsh/${PV%_*}/functions \ - --enable-site-fndir=/usr/share/zsh/site-functions \ - --enable-function-subdirs \ - --with-term-lib="ncursesw ncurses" \ - --with-tcsetpgrp \ - $(use_enable maildir maildir-support) \ - $(use_enable pcre) \ - $(use_enable caps cap) \ - $(use_enable unicode multibyte) \ - $(use_enable gdbm ) \ - ${myconf} - - if use static ; then - # compile all modules statically, see Bug #27392 - # removed cap and curses because linking failes - sed -i \ - -e "s,link=no,link=static,g" \ - -e "/^name=zsh\/cap/s,link=static,link=no," \ - -e "/^name=zsh\/curses/s,link=static,link=no," \ - "${S}"/config.modules || die - if ! use gdbm ; then - sed -i '/^name=zsh\/db\/gdbm/s,link=static,link=no,' \ - "${S}"/config.modules || die - fi -# else -# sed -i -e "/LIBS/s%-lpcre%/usr/$(get_libdir)/libpcre.a%" Makefile - fi -} - -src_test() { - local i - addpredict /dev/ptmx - for i in C02cond.ztst Y01completion.ztst Y02compmatch.ztst Y03arguments.ztst ; do - rm "${S}"/Test/${i} || die - done - make check || die "make check failed" -} - -src_install() { - emake DESTDIR="${D}" install install.info || die - - insinto /etc/zsh - doins "${FILESDIR}"/zprofile || die - - keepdir /usr/share/zsh/site-functions - insinto /usr/share/zsh/${PV%_*}/functions/Prompts - newins "${FILESDIR}"/prompt_gentoo_setup-1 prompt_gentoo_setup || die - - # install miscellaneous scripts; bug #54520 - local i - sed -i -e "s:/usr/local:/usr:g" "${S}"/{Util,Misc}/* || die - for i in Util Misc ; do - insinto /usr/share/zsh/${PV%_*}/${i} - doins ${i}/* || die - done - - dodoc ChangeLog* META-FAQ NEWS README config.modules - - if use doc ; then - pushd "${WORKDIR}/${PN}-${PV%_*}" >/dev/null - dohtml -r Doc/* || die - insinto /usr/share/doc/${PF} - doins Doc/zsh.{dvi,pdf} || die - popd >/dev/null - fi - - if use examples ; then - pushd "${WORKDIR}/${LOVERS_P/.orig/}" >/dev/null -# asciidoc zsh-lovers.1.txt -# mv zsh-lovers.1.html zsh-lovers.html -# a2x -f manpage zsh-lovers.1.txt -# a2x -f pdf zsh-lovers.1.txt -# mv zsh-lovers.1.pdf zsh-lovers.pdf - - doman zsh-lovers.1 || die "doman zsh-lovers failed" - dohtml zsh-lovers.html || die "dohtml zsh-lovers failed" - docinto zsh-lovers - dodoc zsh.vim README || die - insinto /usr/share/doc/${PF}/zsh-lovers -# doins zsh-lovers.pdf refcard.pdf || die - doins zsh-lovers.{ps,pdf} refcard.{dvi,ps,pdf} || die - doins -r zsh_people || die "doins zsh_people failed" - popd >/dev/null - fi - - docinto StartupFiles - dodoc StartupFiles/z* -} - -pkg_postinst() { - # should link to http://www.gentoo.org/doc/en/zsh.xml - elog - elog "If you want to enable Portage completions and Gentoo prompt," - elog "emerge app-shells/zsh-completion and add" - elog " autoload -U compinit promptinit" - elog " compinit" - elog " promptinit; prompt gentoo" - elog "to your ~/.zshrc" - elog - elog "Also, if you want to enable cache for the completions, add" - elog " zstyle ':completion::complete:*' use-cache 1" - elog "to your ~/.zshrc" - elog -} diff --git a/app-shells/zsh/zsh-4.3.10.ebuild b/app-shells/zsh/zsh-4.3.10.ebuild deleted file mode 100644 index d0832faae245..000000000000 --- a/app-shells/zsh/zsh-4.3.10.ebuild +++ /dev/null @@ -1,191 +0,0 @@ -# Copyright 1999-2010 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.3.10.ebuild,v 1.3 2010/01/25 01:44:58 tgall Exp $ - -# doc package for -dev version exists? -doc_available=true - -inherit flag-o-matic eutils multilib - -MY_PV=${PV/_p/-dev-} -S=${WORKDIR}/${PN}-${MY_PV} - -zsh_ftp="ftp://ftp.zsh.org/pub" - -if [[ ${PV} != "${MY_PV}" ]] ; then - ZSH_URI="${zsh_ftp}/development/${PN}-${MY_PV}.tar.bz2" - if ${doc_available} ; then - ZSH_DOC_URI="${zsh_ftp}/development/${PN}-${MY_PV}-doc.tar.bz2" - else - ZSH_DOC_URI="${zsh_ftp}/${PN}-${PV%_*}-doc.tar.bz2" - fi -else - ZSH_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 - ${zsh_ftp}/${P}.tar.bz2" - ZSH_DOC_URI="${zsh_ftp}/${PN}-${PV%_*}-doc.tar.bz2" -fi - -LOVERS_PV=0.5.orig -LOVERS_P=zsh-lovers-${LOVERS_PV} -LOVERS_URI="http://deb.grml.org/pool/main/z/zsh-lovers" - -DESCRIPTION="UNIX Shell similar to the Korn shell" -HOMEPAGE="http://www.zsh.org/" -SRC_URI="${ZSH_URI} - examples? ( ${LOVERS_URI}/zsh-lovers_${LOVERS_PV}.tar.gz ) - doc? ( ${ZSH_DOC_URI} )" - -LICENSE="ZSH gdbm? ( GPL-2 )" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~s390 ~sh ~sparc ~x86 ~sparc-fbsd ~x86-fbsd" -IUSE="caps debug doc examples gdbm maildir pcre static unicode" - -RDEPEND=">=sys-libs/ncurses-5.1 - caps? ( sys-libs/libcap ) - pcre? ( >=dev-libs/libpcre-3.9 ) - gdbm? ( sys-libs/gdbm )" -DEPEND="|| ( sys-apps/groff app-doc/heirloom-doctools ) - ${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # fix zshall problem with soelim - ln -s Doc man1 - mv Doc/zshall.1 Doc/zshall.1.soelim - soelim Doc/zshall.1.soelim > Doc/zshall.1 - - epatch "${FILESDIR}/${PN}"-init.d-gentoo.diff -} - -src_compile() { - local myconf= - - if use static ; then - myconf="${myconf} --disable-dynamic" - append-ldflags -static - fi - if use debug ; then - myconf="${myconf} \ - --enable-zsh-debug \ - --enable-zsh-mem-debug \ - --enable-zsh-mem-warning \ - --enable-zsh-secure-free \ - --enable-zsh-hash-debug" - fi - - econf \ - --bindir=/bin \ - --libdir=/usr/$(get_libdir) \ - --enable-etcdir=/etc/zsh \ - --enable-fndir=/usr/share/zsh/${PV%_*}/functions \ - --enable-site-fndir=/usr/share/zsh/site-functions \ - --enable-function-subdirs \ - --enable-ldflags="${LDFLAGS}" \ - --with-term-lib="ncursesw ncurses" \ - --with-tcsetpgrp \ - $(use_enable maildir maildir-support) \ - $(use_enable pcre) \ - $(use_enable caps cap) \ - $(use_enable unicode multibyte) \ - $(use_enable gdbm ) \ - ${myconf} || die "configure failed" - - if use static ; then - # compile all modules statically, see Bug #27392 - # removed cap and curses because linking failes - sed -i \ - -e "s/link=no/link=static/g" \ - -e 's/cap.mdd link=static/cap.mdd link=no/' \ - -e 's/curses.mdd link=static/curses.mdd link=no/' \ - config.modules || die - if ! use gdbm ; then - sed -i 's/gdbm.mdd link=static/gdbm.mdd link=no/' \ - config.modules || die - fi -# else -# sed -i -e "/LIBS/s%-lpcre%/usr/$(get_libdir)/libpcre.a%" Makefile - fi - - emake || die "make failed" -} - -src_test() { - local i - addpredict /dev/ptmx - for i in C02cond.ztst Y01completion.ztst Y02compmatch.ztst Y03arguments.ztst ; do - rm "${S}"/Test/${i} || die - done - make check || die "make check failed" -} - -src_install() { - emake DESTDIR="${D}" install install.info || die - - # Bug 207019 - rm "${D}"/bin/${PN}-${MY_PV} || die - - insinto /etc/zsh - doins "${FILESDIR}"/zprofile || die - - keepdir /usr/share/zsh/site-functions - insinto /usr/share/zsh/${PV%_*}/functions/Prompts - newins "${FILESDIR}"/prompt_gentoo_setup-1 prompt_gentoo_setup || die - - # install miscellaneous scripts; bug #54520 - local i - sed -i -e "s:/usr/local:/usr:g" "${S}"/{Util,Misc}/* || die - for i in Util Misc ; do - insinto /usr/share/zsh/${PV%_*}/${i} - doins ${i}/* || die - done - - dodoc ChangeLog* META-FAQ NEWS README config.modules - - if use doc ; then - cd "${WORKDIR}/${PN}-${PV%_*}" - dohtml -r Doc/* || die - insinto /usr/share/doc/${PF} - doins Doc/zsh.{dvi,pdf} || die - cd - - fi - - if use examples ; then - cd "${WORKDIR}/${LOVERS_P/.orig/}" -# asciidoc zsh-lovers.1.txt -# mv zsh-lovers.1.html zsh-lovers.html -# a2x -f manpage zsh-lovers.1.txt -# a2x -f pdf zsh-lovers.1.txt -# mv zsh-lovers.1.pdf zsh-lovers.pdf - - doman zsh-lovers.1 || die "doman zsh-lovers failed" - dohtml zsh-lovers.html || die "dohtml zsh-lovers failed" - docinto zsh-lovers - dodoc zsh.vim README || die - insinto /usr/share/doc/${PF}/zsh-lovers -# doins zsh-lovers.pdf refcard.pdf || die - doins zsh-lovers.{ps,pdf} refcard.{dvi,ps,pdf} || die - doins -r zsh_people || die "doins zsh_people failed" - cd - - fi - - docinto StartupFiles - dodoc StartupFiles/z* -} - -pkg_postinst() { - # should link to http://www.gentoo.org/doc/en/zsh.xml - elog - elog "If you want to enable Portage completions and Gentoo prompt," - elog "emerge app-shells/zsh-completion and add" - elog " autoload -U compinit promptinit" - elog " compinit" - elog " promptinit; prompt gentoo" - elog "to your ~/.zshrc" - elog - elog "Also, if you want to enable cache for the completions, add" - elog " zstyle ':completion::complete:*' use-cache 1" - elog "to your ~/.zshrc" - elog -} diff --git a/app-shells/zsh/zsh-4.3.4-r1.ebuild b/app-shells/zsh/zsh-4.3.4-r1.ebuild deleted file mode 100644 index 3da981cfc94d..000000000000 --- a/app-shells/zsh/zsh-4.3.4-r1.ebuild +++ /dev/null @@ -1,175 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.3.4-r1.ebuild,v 1.11 2009/01/21 11:20:25 tove Exp $ - -inherit eutils multilib autotools - -LOVERS_PV=0.5 -LOVERS_P=zsh-lovers-${LOVERS_PV} - -DESCRIPTION="UNIX Shell similar to the Korn shell" -HOMEPAGE="http://www.zsh.org/" -SRC_URI="ftp://ftp.zsh.org/pub/${P}.tar.bz2 - mirror://gentoo/${P}-zshcalsys.tar.bz2 - examples? ( - http://www.grml.org/repos/zsh-lovers_${LOVERS_PV}.orig.tar.gz ) - doc? ( ftp://ftp.zsh.org/pub/${P}-doc.tar.bz2 )" - -LICENSE="ZSH" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" -IUSE="maildir static doc examples pcre caps unicode" - -RDEPEND=">=sys-libs/ncurses-5.1 - caps? ( sys-libs/libcap ) - pcre? ( >=dev-libs/libpcre-3.9 )" -DEPEND="sys-apps/groff - ${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # fix zshall problem with soelim - ln -s Doc man1 - mv Doc/zshall.1 Doc/zshall.1.soelim - soelim Doc/zshall.1.soelim > Doc/zshall.1 - - # fixes #201022 and - # http://www.zsh.org/mla/workers/2007/msg01065.html - rm Util/difflog.pl - - epatch "${FILESDIR}/${PN}"-init.d-gentoo.diff - epatch "${FILESDIR}/${P}"-configure-changequote.patch - epatch "${FILESDIR}/${P}"-mkmakemod.patch - eautoreconf -} - -src_compile() { - local myconf= - - if use static ; then - myconf="${myconf} --disable-dynamic" - LDFLAGS="${LDFLAGS} -static" - fi - - econf \ - --bindir=/bin \ - --libdir=/usr/$(get_libdir) \ - --enable-etcdir=/etc/zsh \ - --enable-zshenv=/etc/zsh/zshenv \ - --enable-zlogin=/etc/zsh/zlogin \ - --enable-zlogout=/etc/zsh/zlogout \ - --enable-zprofile=/etc/zsh/zprofile \ - --enable-zshrc=/etc/zsh/zshrc \ - --enable-fndir=/usr/share/zsh/${PV%_*}/functions \ - --enable-site-fndir=/usr/share/zsh/site-functions \ - --enable-function-subdirs \ - --enable-ldflags="${LDFLAGS}" \ - --with-curses-terminfo \ - --with-tcsetpgrp \ - $(use_enable maildir maildir-support) \ - $(use_enable pcre) \ - $(use_enable caps) \ - $(use_enable unicode multibyte) \ - ${myconf} || die "configure failed" - - if use static ; then - # compile all modules statically, see Bug #27392 - sed -i -e "s/link=no/link=static/g" \ - -e "s/load=no/load=yes/g" \ - config.modules || die -# else -# sed -i -e "/LIBS/s%-lpcre%/usr/$(get_libdir)/libpcre.a%" Makefile - fi - - emake || die "make failed" -} - -src_test() { - local f= - for f in /dev/pt* ; do - addpredict "$f" - done - make check || die "make check failed" -} - -src_install() { - einstall \ - bindir="${D}"/bin \ - libdir="${D}"/usr/$(get_libdir) \ - fndir="${D}"/usr/share/zsh/${PV%_*}/functions \ - sitefndir="${D}"/usr/share/zsh/site-functions \ - scriptdir="${D}"/usr/share/zsh/${PV%_*}/scripts \ - install.bin install.man install.modules \ - install.info install.fns || die "make install failed" - - insinto /etc/zsh - doins "${FILESDIR}"/zprofile - - keepdir /usr/share/zsh/site-functions - insinto /usr/share/zsh/${PV%_*}/functions/Prompts - doins "${FILESDIR}"/prompt_gentoo_setup || die - - # install miscellaneous scripts; bug #54520 - sed -i -e "s:/usr/local:/usr:g" {Util,Misc}/* || die "sed failed" - insinto /usr/share/zsh/${PV%_*}/Util - doins Util/* || die "doins Util scripts failed" - insinto /usr/share/zsh/${PV%_*}/Misc - doins Misc/* || die "doins Misc scripts failed" - - dodoc ChangeLog* META-FAQ README config.modules - - if use doc ; then - dohtml Doc/* - insinto /usr/share/doc/${PF} - doins Doc/zsh.{dvi,pdf} - fi - - if use examples; then - cd "${WORKDIR}/${LOVERS_P}" - doman zsh-lovers.1 || die "doman zsh-lovers failed" - dohtml zsh-lovers.html || die "dohtml zsh-lovers failed" - docinto zsh-lovers - dodoc zsh.vim README - insinto /usr/share/doc/"${PF}"/zsh-lovers - doins zsh-lovers.{ps,pdf} refcard.{dvi,ps,pdf} - doins -r zsh_people || die "doins zsh_people failed" - cd - - fi - - docinto StartupFiles - dodoc StartupFiles/z* -} - -pkg_preinst() { - # Our zprofile file does the job of the old zshenv file - # Move the old version into a zprofile script so the normal - # etc-update process will handle any changes. - if [ -f "${ROOT}/etc/zsh/zshenv" -a ! -f "${ROOT}/etc/zsh/zprofile" ]; then - ewarn "Renaming /etc/zsh/zshenv to /etc/zsh/zprofile." - ewarn "The zprofile file does the job of the old zshenv file." - mv "${ROOT}"/etc/zsh/{zshenv,zprofile} - fi -} - -pkg_postinst() { - elog - elog "If you want to enable Portage completions and Gentoo prompt," - elog "emerge app-shells/zsh-completion and add" - elog " autoload -U compinit promptinit" - elog " compinit" - elog " promptinit; prompt gentoo" - elog "to your ~/.zshrc" - elog - elog "Also, if you want to enable cache for the completions, add" - elog " zstyle ':completion::complete:*' use-cache 1" - elog "to your ~/.zshrc" - elog - # see Bug 26776 - ewarn - ewarn "If you are upgrading from zsh-4.0.x you may need to" - ewarn "remove all your old ~/.zcompdump files in order to use" - ewarn "completion. For more info see zcompsys manpage." - ewarn -} diff --git a/app-shells/zsh/zsh-4.3.5.ebuild b/app-shells/zsh/zsh-4.3.5.ebuild deleted file mode 100644 index e92f2da547d2..000000000000 --- a/app-shells/zsh/zsh-4.3.5.ebuild +++ /dev/null @@ -1,150 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.3.5.ebuild,v 1.1 2008/02/02 22:22:54 tove Exp $ - -inherit eutils multilib - -LOVERS_PV=0.5 -LOVERS_P=zsh-lovers-${LOVERS_PV} - -DESCRIPTION="UNIX Shell similar to the Korn shell" -HOMEPAGE="http://www.zsh.org/" -SRC_URI="ftp://ftp.zsh.org/pub/${P}.tar.bz2 - examples? ( http://www.grml.org/repos/zsh-lovers_${LOVERS_PV}.orig.tar.gz ) - doc? ( ftp://ftp.zsh.org/pub/${P}-doc.tar.bz2 )" - -LICENSE="ZSH" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="maildir static doc examples pcre caps unicode" - -RDEPEND=">=sys-libs/ncurses-5.1 - caps? ( sys-libs/libcap ) - pcre? ( >=dev-libs/libpcre-3.9 )" -DEPEND="sys-apps/groff - ${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # fix zshall problem with soelim - ln -s Doc man1 - mv Doc/zshall.1 Doc/zshall.1.soelim - soelim Doc/zshall.1.soelim > Doc/zshall.1 - - epatch "${FILESDIR}/${PN}"-init.d-gentoo.diff -} - -src_compile() { - local myconf= - - if use static ; then - myconf="${myconf} --disable-dynamic" - LDFLAGS="${LDFLAGS} -static" - fi - - econf \ - --bindir=/bin \ - --libdir=/usr/$(get_libdir) \ - --enable-etcdir=/etc/zsh \ - --enable-zshenv=/etc/zsh/zshenv \ - --enable-zlogin=/etc/zsh/zlogin \ - --enable-zlogout=/etc/zsh/zlogout \ - --enable-zprofile=/etc/zsh/zprofile \ - --enable-zshrc=/etc/zsh/zshrc \ - --enable-fndir=/usr/share/zsh/${PV%_*}/functions \ - --enable-site-fndir=/usr/share/zsh/site-functions \ - --enable-function-subdirs \ - --enable-ldflags="${LDFLAGS}" \ - --with-curses-terminfo \ - --with-tcsetpgrp \ - $(use_enable maildir maildir-support) \ - $(use_enable pcre) \ - $(use_enable caps cap) \ - $(use_enable unicode multibyte) \ - ${myconf} || die "configure failed" - - if use static ; then - # compile all modules statically, see Bug #27392 - # removed cap and curses because linking failes - sed -i \ - -e "s/link=no/link=static/g" \ - -e 's/cap.mdd link=static/cap.mdd link=no/' \ - -e 's/curses.mdd link=static/curses.mdd link=no/' \ - config.modules || die -# else -# sed -i -e "/LIBS/s%-lpcre%/usr/$(get_libdir)/libpcre.a%" Makefile - fi - - emake || die "make failed" -} - -src_test() { - local f= - for f in /dev/pt* ; do - addpredict "$f" - done - make check || ewarn "make check failed" -} - -src_install() { - emake DESTDIR="${D}" install install.info || die - - # Bug 207019 - rm "${D}"/bin/${P} || die - - insinto /etc/zsh - doins "${FILESDIR}"/zprofile || die - - keepdir /usr/share/zsh/site-functions - insinto /usr/share/zsh/${PV%_*}/functions/Prompts - doins "${FILESDIR}"/prompt_gentoo_setup || die - - # install miscellaneous scripts; bug #54520 - local i - sed -i -e "s:/usr/local:/usr:g" "${S}"/{Util,Misc}/* || die - for i in Util Misc ; do - insinto /usr/share/zsh/${PV%_*}/${i} - doins ${i}/* || die - done - - dodoc ChangeLog* META-FAQ NEWS README config.modules - - if use doc ; then - dohtml -r "${S}"/Doc/* || die - insinto /usr/share/doc/${PF} - doins Doc/zsh.{dvi,pdf} || die - fi - - if use examples ; then - cd "${WORKDIR}/${LOVERS_P}" - doman zsh-lovers.1 || die "doman zsh-lovers failed" - dohtml zsh-lovers.html || die "dohtml zsh-lovers failed" - docinto zsh-lovers - dodoc zsh.vim README - insinto /usr/share/doc/${PF}/zsh-lovers - doins zsh-lovers.{ps,pdf} refcard.{dvi,ps,pdf} || die - doins -r zsh_people || die "doins zsh_people failed" - cd - - fi - - docinto StartupFiles - dodoc StartupFiles/z* -} - -pkg_postinst() { - # should link to http://www.gentoo.org/doc/en/zsh.xml - elog - elog "If you want to enable Portage completions and Gentoo prompt," - elog "emerge app-shells/zsh-completion and add" - elog " autoload -U compinit promptinit" - elog " compinit" - elog " promptinit; prompt gentoo" - elog "to your ~/.zshrc" - elog - elog "Also, if you want to enable cache for the completions, add" - elog " zstyle ':completion::complete:*' use-cache 1" - elog "to your ~/.zshrc" - elog -} diff --git a/app-shells/zsh/zsh-4.3.6.ebuild b/app-shells/zsh/zsh-4.3.6.ebuild deleted file mode 100644 index 22e5cec9d4c8..000000000000 --- a/app-shells/zsh/zsh-4.3.6.ebuild +++ /dev/null @@ -1,176 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.3.6.ebuild,v 1.1 2008/04/04 08:31:19 tove Exp $ - -# doc package for -dev version exists? -doc_available=true - -inherit flag-o-matic eutils multilib - -MY_PV=${PV/_p/-dev-} -S=${WORKDIR}/${PN}-${MY_PV} - -zsh_ftp="ftp://ftp.zsh.org/pub" - -if [[ ${PV} != "${MY_PV}" ]] ; then - ZSH_URI="${zsh_ftp}/development/${PN}-${MY_PV}.tar.bz2" - if ${doc_available} ; then - ZSH_DOC_URI="${zsh_ftp}/development/${PN}-${MY_PV}-doc.tar.bz2" - else - ZSH_DOC_URI="${zsh_ftp}/${PN}-${PV%_*}-doc.tar.bz2" - fi -else - ZSH_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 - ${zsh_ftp}/${P}.tar.bz2" - ZSH_DOC_URI="${zsh_ftp}/${PN}-${PV%_*}-doc.tar.bz2" -fi - -LOVERS_PV=0.5.orig -LOVERS_P=zsh-lovers-${LOVERS_PV} -LOVERS_URI="http://deb.grml.org/pool/main/z/zsh-lovers" - -DESCRIPTION="UNIX Shell similar to the Korn shell" -HOMEPAGE="http://www.zsh.org/" -SRC_URI="${ZSH_URI} - examples? ( ${LOVERS_URI}/zsh-lovers_${LOVERS_PV}.tar.gz ) - doc? ( ${ZSH_DOC_URI} )" - -LICENSE="ZSH" -SLOT="0" -KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~sparc-fbsd ~x86 ~x86-fbsd" -IUSE="maildir static doc examples pcre caps unicode" - -RDEPEND=">=sys-libs/ncurses-5.1 - caps? ( sys-libs/libcap ) - pcre? ( >=dev-libs/libpcre-3.9 )" -DEPEND="sys-apps/groff - ${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # fix zshall problem with soelim - ln -s Doc man1 - mv Doc/zshall.1 Doc/zshall.1.soelim - soelim Doc/zshall.1.soelim > Doc/zshall.1 - - epatch "${FILESDIR}/${PN}"-init.d-gentoo.diff -} - -src_compile() { - local myconf= - - if use static ; then - myconf="${myconf} --disable-dynamic" - append-ldflags -static - fi - - econf \ - --bindir=/bin \ - --libdir=/usr/$(get_libdir) \ - --enable-etcdir=/etc/zsh \ - --enable-fndir=/usr/share/zsh/${PV%_*}/functions \ - --enable-site-fndir=/usr/share/zsh/site-functions \ - --enable-function-subdirs \ - --enable-ldflags="${LDFLAGS}" \ - --with-term-lib="ncursesw ncurses" \ - --with-tcsetpgrp \ - $(use_enable maildir maildir-support) \ - $(use_enable pcre) \ - $(use_enable caps cap) \ - $(use_enable unicode multibyte) \ - ${myconf} || die "configure failed" - - if use static ; then - # compile all modules statically, see Bug #27392 - # removed cap and curses because linking failes - sed -i \ - -e "s/link=no/link=static/g" \ - -e 's/cap.mdd link=static/cap.mdd link=no/' \ - -e 's/curses.mdd link=static/curses.mdd link=no/' \ - config.modules || die -# else -# sed -i -e "/LIBS/s%-lpcre%/usr/$(get_libdir)/libpcre.a%" Makefile - fi - - emake || die "make failed" -} - -src_test() { - local f= - for f in /dev/pt* ; do - addpredict "$f" - done - make check || ewarn "make check failed" -} - -src_install() { - emake DESTDIR="${D}" install install.info || die - - # Bug 207019 - rm "${D}"/bin/${PN}-${MY_PV} || die - - insinto /etc/zsh - doins "${FILESDIR}"/zprofile || die - - keepdir /usr/share/zsh/site-functions - insinto /usr/share/zsh/${PV%_*}/functions/Prompts - doins "${FILESDIR}"/prompt_gentoo_setup || die - - # install miscellaneous scripts; bug #54520 - local i - sed -i -e "s:/usr/local:/usr:g" "${S}"/{Util,Misc}/* || die - for i in Util Misc ; do - insinto /usr/share/zsh/${PV%_*}/${i} - doins ${i}/* || die - done - - dodoc ChangeLog* META-FAQ NEWS README config.modules - - if use doc ; then - cd "${WORKDIR}/${PN}-${PV%_*}" - dohtml -r Doc/* || die - insinto /usr/share/doc/${PF} - doins Doc/zsh.{dvi,pdf} || die - cd - - fi - - if use examples ; then - cd "${WORKDIR}/${LOVERS_P/.orig/}" -# asciidoc zsh-lovers.1.txt -# mv zsh-lovers.1.html zsh-lovers.html -# a2x -f manpage zsh-lovers.1.txt -# a2x -f pdf zsh-lovers.1.txt -# mv zsh-lovers.1.pdf zsh-lovers.pdf - - doman zsh-lovers.1 || die "doman zsh-lovers failed" - dohtml zsh-lovers.html || die "dohtml zsh-lovers failed" - docinto zsh-lovers - dodoc zsh.vim README - insinto /usr/share/doc/${PF}/zsh-lovers -# doins zsh-lovers.pdf refcard.pdf || die - doins zsh-lovers.{ps,pdf} refcard.{dvi,ps,pdf} || die - doins -r zsh_people || die "doins zsh_people failed" - cd - - fi - - docinto StartupFiles - dodoc StartupFiles/z* -} - -pkg_postinst() { - # should link to http://www.gentoo.org/doc/en/zsh.xml - elog - elog "If you want to enable Portage completions and Gentoo prompt," - elog "emerge app-shells/zsh-completion and add" - elog " autoload -U compinit promptinit" - elog " compinit" - elog " promptinit; prompt gentoo" - elog "to your ~/.zshrc" - elog - elog "Also, if you want to enable cache for the completions, add" - elog " zstyle ':completion::complete:*' use-cache 1" - elog "to your ~/.zshrc" - elog -} diff --git a/app-shells/zsh/zsh-4.3.9.ebuild b/app-shells/zsh/zsh-4.3.9.ebuild deleted file mode 100644 index b03893ea2d05..000000000000 --- a/app-shells/zsh/zsh-4.3.9.ebuild +++ /dev/null @@ -1,191 +0,0 @@ -# Copyright 1999-2009 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-shells/zsh/zsh-4.3.9.ebuild,v 1.9 2009/05/07 13:26:39 tove Exp $ - -# doc package for -dev version exists? -doc_available=true - -inherit flag-o-matic eutils multilib - -MY_PV=${PV/_p/-dev-} -S=${WORKDIR}/${PN}-${MY_PV} - -zsh_ftp="ftp://ftp.zsh.org/pub" - -if [[ ${PV} != "${MY_PV}" ]] ; then - ZSH_URI="${zsh_ftp}/development/${PN}-${MY_PV}.tar.bz2" - if ${doc_available} ; then - ZSH_DOC_URI="${zsh_ftp}/development/${PN}-${MY_PV}-doc.tar.bz2" - else - ZSH_DOC_URI="${zsh_ftp}/${PN}-${PV%_*}-doc.tar.bz2" - fi -else - ZSH_URI="mirror://sourceforge/${PN}/${P}.tar.bz2 - ${zsh_ftp}/${P}.tar.bz2" - ZSH_DOC_URI="${zsh_ftp}/${PN}-${PV%_*}-doc.tar.bz2" -fi - -LOVERS_PV=0.5.orig -LOVERS_P=zsh-lovers-${LOVERS_PV} -LOVERS_URI="http://deb.grml.org/pool/main/z/zsh-lovers" - -DESCRIPTION="UNIX Shell similar to the Korn shell" -HOMEPAGE="http://www.zsh.org/" -SRC_URI="${ZSH_URI} - examples? ( ${LOVERS_URI}/zsh-lovers_${LOVERS_PV}.tar.gz ) - doc? ( ${ZSH_DOC_URI} )" - -LICENSE="ZSH gdbm? ( GPL-2 )" -SLOT="0" -KEYWORDS="alpha amd64 arm hppa ia64 ppc ~ppc64 s390 sh sparc ~sparc-fbsd x86 ~x86-fbsd" -IUSE="caps debug doc examples gdbm maildir pcre static unicode" - -RDEPEND=">=sys-libs/ncurses-5.1 - caps? ( sys-libs/libcap ) - pcre? ( >=dev-libs/libpcre-3.9 ) - gdbm? ( sys-libs/gdbm )" -DEPEND="sys-apps/groff - ${RDEPEND}" - -src_unpack() { - unpack ${A} - cd "${S}" - - # fix zshall problem with soelim - ln -s Doc man1 - mv Doc/zshall.1 Doc/zshall.1.soelim - soelim Doc/zshall.1.soelim > Doc/zshall.1 - - epatch "${FILESDIR}/${PN}"-init.d-gentoo.diff -} - -src_compile() { - local myconf= - - if use static ; then - myconf="${myconf} --disable-dynamic" - append-ldflags -static - fi - if use debug ; then - myconf="${myconf} \ - --enable-zsh-debug \ - --enable-zsh-mem-debug \ - --enable-zsh-mem-warning \ - --enable-zsh-secure-free \ - --enable-zsh-hash-debug" - fi - - econf \ - --bindir=/bin \ - --libdir=/usr/$(get_libdir) \ - --enable-etcdir=/etc/zsh \ - --enable-fndir=/usr/share/zsh/${PV%_*}/functions \ - --enable-site-fndir=/usr/share/zsh/site-functions \ - --enable-function-subdirs \ - --enable-ldflags="${LDFLAGS}" \ - --with-term-lib="ncursesw ncurses" \ - --with-tcsetpgrp \ - $(use_enable maildir maildir-support) \ - $(use_enable pcre) \ - $(use_enable caps cap) \ - $(use_enable unicode multibyte) \ - $(use_enable gdbm ) \ - ${myconf} || die "configure failed" - - if use static ; then - # compile all modules statically, see Bug #27392 - # removed cap and curses because linking failes - sed -i \ - -e "s/link=no/link=static/g" \ - -e 's/cap.mdd link=static/cap.mdd link=no/' \ - -e 's/curses.mdd link=static/curses.mdd link=no/' \ - config.modules || die - if ! use gdbm ; then - sed -i 's/gdbm.mdd link=static/gdbm.mdd link=no/' \ - config.modules || die - fi -# else -# sed -i -e "/LIBS/s%-lpcre%/usr/$(get_libdir)/libpcre.a%" Makefile - fi - - emake || die "make failed" -} - -src_test() { - local i - addpredict /dev/ptmx - for i in C02cond.ztst Y01completion.ztst Y02compmatch.ztst Y03arguments.ztst ; do - rm "${S}"/Test/${i} || die - done - make check || die "make check failed" -} - -src_install() { - emake DESTDIR="${D}" install install.info || die - - # Bug 207019 - rm "${D}"/bin/${PN}-${MY_PV} || die - - insinto /etc/zsh - doins "${FILESDIR}"/zprofile || die - - keepdir /usr/share/zsh/site-functions - insinto /usr/share/zsh/${PV%_*}/functions/Prompts - newins "${FILESDIR}"/prompt_gentoo_setup-1 prompt_gentoo_setup || die - - # install miscellaneous scripts; bug #54520 - local i - sed -i -e "s:/usr/local:/usr:g" "${S}"/{Util,Misc}/* || die - for i in Util Misc ; do - insinto /usr/share/zsh/${PV%_*}/${i} - doins ${i}/* || die - done - - dodoc ChangeLog* META-FAQ NEWS README config.modules - - if use doc ; then - cd "${WORKDIR}/${PN}-${PV%_*}" - dohtml -r Doc/* || die - insinto /usr/share/doc/${PF} - doins Doc/zsh.{dvi,pdf} || die - cd - - fi - - if use examples ; then - cd "${WORKDIR}/${LOVERS_P/.orig/}" -# asciidoc zsh-lovers.1.txt -# mv zsh-lovers.1.html zsh-lovers.html -# a2x -f manpage zsh-lovers.1.txt -# a2x -f pdf zsh-lovers.1.txt -# mv zsh-lovers.1.pdf zsh-lovers.pdf - - doman zsh-lovers.1 || die "doman zsh-lovers failed" - dohtml zsh-lovers.html || die "dohtml zsh-lovers failed" - docinto zsh-lovers - dodoc zsh.vim README || die - insinto /usr/share/doc/${PF}/zsh-lovers -# doins zsh-lovers.pdf refcard.pdf || die - doins zsh-lovers.{ps,pdf} refcard.{dvi,ps,pdf} || die - doins -r zsh_people || die "doins zsh_people failed" - cd - - fi - - docinto StartupFiles - dodoc StartupFiles/z* -} - -pkg_postinst() { - # should link to http://www.gentoo.org/doc/en/zsh.xml - elog - elog "If you want to enable Portage completions and Gentoo prompt," - elog "emerge app-shells/zsh-completion and add" - elog " autoload -U compinit promptinit" - elog " compinit" - elog " promptinit; prompt gentoo" - elog "to your ~/.zshrc" - elog - elog "Also, if you want to enable cache for the completions, add" - elog " zstyle ':completion::complete:*' use-cache 1" - elog "to your ~/.zshrc" - elog -} |