idl0r       14/04/16 20:56:57

  Modified:             ChangeLog
  Added:                libxdg-basedir-1.2.0-r1.ebuild
  Removed:              libxdg-basedir-1.2.0.ebuild
  Log:
  Revbump. Fix buffer overflow.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 
B427ABC8)

Revision  Changes    Path
1.38                 dev-libs/libxdg-basedir/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxdg-basedir/ChangeLog?rev=1.38&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxdg-basedir/ChangeLog?rev=1.38&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxdg-basedir/ChangeLog?r1=1.37&r2=1.38

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libxdg-basedir/ChangeLog,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -r1.37 -r1.38
--- ChangeLog   16 Apr 2014 07:06:27 -0000      1.37
+++ ChangeLog   16 Apr 2014 20:56:57 -0000      1.38
@@ -1,6 +1,13 @@
 # ChangeLog for dev-libs/libxdg-basedir
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxdg-basedir/ChangeLog,v 1.37 
2014/04/16 07:06:27 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libxdg-basedir/ChangeLog,v 1.38 
2014/04/16 20:56:57 idl0r Exp $
+
+*libxdg-basedir-1.2.0-r1 (16 Apr 2014)
+
+  16 Apr 2014; Christian Ruppert <[email protected]>
+  -libxdg-basedir-1.2.0.ebuild, +libxdg-basedir-1.2.0-r1.ebuild,
+  +files/libxdg-basedir-1.2.0-buffer-overflow.patch:
+  Revbump. Fix buffer overflow.
 
   16 Apr 2014; Lars Wendler <[email protected]>
   libxdg-basedir-1.2.0.ebuild:



1.1                  dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild?rev=1.1&content-type=text/plain

Index: libxdg-basedir-1.2.0-r1.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild,v
 1.1 2014/04/16 20:56:57 idl0r Exp $

EAPI=5
inherit autotools eutils

DESCRIPTION="Small library to access XDG Base Directories Specification paths"
HOMEPAGE="http://repo.or.cz/w/libxdg-basedir.git";
SRC_URI="http://github.com/devnev/${PN}/archive/${P}.tar.gz";

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x64-macos ~x86-solaris"
IUSE="doc static-libs"

RDEPEND=""
DEPEND="doc? ( app-doc/doxygen )"

S="${WORKDIR}/${PN}-${P}"

src_prepare() {
        epatch "${FILESDIR}/${P}-buffer-overflow.patch"

        eautoreconf
}

src_configure() {
        econf \
                --disable-dependency-tracking \
                $(use_enable static-libs static) \
                $(use_enable doc doxygen-html)
}

src_compile() {
        emake

        if use doc; then
                emake doxygen-doc
        fi
}

src_install() {
        emake DESTDIR="${D}" install

        if use doc; then
                dohtml -r doc/html/*
        fi

        find "${D}" -type f -name '*.la' -delete
}




Reply via email to