diff options
author | Mamoru Komachi <usata@gentoo.org> | 2004-11-26 13:58:21 +0000 |
---|---|---|
committer | Mamoru Komachi <usata@gentoo.org> | 2004-11-26 13:58:21 +0000 |
commit | a4e63f9a6044fe4ccf45d0566473b286d874f03e (patch) | |
tree | fe4f445b614f3e4e37671ce0c43c095c89818354 /app-office | |
parent | masked gulkalka per bug 70666 (diff) | |
download | gentoo-2-a4e63f9a6044fe4ccf45d0566473b286d874f03e.tar.gz gentoo-2-a4e63f9a6044fe4ccf45d0566473b286d874f03e.tar.bz2 gentoo-2-a4e63f9a6044fe4ccf45d0566473b286d874f03e.zip |
Use kde-functions.eclass. This fixes bug #72515.
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/texmaker/ChangeLog | 5 | ||||
-rw-r--r-- | app-office/texmaker/texmaker-1.11.ebuild | 14 |
2 files changed, 11 insertions, 8 deletions
diff --git a/app-office/texmaker/ChangeLog b/app-office/texmaker/ChangeLog index 687bc79bdf0e..9a1fa8843857 100644 --- a/app-office/texmaker/ChangeLog +++ b/app-office/texmaker/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for app-office/texmaker # Copyright 1999-2004 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.1 2004/11/07 07:32:51 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/ChangeLog,v 1.2 2004/11/26 13:58:21 usata Exp $ + + 26 Nov 2004; Mamoru KOMACHI <usata@gentoo.org> texmaker-1.11.ebuild: + Use kde-functions.eclass. This fixes bug #72515. *texmaker-1.11 (07 Nov 2004) diff --git a/app-office/texmaker/texmaker-1.11.ebuild b/app-office/texmaker/texmaker-1.11.ebuild index 1e8359a9ae11..5ecea5f3455e 100644 --- a/app-office/texmaker/texmaker-1.11.ebuild +++ b/app-office/texmaker/texmaker-1.11.ebuild @@ -1,6 +1,8 @@ # Copyright 1999-2004 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/texmaker-1.11.ebuild,v 1.1 2004/11/07 07:32:51 usata Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-office/texmaker/texmaker-1.11.ebuild,v 1.2 2004/11/26 13:58:21 usata Exp $ + +inherit kde-functions DESCRIPTION="a nice LaTeX-IDE" @@ -16,12 +18,13 @@ KEYWORDS="~x86" IUSE="" DEPEND="virtual/x11 - >=x11-libs/qt-3.2* virtual/tetex app-text/psutils virtual/ghostscript media-libs/netpbm" +need-qt 3.2 + src_compile() { einfo "using QTDIR: '$QTDIR'." @@ -37,12 +40,9 @@ src_compile() { } src_install() { - exeinto /usr/bin - doexe texmaker || die "doexe failed" + dobin texmaker || die "doexe failed" - PIX=/usr/share/pixmaps/texmaker - dodir ${PIX} - insinto ${PIX} + insinto /usr/share/pixmaps/texmaker doins utilities/texmaker*.png || die "doins failed." dodoc utilities/{AUTHORS,COPYING} || die "dodoc failed" |