diff options
author | Michael Palimaka <kensington@gentoo.org> | 2013-07-03 07:46:23 +0000 |
---|---|---|
committer | Michael Palimaka <kensington@gentoo.org> | 2013-07-03 07:46:23 +0000 |
commit | 5d0b406e0a2dcd2d7b00b3e320c46312ae717fd9 (patch) | |
tree | fd40777102e4838ec8bd23ea24ad50c9948f7eb1 /app-editors/ted | |
parent | Backport patch from upstream to solve a memory leak issue, wrt bug #447862. (diff) | |
download | gentoo-2-5d0b406e0a2dcd2d7b00b3e320c46312ae717fd9.tar.gz gentoo-2-5d0b406e0a2dcd2d7b00b3e320c46312ae717fd9.tar.bz2 gentoo-2-5d0b406e0a2dcd2d7b00b3e320c46312ae717fd9.zip |
Remove old.
(Portage version: 2.1.12.11/cvs/Linux x86_64, signed Manifest commit with key 675D0D2C)
Diffstat (limited to 'app-editors/ted')
-rw-r--r-- | app-editors/ted/ChangeLog | 6 | ||||
-rw-r--r-- | app-editors/ted/files/ted-2.21-make.patch | 12 | ||||
-rw-r--r-- | app-editors/ted/ted-2.22.ebuild | 71 |
3 files changed, 5 insertions, 84 deletions
diff --git a/app-editors/ted/ChangeLog b/app-editors/ted/ChangeLog index 01d165d73496..e9c6889b8450 100644 --- a/app-editors/ted/ChangeLog +++ b/app-editors/ted/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-editors/ted # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.62 2013/06/29 16:25:48 ago Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.63 2013/07/03 07:46:23 kensington Exp $ + + 03 Jul 2013; Michael Palimaka <kensington@gentoo.org> + -files/ted-2.21-make.patch, -ted-2.22.ebuild: + Remove old. 29 Jun 2013; Agostino Sarubbo <ago@gentoo.org> ted-2.23.ebuild: Stable for sparc, wrt bug #470322 diff --git a/app-editors/ted/files/ted-2.21-make.patch b/app-editors/ted/files/ted-2.21-make.patch deleted file mode 100644 index 2916c9505556..000000000000 --- a/app-editors/ted/files/ted-2.21-make.patch +++ /dev/null @@ -1,12 +0,0 @@ -diff -ur Ted-2.21.orig//Makefile Ted-2.21/Makefile ---- Ted-2.21.orig//Makefile 2009-10-16 23:20:58.000000000 +0800 -+++ Ted-2.21/Makefile 2011-10-04 00:22:30.615975269 +0800 -@@ -198,7 +198,7 @@ - : To install Ted, you can now run 'make install' AS ROOT - - package.shared: tedPackage/makefile compile.shared -- cd tedPackage && make package.shared -+ cd tedPackage && $(MAKE) package.shared - : - : Dynamically linked package ready. - : To install Ted, you can now run 'make install' AS ROOT diff --git a/app-editors/ted/ted-2.22.ebuild b/app-editors/ted/ted-2.22.ebuild deleted file mode 100644 index 41b01281d060..000000000000 --- a/app-editors/ted/ted-2.22.ebuild +++ /dev/null @@ -1,71 +0,0 @@ -# Copyright 1999-2013 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ted-2.22.ebuild,v 1.8 2013/04/01 09:21:22 pinkbyte Exp $ - -EAPI=4 -inherit eutils toolchain-funcs - -DESCRIPTION="X-based rich text editor" -HOMEPAGE="http://www.nllgg.nl/Ted" -SRC_URI="ftp://ftp.nluug.nl/pub/editors/ted/${P}.src.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="amd64 ppc sparc x86" -IUSE="" - -RDEPEND="x11-libs/gtk+:2 - media-libs/tiff - virtual/jpeg - media-libs/libpng - x11-libs/libXft - x11-libs/libXpm" -DEPEND="${RDEPEND} - virtual/pkgconfig" - -S=${WORKDIR}/Ted-${PV} - -src_prepare() { - epatch "${FILESDIR}"/${PN}-2.21-make.patch - - sed -i -e 's|/Ted/|/share/Ted/|' \ - "${S}"/appFrame/appFrameConfig.h.in \ - "${S}"/Ted/tedConfig.h.in || die - - # bug #461256 - find . -name makefile.in -exec sed -i -e '/ar r/s/ar/$(AR)/' {} \; || die - - mkdir lib || die -} - -src_configure() { - tc-export AR CC RANLIB - - local dir - for dir in appFrame appUtil bitmap docBuf ind Ted tedPackage; do - cd "${S}"/${dir} - econf --cache-file=../config.cache || die "configure in ${dir} failed" - done -} - -src_compile() { - emake package.shared -} - -src_install() { - cd tedPackage - RPM_BUILD_ROOT=${D} ./installTed.sh COMMON || die - - dodir /usr/share - mv "${ED}"usr/Ted "${ED}"usr/share/Ted - dosym /usr/share/Ted/rtf2pdf.sh /usr/bin/rtf2pdf.sh - - # bug #461252, desktop file is inaccessible during src_prepare, so fix it here - sed -i \ - -e '/^Encoding/d' \ - -e '/^Categories/s/Application;//' \ - -e 's/^Categories.*/\0;/' \ - -e 's/^MimeType.*/\0;/' \ - -e '/^Terminal/s/0/false/' \ - "${D}/usr/share/applications/Ted.desktop" || die 'sed on Ted.desktop failed' -} |