summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen de Groot <yngwin@gentoo.org>2010-02-07 15:00:01 +0000
committerBen de Groot <yngwin@gentoo.org>2010-02-07 15:00:01 +0000
commit773f7f75160ebf806740f98f2699e27145022beb (patch)
tree72e8369141e9df911d22840d6ac58e372536a9da /x11-misc/vym
parentVersion bump to fix dups lines printing out and removal of old version. (diff)
downloadgentoo-2-773f7f75160ebf806740f98f2699e27145022beb.tar.gz
gentoo-2-773f7f75160ebf806740f98f2699e27145022beb.tar.bz2
gentoo-2-773f7f75160ebf806740f98f2699e27145022beb.zip
Version bump, with improvements from Christophe Lefebvre in bugs 296768 and 303799 (migrate to qt4-r2.eclass, correct doc install path.
(Portage version: 2.2_rc62/cvs/Linux x86_64)
Diffstat (limited to 'x11-misc/vym')
-rw-r--r--x11-misc/vym/ChangeLog10
-rw-r--r--x11-misc/vym/vym-1.12.6.ebuild42
2 files changed, 50 insertions, 2 deletions
diff --git a/x11-misc/vym/ChangeLog b/x11-misc/vym/ChangeLog
index 664771a609f5..08d71ad16617 100644
--- a/x11-misc/vym/ChangeLog
+++ b/x11-misc/vym/ChangeLog
@@ -1,6 +1,12 @@
# ChangeLog for x11-misc/vym
-# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-misc/vym/ChangeLog,v 1.20 2009/10/06 18:07:09 ayoy Exp $
+# Copyright 1999-2010 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/vym/ChangeLog,v 1.21 2010/02/07 15:00:01 yngwin Exp $
+
+*vym-1.12.6 (07 Feb 2010)
+
+ 07 Feb 2010; Ben de Groot <yngwin@gentoo.org> +vym-1.12.6.ebuild:
+ Version bump, with improvements from Christophe Lefebvre in bugs 296768
+ and 303799 (migrate to qt4-r2.eclass, correct doc install path.
06 Oct 2009; Dominik Kapusta <ayoy@gentoo.org> vym-1.10.0-r1.ebuild:
Removed alternative dependency on Qt metapackage
diff --git a/x11-misc/vym/vym-1.12.6.ebuild b/x11-misc/vym/vym-1.12.6.ebuild
new file mode 100644
index 000000000000..3e455187e6f7
--- /dev/null
+++ b/x11-misc/vym/vym-1.12.6.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2010 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: /var/cvsroot/gentoo-x86/x11-misc/vym/vym-1.12.6.ebuild,v 1.1 2010/02/07 15:00:01 yngwin Exp $
+
+EAPI=2
+inherit eutils qt4-r2
+
+DESCRIPTION="View Your Mind, a mindmap tool"
+HOMEPAGE="http://www.insilmaril.de/vym/"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="x11-libs/qt-gui:4[qt3support]
+ x11-libs/qt-sql:4[qt3support]"
+RDEPEND="${DEPEND}
+ x11-libs/libX11
+ x11-libs/libXext"
+
+src_prepare() {
+ qt4-r2_src_prepare
+
+ # Change installation directory and demo path
+ sed -i \
+ -e "s@/usr/local@/usr@g" \
+ -e "s@doc/packages/vym@doc/${P}@g" \
+ vym.pro || die "sed failed"
+}
+
+src_install() {
+ # Remove stripping stuff
+ sed -i "/-strip/d" Makefile || die "sed failed"
+
+ DOCS="README.txt"
+ qt4-r2_src_install
+
+ dobin scripts/exportvym || die "dobin failed"
+ make_desktop_entry vym vym /usr/share/vym/icons/vym.png Education
+}