Categories

A sample text widget

Etiam pulvinar consectetur dolor sed malesuada. Ut convallis euismod dolor nec pretium. Nunc ut tristique massa.

Nam sodales mi vitae dolor ullamcorper et vulputate enim accumsan. Morbi orci magna, tincidunt vitae molestie nec, molestie at mi. Nulla nulla lorem, suscipit in posuere in, interdum non magna.

vym ebuild foo

for future reference:

Since the vym ebuild is a bit outdated, i asked a friend to hack me a new fancy and shiny one. It works but comes with no waranties and probably doesnt meet the Gentoo quality standards. If you are interested in maintaining it, please feel free to do so. A “proper change analysis” needs to be done (whatever that means). See Gentoo bug report for further details.

# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI=2
DESCRIPTION="View Your Mind, a mindmap tool"
HOMEPAGE="http://www.insilmaril.de/vym/"
EGIT_REPO_URI="git://vym.git.sourceforge.net/gitroot/vym/vym"

# that would be the place to insert the commit hash of git-master
EGIT_COMMIT="b9038d614f66c911b4a3847b171192da161318fd"  # aka 2.2.4

inherit eutils qt4-r2 git-2
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/${PF}@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
make_desktop_entry vym vym /usr/share/vym/icons/vym.png Education
}