diff options
author | Chris Reffett <creffett@gentoo.org> | 2015-08-13 21:19:01 -0400 |
---|---|---|
committer | Chris Reffett <creffett@gentoo.org> | 2015-08-13 21:19:01 -0400 |
commit | b5684d06835b936b52918d1ce937a871385e9139 (patch) | |
tree | fe5734f4bed4bf2e10ff93be967e5d95d73bb9f2 /app-admin/augeas | |
parent | www-apps/otrs: Security cleanup wrt bug 476434 (diff) | |
download | gentoo-b5684d06835b936b52918d1ce937a871385e9139.tar.gz gentoo-b5684d06835b936b52918d1ce937a871385e9139.tar.bz2 gentoo-b5684d06835b936b52918d1ce937a871385e9139.zip |
app-admin/augeas: Security cleanup wrt bug 492528
Package-Manager: portage-2.2.20.1
Diffstat (limited to 'app-admin/augeas')
-rw-r--r-- | app-admin/augeas/augeas-0.10.0-r1.ebuild | 49 | ||||
-rw-r--r-- | app-admin/augeas/augeas-0.10.0.ebuild | 43 |
2 files changed, 0 insertions, 92 deletions
diff --git a/app-admin/augeas/augeas-0.10.0-r1.ebuild b/app-admin/augeas/augeas-0.10.0-r1.ebuild deleted file mode 100644 index 8c56a570c5a2..000000000000 --- a/app-admin/augeas/augeas-0.10.0-r1.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI=5 - -inherit autotools-utils - -DESCRIPTION="A library for changing configuration files" -HOMEPAGE="http://augeas.net/" -SRC_URI="http://augeas.net/download/${P}.tar.gz" - -SLOT="0" -LICENSE="LGPL-2.1" -KEYWORDS="~alpha ~amd64 hppa ia64 ~ppc ~ppc64 ~sparc ~x86" -IUSE="static-libs test" - -RDEPEND=" - dev-libs/libxml2 - sys-libs/readline" -DEPEND="${RDEPEND} - virtual/pkgconfig - >=app-doc/NaturalDocs-1.40 - test? ( dev-lang/ruby )" - -PATCHES=( - "${FILESDIR}"/${P}-gets.patch - "${FILESDIR}"/${P}-test.patch - "${FILESDIR}"/${P}-test2.patch - "${FILESDIR}"/${P}-libxml2-pkgconfig.patch - ) - -src_prepare() { - if [ -f /usr/share/NaturalDocs/Config/Languages.txt ] ; then - addwrite /usr/share/NaturalDocs/Config/Languages.txt - fi - if [ -f /usr/share/NaturalDocs/Config/Topics.txt ] ; then - addwrite /usr/share/NaturalDocs/Config/Topics.txt - fi - autotools-utils_src_prepare -} - -src_configure() { - # Needs to implemented - local myeconfargs=( --without-selinux ) - autotools-utils_src_configure -} - -AUTOTOOLS_IN_SOURCE_BUILD=1 diff --git a/app-admin/augeas/augeas-0.10.0.ebuild b/app-admin/augeas/augeas-0.10.0.ebuild deleted file mode 100644 index 9b837aa6b3bb..000000000000 --- a/app-admin/augeas/augeas-0.10.0.ebuild +++ /dev/null @@ -1,43 +0,0 @@ -# Copyright 1999-2015 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Id$ - -EAPI="4" -inherit eutils - -DESCRIPTION="A library for changing configuration files" -HOMEPAGE="http://augeas.net/" -SRC_URI="http://augeas.net/download/${P}.tar.gz" - -LICENSE="LGPL-2.1" -SLOT="0" -KEYWORDS="alpha amd64 hppa ppc ~ppc64 sparc x86" -IUSE="static-libs test" - -RDEPEND="sys-libs/readline - dev-libs/libxml2" -DEPEND="${RDEPEND} - virtual/pkgconfig - >=app-doc/NaturalDocs-1.40 - test? ( dev-lang/ruby )" - -src_prepare() { - if [ -f /usr/share/NaturalDocs/Config/Languages.txt ] ; then - addwrite /usr/share/NaturalDocs/Config/Languages.txt - fi - if [ -f /usr/share/NaturalDocs/Config/Topics.txt ] ; then - addwrite /usr/share/NaturalDocs/Config/Topics.txt - fi -} - -src_configure() { - econf $(use_enable static-libs static) || die -} - -src_install() { - default - - use static-libs || find "${ED}" -name '*.la' -delete - - dodoc AUTHORS ChangeLog README NEWS -} |