Portage is a package management system used by Gentoo Linux
# ChangeLog for app-editors/ted
# Copyright 2002-2008 Gentoo Foundation; Distributed under the GPL v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ChangeLog,v 1.24 2008/01/18 03:26:24 dirtyepic Exp $
*ted-2.17-r1 (18 Jan 2008)
18 Jan 2008; Ryan Hill
-ted-2.17.ebuild, +ted-2.17-r1.ebuild:
Revision bump.
- rewrote src_install to not blow away ${T} (Bug #154997)
- backport fix for building with userpriv to stable ebuild (Bug #196939)
- general ebuild cleanup and QA
21 Feb 2007; Piotr JaroszyĆski
Transition to Manifest2.
05 Jan 2007; Danny van Dyk
-ted-2.12-r1.ebuild:
QA: Removed unused versions.
28 Aug 2005; Luis Medinas
Added ~amd64 keywords. Closes bug #103872.
*ted-2.17 (31 Mar 2005)
31 Mar 2005; Spider
New version, appears to be working ok. Fonts are a bit iffy (X bitmap fonts)
*ted-2.12-r1 (28 Mar 2005)
28 Mar 2005; Spider
Added a small build-fix to get around userpriv. The buildscript has a test
for RPM_BUILD_ROOT, so I'm just using that.
The package appears to have issues with missing fonts, not too sure if I have
100% functionality here.
07 Jun 2004; Daniel Black
ted-2.11.ebuild, ted-2.12.ebuild:
QA - IUSE fix
25 Apr 2004; Aron Griffis
ted-2.12.ebuild:
Add die following econf for bug 48950
06 Apr 2004;
I just got a note from the author that 2.15 is broken (tables support) but
that we should expect 2.16 in the next two months.
11 Jan 2004; Heinrich Wendel
ted-2.12.ebuild:
fixed motif dep
11 Jan 2004; Heinrich Wendel
ted-2.12.ebuild:
fixed motif dep
*ted-2.12 (24 Dec 2002)
02 apr 2003;
Removed xpm depend per bug 1446
29 Mar 2003; Alastair Tse
ted-2.12.ebuild:
replace openmotif with virtual/motif
12 Mar 2003; Martin Holzer
ted-2.12.ebuild:
added cd ${S}. Closes #17344
24 Dec 2002; Martin Holzer
Version pump submitted by Mark Hollomon #12625.
*ted-2.11 (09 Jul 2002)
06 Dec 2002; Rodney Rees
06 Aug 2002; Mark Guertin
Added ppc to keywords
09 Jul 2002; Phil Bordelon
New package. Original ebuild submitted by Mark Hollomon
lintool'd and repoman'd.
DIST ted-2.12.src.tar.gz 2560159 RMD160 866c9191b5c873ff0cda366cbfe3d0225a9283ae SHA1 dac08f56b4cf3dba367ca20eec321baf9cb4c30f SHA256 801a299d3cbfd39eb9da32b612ee958bb1f422c74848ff38d272a5209a581a53
DIST ted-2.17.src.tar.gz 3000864 RMD160 9096f0ae9793757af56d66a5fca647dbe59d4ffa SHA1 9411976c9310592fb7dcb2fe6a29b8633161db9e SHA256 e080ef452173ec781feb60026b4b01f37343e06c1a0083ca8ccc899c97c2368a
EBUILD ted-2.12.ebuild 1820 RMD160 5edff78bb27a1975c4e7634c0e2ab32b4dd75877 SHA1 b4525287ebfe14abf91cfb10a3daded1bb4d4c04 SHA256 7e12d617234eecee5eb5131d51d198feb06db1b6d8cad366a4ca75ad6f4020c4
EBUILD ted-2.17-r1.ebuild 1924 RMD160 341be3484a59aa4daee8d0d99ef33c91a73f7f65 SHA1 6c0de47eaeb305bb4c4d78f05c87ca721197519d SHA256 250e3f32562e28779b0e4c3f24498cf05c904270df309c912c7237b9cf9b9c12
MISC ChangeLog 2898 RMD160 6e4bee80208afe8ef6400d870ad95e0cc7a649ef SHA1 92c00212a51b5db43a02575a27cfbb4e816e8083 SHA256 63be5a7d5bffef48ca8f64c158b977ff1263164edb15bc6ef5e16a19764b914b
MISC metadata.xml 314 RMD160 25181cde297628576a9545bea3a76601485bfaf3 SHA1 ac16b621acf5a22b64859e3323d466fb556fc4c8 SHA256 736baab77aea9c4da199c01e3cd6877c271bd02357ff9b41b537a2232c6e96d7
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ted-2.12.ebuild,v 1.13 2008/01/18 03:26:24 dirtyepic Exp $
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"
IUSE=""
KEYWORDS="x86 ppc sparc"
DEPEND="x11-libs/openmotif
>=media-libs/tiff-3.5.7
>=media-libs/jpeg-6b
>=media-libs/libpng-1.2.3"
S="${WORKDIR}/Ted-${PV}"
src_unpack() {
unpack ${A}
cd ${S}/Ted
mv makefile.in makefile.in.orig
sed 's@^CFLAGS=@CFLAGS= -DDOCUMENT_DIR=\\"/usr/share/doc/${PF}/Ted/\\"@' makefile.in.orig > makefile.in
}
src_compile() {
# This is a fix for userpriv &| usersandbox.
export RPM_BUILD_ROOT="${S}"
for dir in Ted tedPackage appFrame appUtil ind bitmap libreg; do
cd ${S}/${dir}
econf --cache-file=../config.cache || die "econf failed"
done
# The makefile doesn't really allow parallel make, but it does
# no harm either.
cd ${S}
emake DEF_AFMDIR=-DAFMDIR=\\\"/usr/share/Ted/afm\\\" \
DEF_INDDIR=-DINDDIR=\\\"/usr/share/Ted/ind\\\" \
package.shared || die "couldnt emake"
}
src_install() {
# This is a fix for userpriv &| usersandbox.
export RPM_BUILD_ROOT="${S}"
mkdir ${T}/pkg
cd ${T}/pkg || die "Couldn't cd to package"
tar --use=gzip -xvf ${S}/tedPackage/Ted*.tar.gz || die "couldnt unpack tedPackage/Ted*.tar.gz"
dodir /usr/share/Ted
cp -R ${T}/pkg/afm ${D}/usr/share/Ted/afm || die "couldnt cp temp/pkg/afm"
cp -R ${T}/pkg/ind ${D}/usr/share/Ted/ind || die "couldnt cp temp/pkg/ind"
exeinto /usr/bin
doexe ${T}/pkg/bin/* || die "couldnt doexe temp/pkg/bin/*"
dodir /usr/share/doc/${P}
cp -R ${T}/pkg/Ted ${D}/usr/share/doc/${P} || die "couldnt cp temp/pkg/Ted"
}
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-editors/ted/ted-2.17-r1.ebuild,v 1.1 2008/01/18 03:26:24 dirtyepic Exp $
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/openmotif
>=media-libs/tiff-3.5.7
>=media-libs/jpeg-6b
>=media-libs/libpng-1.2.3"
S="${WORKDIR}/Ted-${PV}"
src_unpack() {
unpack ${A}
cd "${S}"/Ted
sed -i \
-e 's@^CFLAGS=@CFLAGS= -DDOCUMENT_DIR=\\"/usr/share/doc/${PF}/\\"@' \
makefile.in
}
src_compile() {
# This is a fix for userpriv &| usersandbox.
RPM_BUILD_ROOT="${S}"
for dir in Ted tedPackage appFrame appUtil ind bitmap libreg; do
cd "${S}"/${dir}
econf --cache-file=../config.cache || die "econf ${dir} failed"
done
# The makefile doesn't really allow parallel make, but it does
# no harm either.
cd "${S}"
emake \
DEF_AFMDIR=-DAFMDIR=\\\"/usr/share/Ted/afm\\\" \
DEF_INDDIR=-DINDDIR=\\\"/usr/share/Ted/ind\\\" \
package.shared \
|| die "emake failed"
}
src_install() {
# This build system is a little insane. Above we made a package, here we
# will unpack it and install it. We have to do it this way or it doesn't
# link properly. We could rewrite the Makefile, but this works just as
# well.
# This is a fix for userpriv &| usersandbox.
RPM_BUILD_ROOT="${S}"
mkdir "${S}"/pkg
cd "${S}"/pkg
# can't use unpack here
tar xf ../tedPackage/Ted*.tar.gz || die "failed unpacking ted package"
insinto /usr/share/Ted/afm
doins afm/*
insinto /usr/share/Ted/ind
doins ind/*
dobin bin/Ted
doman Ted/Ted.1
rm Ted/Ted.1
# must stay uncompressed (used internally)
insinto /usr/share/doc/${PF}
doins Ted/TedDocument-en_US.rtf
rm Ted/TedDocument-en_US.rtf
dodoc Ted/*
}