jlec        15/06/21 13:57:12

  Modified:             ChangeLog
  Added:                cdargs-1.35-r2.ebuild
  Log:
  Import fedora patch for format-security, bug #521078; make it compile with 
ncurses[tinfo]
  
  (Portage version: 2.2.20/cvs/Linux x86_64, signed Manifest commit with key 
E9402A79B03529A2!)

Revision  Changes    Path
1.21                 app-misc/cdargs/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdargs/ChangeLog?rev=1.21&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdargs/ChangeLog?rev=1.21&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdargs/ChangeLog?r1=1.20&r2=1.21

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/app-misc/cdargs/ChangeLog,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- ChangeLog   5 Jan 2011 14:53:03 -0000       1.20
+++ ChangeLog   21 Jun 2015 13:57:11 -0000      1.21
@@ -1,6 +1,13 @@
 # ChangeLog for app-misc/cdargs
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/cdargs/ChangeLog,v 1.20 2011/01/05 
14:53:03 jlec Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/app-misc/cdargs/ChangeLog,v 1.21 2015/06/21 
13:57:11 jlec Exp $
+
+*cdargs-1.35-r2 (21 Jun 2015)
+
+  21 Jun 2015; Justin Lecher <[email protected]> +cdargs-1.35-r2.ebuild,
+  +files/cdargs-1.35-format_security.patch, +files/cdargs-1.35-tinfo.patch:
+  Import fedora patch for format-security, bug #521078; make it compile with
+  ncurses[tinfo]
 
   05 Jan 2011; Justin Lecher <[email protected]> cdargs-1.35-r1.ebuild:
   Corrected HOMEPAGE, #350561, thanks Martin Walch digging that out
@@ -79,4 +86,3 @@
   07 Jan 2005; Aaron Walker <[email protected]> +metadata.xml,
   +cdargs-1.31.ebuild:
   Initial commit - bug 76736. Thanks to Stefan Kamphausen.
-



1.1                  app-misc/cdargs/cdargs-1.35-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdargs/cdargs-1.35-r2.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-misc/cdargs/cdargs-1.35-r2.ebuild?rev=1.1&content-type=text/plain

Index: cdargs-1.35-r2.ebuild
===================================================================
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-misc/cdargs/cdargs-1.35-r2.ebuild,v 1.1 
2015/06/21 13:57:11 jlec Exp $

EAPI=5

inherit autotools elisp-common eutils

DESCRIPTION="Bookmarks and browser for the shell builtin cd command"
HOMEPAGE="http://www.skamphausen.de/cgi-bin/ska/CDargs";
SRC_URI="http://www.skamphausen.de/software/${PN}/${P}.tar.gz";

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~sparc ~x86"
IUSE="emacs"

DEPEND="
        sys-libs/ncurses
        emacs? ( virtual/emacs )"
RDEPEND="${DEPEND}"

SITEFILE=50${PN}-gentoo.el

PATCHES=(
        "${FILESDIR}"/${P}-format_security.patch
        "${FILESDIR}"/${P}-tinfo.patch
        )

src_prepare() {
        epatch "${PATCHES[@]}"
        mv configure.{in,ac} || die
        eautoreconf
}

src_compile() {
        default

        use emacs && elisp-compile contrib/cdargs.el
}

src_install() {
        default

        cd "${S}/contrib" || die
        insinto /usr/share/cdargs
        doins cdargs-bash.sh cdargs-tcsh.csh
        if use emacs ; then
                elisp-install ${PN} cdargs.{el,elc}
                elisp-site-file-install "${FILESDIR}/${SITEFILE}"
        fi
}

pkg_postinst() {
        use emacs && elisp-site-regen

        echo
        elog "Add the following line to your ~/.bashrc to enable cdargs helper"
        elog "functions/aliases in your environment:"
        elog "[ -f /usr/share/cdargs/cdargs-bash.sh ] && \\ "
        elog "          source /usr/share/cdargs/cdargs-bash.sh"
        elog
        elog "Users of tcshell will find cdargs-tcsh.csh there with a reduced"
        elog "feature set.  See INSTALL file in the documentation directory for"
        elog "more information."
        echo
}

pkg_postrm() {
        use emacs && elisp-site-regen
}




Reply via email to