summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis Ballier <aballier@gentoo.org>2008-11-28 11:01:05 +0000
committerAlexis Ballier <aballier@gentoo.org>2008-11-28 11:01:05 +0000
commit7fa33d67f1b98488c3aacf3bde15c0debca98b63 (patch)
tree115c1ccfc2a96826468c83f5033363ff621d2b06
parentversion bump, bug #248921 (diff)
downloadgentoo-2-7fa33d67f1b98488c3aacf3bde15c0debca98b63.tar.gz
gentoo-2-7fa33d67f1b98488c3aacf3bde15c0debca98b63.tar.bz2
gentoo-2-7fa33d67f1b98488c3aacf3bde15c0debca98b63.zip
remove old
(Portage version: 2.2_rc16/cvs/Linux 2.6.27.7 x86_64)
-rw-r--r--app-office/texmaker/ChangeLog5
-rw-r--r--app-office/texmaker/texmaker-1.60.ebuild66
2 files changed, 4 insertions, 67 deletions
diff --git a/app-office/texmaker/ChangeLog b/app-office/texmaker/ChangeLog
index b11e4c8529c1..134a2af3d869 100644
--- a/app-office/texmaker/ChangeLog
+++ b/app-office/texmaker/ChangeLog
@@ -1,6 +1,9 @@
# ChangeLog for app-office/texmaker
# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.52 2008/11/28 10:58:49 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.53 2008/11/28 11:01:05 aballier Exp $
+
+ 28 Nov 2008; Alexis Ballier <aballier@gentoo.org> -texmaker-1.60.ebuild:
+ remove old
*texmaker-1.80 (28 Nov 2008)
diff --git a/app-office/texmaker/texmaker-1.60.ebuild b/app-office/texmaker/texmaker-1.60.ebuild
deleted file mode 100644
index 0d58d07771fb..000000000000
--- a/app-office/texmaker/texmaker-1.60.ebuild
+++ /dev/null
@@ -1,66 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/texmaker-1.60.ebuild,v 1.7 2008/05/11 19:38:14 aballier Exp $
-
-EAPI=1
-
-inherit eutils versionator qt4
-
-DESCRIPTION="A nice LaTeX-IDE"
-
-# The upstream version numbering is bad, so we have to remove a dot in the
-# minor version number
-MAJOR="$(get_major_version)"
-MINOR_1="$(($(get_version_component_range 2)/10))"
-MINOR_2="$(($(get_version_component_range 2)%10))"
-if [ ${MINOR_2} -eq "0" ] ; then
- MY_P="${PN}-${MAJOR}.${MINOR_1}"
-else
- MY_P="${PN}-${MAJOR}.${MINOR_1}.${MINOR_2}"
-fi
-
-S="${WORKDIR}/${MY_P}"
-HOMEPAGE="http://www.xm1math.net/texmaker/"
-SRC_URI="http://www.xm1math.net/texmaker/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-
-SLOT="0"
-
-KEYWORDS="amd64 ppc ~ppc64 sparc x86 ~x86-fbsd"
-
-IUSE=""
-
-DEPEND="x11-libs/libX11
- x11-libs/libXext
- app-text/aspell
- || ( ( x11-libs/qt-gui x11-libs/qt-core ) >=x11-libs/qt-4.3.0:4 )"
-
-RDEPEND="${DEPEND}
- virtual/latex-base
- app-text/psutils
- virtual/ghostscript
- media-libs/netpbm"
-
-src_compile() {
- eqmake4 texmaker.pro || die "qmake failed"
- emake || die "emake failed"
-}
-
-src_install() {
- emake INSTALL_ROOT="${D}" install || die "make install failed"
-
- insinto /usr/share/pixmaps/texmaker
- doins utilities/texmaker*.png || die "doins failed."
- doins utilities/texmaker.svg || die "doins failed."
-
- dodoc utilities/AUTHORS utilities/CHANGELOG.txt || die "dodoc failed"
-
- make_desktop_entry texmaker Texmaker "/usr/share/pixmaps/texmaker/texmaker48x48.png" Office
-}
-
-pkg_postinst() {
- elog "A user manual with many screenshots is available at:"
- elog "/usr/share/${PN}/usermanual_en.html"
- elog
-}