diff options
author | 2011-03-27 21:54:38 +0000 | |
---|---|---|
committer | 2011-03-27 21:54:38 +0000 | |
commit | 0a6ab1ba7736335c29efd5bf26208c5b1fb2fa0e (patch) | |
tree | 0fcf4638b7d56eca0359b2b49d913f983338cf36 /app-misc/realpath | |
parent | stabilize for all (noarch package), remove old versions (diff) | |
download | historical-0a6ab1ba7736335c29efd5bf26208c5b1fb2fa0e.tar.gz historical-0a6ab1ba7736335c29efd5bf26208c5b1fb2fa0e.tar.bz2 historical-0a6ab1ba7736335c29efd5bf26208c5b1fb2fa0e.zip |
remove old ebuilds
Package-Manager: portage-2.1.9.44/cvs/Linux x86_64
Diffstat (limited to 'app-misc/realpath')
-rw-r--r-- | app-misc/realpath/ChangeLog | 6 | ||||
-rw-r--r-- | app-misc/realpath/realpath-1.15-r2.ebuild | 75 | ||||
-rw-r--r-- | app-misc/realpath/realpath-1.15.ebuild | 59 |
3 files changed, 5 insertions, 135 deletions
diff --git a/app-misc/realpath/ChangeLog b/app-misc/realpath/ChangeLog index 1e75b8860a74..08ba1c12181a 100644 --- a/app-misc/realpath/ChangeLog +++ b/app-misc/realpath/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-misc/realpath # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/realpath/ChangeLog,v 1.14 2011/01/01 08:44:48 jlec Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-misc/realpath/ChangeLog,v 1.15 2011/03/27 21:52:55 darkside Exp $ + + 27 Mar 2011; Jeremy Olexa <darkside@gentoo.org> -realpath-1.15.ebuild, + -realpath-1.15-r2.ebuild: + remove old ebuilds 01 Jan 2011; Justin Lecher <jlec@gentoo.org> realpath-1.15.ebuild, realpath-1.15-r1.ebuild, realpath-1.15-r2.ebuild, realpath-1.15-r3.ebuild: diff --git a/app-misc/realpath/realpath-1.15-r2.ebuild b/app-misc/realpath/realpath-1.15-r2.ebuild deleted file mode 100644 index 38f45a31ba8f..000000000000 --- a/app-misc/realpath/realpath-1.15-r2.ebuild +++ /dev/null @@ -1,75 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/realpath/realpath-1.15-r2.ebuild,v 1.2 2011/01/01 08:44:48 jlec Exp $ - -EAPI="3" -inherit eutils toolchain-funcs flag-o-matic 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" -DEPEND="${RDEPEND} - sys-devel/gettext - virtual/libintl - elibc_IRIX? ( dev-libs/gnulib ) - 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 - gunzip -r usr/share/man || die "gunzip failed" - fi -} - -src_prepare() { - use nls || epatch "${FILESDIR}"/${P}-nonls.patch - epatch "${FILESDIR}"/${PN}-1.14-build.patch - epatch "${FILESDIR}"/${PN}-1.14-no-po4a.patch - epatch "${FILESDIR}"/${P}-prefix.patch - eprefixify common.mk -} - -src_compile() { - tc-export CC - 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 $(use nls && echo po)" \ - || die "emake failed" -} - -src_install() { - emake VERSION="${PV}" SUBDIRS="src man $(use nls && echo 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 -} diff --git a/app-misc/realpath/realpath-1.15.ebuild b/app-misc/realpath/realpath-1.15.ebuild deleted file mode 100644 index 6d90210929e3..000000000000 --- a/app-misc/realpath/realpath-1.15.ebuild +++ /dev/null @@ -1,59 +0,0 @@ -# Copyright 1999-2011 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-misc/realpath/realpath-1.15.ebuild,v 1.3 2011/01/01 08:44:48 jlec Exp $ - -EAPI=2 -inherit eutils toolchain-funcs - -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" -IUSE="nls" - -DEPEND="sys-devel/gettext" -RDEPEND="!sys-freebsd/freebsd-bin" - -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 - gunzip -r usr/share/man || die "gunzip failed" - fi -} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-1.14-build.patch - epatch "${FILESDIR}"/${PN}-1.14-no-po4a.patch -} - -src_compile() { - tc-export CC - emake VERSION="${PV}" SUBDIRS="src man $(use nls && echo po)" \ - || die "emake failed" -} - -src_install() { - emake VERSION="${PV}" SUBDIRS="src man $(use nls && echo po)" \ - DESTDIR="${D}" install || die "emake install failed" - newdoc debian/changelog ChangeLog.debian - - 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 -} |