summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSamuli Suominen <ssuominen@gentoo.org>2011-10-23 20:02:52 +0000
committerSamuli Suominen <ssuominen@gentoo.org>2011-10-23 20:02:52 +0000
commit275e80406090785982dbfdabbf43fcf6a24491eb (patch)
tree7508612a309fb93bd36bbd7ba0c92ad0edbddc9d /app-editors
parentRemove unused plstream feature definitions that conflict with ptrace headers (diff)
downloadgentoo-2-275e80406090785982dbfdabbf43fcf6a24491eb.tar.gz
gentoo-2-275e80406090785982dbfdabbf43fcf6a24491eb.tar.bz2
gentoo-2-275e80406090785982dbfdabbf43fcf6a24491eb.zip
old
(Portage version: 2.2.0_alpha70/cvs/Linux x86_64)
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/ted/ChangeLog6
-rw-r--r--app-editors/ted/files/ted-2.20-libpng14.patch13
-rw-r--r--app-editors/ted/ted-2.20.ebuild52
3 files changed, 5 insertions, 66 deletions
diff --git a/app-editors/ted/ChangeLog b/app-editors/ted/ChangeLog
index 4d16894b165b..5a22bb8c6c78 100644
--- a/app-editors/ted/ChangeLog
+++ b/app-editors/ted/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-editors/ted
# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.45 2011/10/23 16:07:42 armin76 Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.46 2011/10/23 20:02:52 ssuominen Exp $
+
+ 23 Oct 2011; Samuli Suominen <ssuominen@gentoo.org> -ted-2.20.ebuild,
+ -files/ted-2.20-libpng14.patch:
+ old
23 Oct 2011; Raúl Porcel <armin76@gentoo.org> ted-2.21.ebuild:
sparc stable wrt #385205
diff --git a/app-editors/ted/files/ted-2.20-libpng14.patch b/app-editors/ted/files/ted-2.20-libpng14.patch
deleted file mode 100644
index 34fd241f5018..000000000000
--- a/app-editors/ted/files/ted-2.20-libpng14.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-http://repos.archlinux.org/wsvn/community/ted/trunk/PKGBUILD
-
---- bitmap/bmpng.c
-+++ bitmap/bmpng.c
-@@ -283,7 +283,7 @@
- static int bpPngiFromBitmap( png_info * pngi,
- const BitmapDescription * bd )
- {
-- png_info_init( pngi );
-+ png_create_info_struct( pngi );
- pngi->width= bd->bdPixelsWide;
- pngi->height= bd->bdPixelsHigh;
-
diff --git a/app-editors/ted/ted-2.20.ebuild b/app-editors/ted/ted-2.20.ebuild
deleted file mode 100644
index ad0007ec273a..000000000000
--- a/app-editors/ted/ted-2.20.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ted-2.20.ebuild,v 1.9 2011/03/27 10:21:33 nirbheek Exp $
-
-EAPI=2
-inherit eutils
-
-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=""
-
-DEPEND="x11-libs/gtk+:2
- >=media-libs/tiff-3.5.7
- virtual/jpeg
- >=media-libs/libpng-1.2.3"
-RDEPEND="${DEPEND}"
-
-S=${WORKDIR}/Ted-${PV}
-
-src_prepare() {
- epatch "${FILESDIR}"/${P}-libpng14.patch
-
- sed -i -e 's|/Ted/|/share/Ted/|' \
- "${S}"/appFrame/appFrameConfig.h.in \
- "${S}"/Ted/tedConfig.h.in || die
- mkdir lib || die
-}
-
-src_configure() {
- for dir in appFrame appUtil bitmap docBuf ind Ted tedPackage
- do
- cd "${S}"/${dir}
- econf --cache-file=../config.cache || die "configure ${dir} failed"
- done
-}
-
-src_compile() {
- emake package.shared || die "make package.shared failed"
-}
-
-src_install() {
- cd "${S}"/tedPackage
- RPM_BUILD_ROOT=${D} ./installTed.sh COMMON || die "install failed"
-
- dodir /usr/share
- mv "${D}"usr/Ted "${D}"usr/share/Ted
-}