summaryrefslogtreecommitdiff
path: root/app-editors
diff options
context:
space:
mode:
authorBertrand Jacquin <beber@meleeweb.net>2006-01-03 02:57:09 +0000
committerBertrand Jacquin <beber@meleeweb.net>2006-01-03 02:57:09 +0000
commita401a462123164330b1326b2bf51b4a411e2ed22 (patch)
treefae6de65616c81fb9680c70e8e67cef40a5343a3 /app-editors
parentdel net-wireless (diff)
downloadportage-a401a462123164330b1326b2bf51b4a411e2ed22.tar.xz
del kile
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/kile/Manifest2
-rw-r--r--app-editors/kile/files/digest-kile-1.82
-rw-r--r--app-editors/kile/kile-1.8.ebuild65
3 files changed, 0 insertions, 69 deletions
diff --git a/app-editors/kile/Manifest b/app-editors/kile/Manifest
deleted file mode 100644
index 678aeef4..00000000
--- a/app-editors/kile/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 56c9439b1bc2dc12ba0c96e343c6edd2 kile-1.8.ebuild 1902
-MD5 384b40e7b3e389f10e3ffcf0814b3394 files/digest-kile-1.8 129
diff --git a/app-editors/kile/files/digest-kile-1.8 b/app-editors/kile/files/digest-kile-1.8
deleted file mode 100644
index 59ce404f..00000000
--- a/app-editors/kile/files/digest-kile-1.8
+++ /dev/null
@@ -1,2 +0,0 @@
-MD5 41018a7bd60d460de3043187ab500d7d kile-1.8.tar.bz2 2528693
-MD5 6c8d6f9c20c4f67c825951a224fa641f kile-i18n-1.7.tar.bz2 1299112
diff --git a/app-editors/kile/kile-1.8.ebuild b/app-editors/kile/kile-1.8.ebuild
deleted file mode 100644
index f4c7dd3d..00000000
--- a/app-editors/kile/kile-1.8.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2005 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-editors/kile/kile-1.8_beta2.ebuild,v 1.2 2005/05/13 10:31:05 greg_g Exp $
-
-inherit kde
-
-DESCRIPTION="A Latex Editor and TeX shell for kde"
-HOMEPAGE="http://kile.sourceforge.net"
-SRC_URI="mirror://sourceforge/kile/${P}.tar.bz2"
-LICENSE="GPL-2"
-
-SLOT=0
-KEYWORDS="~x86"
-IUSE="kde"
-
-RDEPEND="dev-lang/perl
- virtual/tetex
- kde? ( || ( ( kde-base/kpdf
- kde-base/kghostview
- kde-base/kdvi
- kde-base/kviewshell )
- kde-base/kdegraphics ) )"
-
-need-kde 3.2
-
-I18N="${PN}-i18n-1.7"
-
-# These are the languages and translated documentation supported by the Kile
-# i18n package as of version 1.7. If you are using this ebuild as a model for another
-# ebuild for another version of Kile, DO check whether these values are different.
-# Check the {po,doc}/Makefile.am files in kile-i18n package.
-LANGS="da de en_GB es et fr hu it nl pt pt_BR sr sv ta"
-LANGS_DOC="da es et fr it nl pt pt_BR sv"
-
-MAKE_PO=$(echo "${LINGUAS} ${LANGS}" | fmt -w 1 | sort | uniq -d | fmt -w 10000)
-MAKE_DOC=$(echo "${LINGUAS} ${LANGS_DOC}" | fmt -w 1 | sort | uniq -d | fmt -w 10000)
-
-for X in $LANGS; do
- SRC_URI="${SRC_URI} linguas_${X}? ( mirror://sourceforge/kile/${I18N}.tar.bz2 )"
-done
-
-src_compile() {
- local _S=${S}
-
- # Build process of Kile
- kde_src_compile
-
- # Build process of Kile-i18n, select LINGUAS elements
- S=${WORKDIR}/${I18N}
- if [ -n "${LINGUAS}" -a -d "${S}" ] ; then
- sed -i -e "s:^SUBDIRS = .*:SUBDIRS = ${MAKE_PO}:" ${S}/po/Makefile.in
- sed -i -e "s:^SUBDIRS = .*:SUBDIRS = ${MAKE_DOC}:" ${S}/doc/Makefile.in
- kde_src_compile
- fi
- S=${_S}
-}
-
-src_install() {
- make DESTDIR=${D} install || die
-
- if [ -n "${LINGUAS}" -a -d "${WORKDIR}/${I18N}" ]; then
- cd ${WORKDIR}/${I18N}
- make DESTDIR=${D} install || die
- fi
-}