summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJustin Lecher <jlec@gentoo.org>2013-01-09 17:12:05 +0000
committerJustin Lecher <jlec@gentoo.org>2013-01-09 17:12:05 +0000
commit3e6f66dc8a889f03aa3b389fbbf5e1ee7795ac71 (patch)
tree736600a25fd857ce5640dcb9fbc5509a844bfada /app-misc/realpath
parentdev-tcltk/snack: Add fix from Fedora for CVE-2012-6303, #446822 (diff)
downloadgentoo-2-3e6f66dc8a889f03aa3b389fbbf5e1ee7795ac71.tar.gz
gentoo-2-3e6f66dc8a889f03aa3b389fbbf5e1ee7795ac71.tar.bz2
gentoo-2-3e6f66dc8a889f03aa3b389fbbf5e1ee7795ac71.zip
app-misc/realpath: Cleaned old
(Portage version: 2.2.0_alpha149/cvs/Linux x86_64, signed Manifest commit with key 70EB7916)
Diffstat (limited to 'app-misc/realpath')
-rw-r--r--app-misc/realpath/ChangeLog6
-rw-r--r--app-misc/realpath/metadata.xml4
-rw-r--r--app-misc/realpath/realpath-1.16.ebuild74
3 files changed, 7 insertions, 77 deletions
diff --git a/app-misc/realpath/ChangeLog b/app-misc/realpath/ChangeLog
index 81cb2ffba672..bf3e75319be5 100644
--- a/app-misc/realpath/ChangeLog
+++ b/app-misc/realpath/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-misc/realpath
# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/realpath/ChangeLog,v 1.38 2013/01/01 19:16:14 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-misc/realpath/ChangeLog,v 1.39 2013/01/09 17:12:05 jlec Exp $
+
+ 09 Jan 2013; Justin Lecher <jlec@gentoo.org> -realpath-1.16.ebuild,
+ metadata.xml:
+ Cleaned old
01 Jan 2013; Raúl Porcel <armin76@gentoo.org> realpath-1.17.ebuild:
m68k/s390/sh stable wrt #441092
diff --git a/app-misc/realpath/metadata.xml b/app-misc/realpath/metadata.xml
index 9fe17c2d7432..c0dd433566a9 100644
--- a/app-misc/realpath/metadata.xml
+++ b/app-misc/realpath/metadata.xml
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd">
<pkgmetadata>
- <herd>shell-tools</herd>
- <longdescription lang="en">
+ <herd>shell-tools</herd>
+ <longdescription lang="en">
The realpath utility finds the canonicalized absolute pathname of its
arguments in a similar way to readlink -f.
</longdescription>
diff --git a/app-misc/realpath/realpath-1.16.ebuild b/app-misc/realpath/realpath-1.16.ebuild
deleted file mode 100644
index 3f24f9768be4..000000000000
--- a/app-misc/realpath/realpath-1.16.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-misc/realpath/realpath-1.16.ebuild,v 1.10 2012/06/01 02:02:21 zmedico Exp $
-
-EAPI="3"
-inherit eutils toolchain-funcs flag-o-matic multilib prefix
-
-DESCRIPTION="Return the canonicalized absolute pathname"
-HOMEPAGE="http://packages.debian.org/unstable/utils/realpath"
-SRC_URI="
- mirror://debian/pool/main/r/${PN}/${PN}_${PV}.tar.gz
- nls? ( mirror://debian/pool/main/r/${PN}/${PN}_${PV}_i386.deb )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="nls"
-
-RDEPEND="!sys-freebsd/freebsd-bin
- nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
- nls? ( sys-devel/gettext )
- x86-interix? ( dev-libs/gnulib )
- elibc_mintlib? ( virtual/libiconv )"
-
-src_unpack() {
- unpack ${PN}_${PV}.tar.gz
-
- if use nls; then
- # Unpack the .deb file, in order to get the preprocessed man page
- # translations. This way we avoid a dependency on app-text/po4a.
- mkdir deb
- cd deb
- unpack ${PN}_${PV}_i386.deb
- unpack ./data.tar.gz
- fi
-}
-
-src_prepare() {
- use nls || epatch "${FILESDIR}"/${P}-nonls.patch
- epatch "${FILESDIR}"/${PN}-1.15-build.patch
- epatch "${FILESDIR}"/${PN}-1.14-no-po4a.patch
- epatch "${FILESDIR}"/${PN}-1.15-prefix.patch
- eprefixify common.mk
-}
-
-src_compile() {
- tc-export CC
- use nls && use !elibc_glibc && append-libs -lintl
- [[ ${CHOST} == *-mint* ]] && append-libs "-liconv"
- if [[ ${CHOST} == *-irix* || ${CHOST} == *-interix[35]* ]] ; then
- append-flags -I"${EPREFIX}"/usr/$(get_libdir)/gnulib/include
- append-ldflags -L"${EPREFIX}"/usr/$(get_libdir)/gnulib/$(get_libdir)
- append-libs -lgnu
- fi
-
- emake VERSION="${PV}" SUBDIRS="src man $(usex nls po '')" \
- || die "emake failed"
-}
-
-src_install() {
- emake VERSION="${PV}" SUBDIRS="src man $(usex nls po '')" \
- DESTDIR="${D}" install || die "emake install failed"
- newdoc debian/changelog ChangeLog.debian || die
-
- if use nls; then
- local dir
- for dir in "${WORKDIR}"/deb/usr/share/man/*; do
- [ -f "${dir}"/man1/realpath.1 ] || continue
- newman "${dir}"/man1/realpath.1 realpath.${dir##*/}.1 \
- || die "newman failed"
- done
- fi
-}