summaryrefslogtreecommitdiff
path: root/app-editors
diff options
context:
space:
mode:
Diffstat (limited to 'app-editors')
-rw-r--r--app-editors/texworks/Manifest2
-rw-r--r--app-editors/texworks/texworks-0.2.3.ebuild53
2 files changed, 0 insertions, 55 deletions
diff --git a/app-editors/texworks/Manifest b/app-editors/texworks/Manifest
deleted file mode 100644
index 1ce62039..00000000
--- a/app-editors/texworks/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST texworks-0.2.3.tar.gz 1898960 RMD160 6f50dc1131f8fa614b7720bbf6036665aa4cafbe SHA1 4e0e174cf8524c42e1347f2aa8bad7b7801aaa8b SHA256 8813aa9dbd4e716d5f41e5451323d338bc0521c260c15681a159f41dc97ee47f
-EBUILD texworks-0.2.3.ebuild 1281 RMD160 4d26928076ddb2619a96899a2b67a970004596be SHA1 b41a2c6ce64196f9e80627633c597dc292881db9 SHA256 fac93771e58476a056fe1e4f3da55cc397810274fe5e99153bbb7d0a772415b8
diff --git a/app-editors/texworks/texworks-0.2.3.ebuild b/app-editors/texworks/texworks-0.2.3.ebuild
deleted file mode 100644
index 21156597..00000000
--- a/app-editors/texworks/texworks-0.2.3.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: $
-
-EAPI="2"
-
-inherit qt4
-
-DESCRIPTION="A simple interface for working with TeX documents"
-HOMEPAGE="http://tug.org/texworks/"
-SRC_URI="http://${PN}.googlecode.com/files/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~x86 ~amd64"
-IUSE="+latex"
-
-LANGS="ar ca cs de es fa fr it ja ko nl pl pt_BR ru sl tr zh_CN"
-for LNG in ${LANGS}; do
- IUSE="${IUSE} linguas_${LNG}"
-done
-
-RDEPEND=">=x11-libs/qt-core-4.5.2
- >=x11-libs/qt-gui-4.5.2[dbus]
- >=app-text/poppler-0.12.3-r3[qt4]
- >=app-text/hunspell-1.2.8"
-DEPEND="${RDEPEND}"
-PDEPEND="latex? ( dev-texlive/texlive-latex ) !latex? ( app-text/texlive-core )"
-
-src_prepare() {
- # disable guessing path to tex binary, we already know it
- sed -i '\:system(./getDefaultBinPaths.sh): d' TeXworks.pro || die
- echo '#define DEFAULT_BIN_PATHS "/usr/bin"' > src/DefaultBinaryPaths.h || die
-
- sed -i '/TW_HELPPATH/ s:/usr/local:/usr:' TeXworks.pro || die
-}
-
-src_compile() {
- eqmake4 TeXworks.pro
- emake || die "emake failed"
-}
-
-src_install() {
- dobin ${PN} || die
-
- # install translations
- insinto /usr/share/${PN}/
- for LNG in ${LANGS}; do
- if use linguas_${LNG}; then
- doins trans/TeXworks_${LNG}.qm || die
- fi
- done
-}