summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--app-editors/texworks/Manifest3
-rw-r--r--app-editors/texworks/files/TeXworks.desktop12
-rw-r--r--app-editors/texworks/texworks-0.2.3.ebuild58
3 files changed, 0 insertions, 73 deletions
diff --git a/app-editors/texworks/Manifest b/app-editors/texworks/Manifest
deleted file mode 100644
index 7650d74..0000000
--- a/app-editors/texworks/Manifest
+++ /dev/null
@@ -1,3 +0,0 @@
-AUX TeXworks.desktop 241 RMD160 326678a58f97ae2bce63f33befad47f8b783c342 SHA1 d82e5ffeda775a77ea70094936e8f4c143b906ea SHA256 64c1813cbb2c3613a78ef697b2354f510b9eeeeea11160fe1c7b5ebaaca7abff
-DIST texworks-0.2.3.tar.gz 1898960 RMD160 6f50dc1131f8fa614b7720bbf6036665aa4cafbe SHA1 4e0e174cf8524c42e1347f2aa8bad7b7801aaa8b SHA256 8813aa9dbd4e716d5f41e5451323d338bc0521c260c15681a159f41dc97ee47f
-EBUILD texworks-0.2.3.ebuild 1462 RMD160 be73157b00d8a29b7fc175f777f0cded569aa2f7 SHA1 4ff61f8a313422732a877753eeaa6b179ad1bfdc SHA256 176468dbb5864a3ae6ec5caf071c0cea591c83074e8139fcfbfde9644817364c
diff --git a/app-editors/texworks/files/TeXworks.desktop b/app-editors/texworks/files/TeXworks.desktop
deleted file mode 100644
index 63cf20c..0000000
--- a/app-editors/texworks/files/TeXworks.desktop
+++ /dev/null
@@ -1,12 +0,0 @@
-[Desktop Entry]
-Categories=Office;Publishing;
-Exec=texworks
-GenericName=TeXworks LaTeX Editor
-Comment=Simple LaTeX development environment
-Icon=TeXworks
-MimeType=text/x-tex;
-Name=TeXworks
-StartupNotify=false
-Terminal=false
-Type=Application
-
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 0d4594a..0000000
--- a/app-editors/texworks/texworks-0.2.3.ebuild
+++ /dev/null
@@ -1,58 +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
- cp "${FILESDIR}/TeXworks.desktop" "${S}" || 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
- insinto /usr/share/pixmaps/
- doins res/images/TeXworks.png || die
- insinto /usr/share/applications/
- doins TeXworks.desktop || die
-}