diff options
author | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-29 22:45:05 +0000 |
---|---|---|
committer | Samuli Suominen <ssuominen@gentoo.org> | 2009-12-29 22:45:05 +0000 |
commit | 5a84ce5e6d8c68e60bdb91561f9f2f295bd9c4f9 (patch) | |
tree | e9cae41046933a8e4ce1e71c1beb6ed5a2c7622f /app-text/tuxcards | |
parent | Switch to using qt3 eclass instead of deprecated kde eclass (bug #298740) (diff) | |
download | gentoo-2-5a84ce5e6d8c68e60bdb91561f9f2f295bd9c4f9.tar.gz gentoo-2-5a84ce5e6d8c68e60bdb91561f9f2f295bd9c4f9.tar.bz2 gentoo-2-5a84ce5e6d8c68e60bdb91561f9f2f295bd9c4f9.zip |
Version bump.
(Portage version: 2.2_rc61/cvs/Linux x86_64)
Diffstat (limited to 'app-text/tuxcards')
-rw-r--r-- | app-text/tuxcards/ChangeLog | 9 | ||||
-rw-r--r-- | app-text/tuxcards/tuxcards-2.2.ebuild | 30 |
2 files changed, 37 insertions, 2 deletions
diff --git a/app-text/tuxcards/ChangeLog b/app-text/tuxcards/ChangeLog index f8d901c75413..ca763c544562 100644 --- a/app-text/tuxcards/ChangeLog +++ b/app-text/tuxcards/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-text/tuxcards -# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-text/tuxcards/ChangeLog,v 1.20 2008/06/28 15:44:25 loki_val Exp $ +# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/tuxcards/ChangeLog,v 1.21 2009/12/29 22:45:05 ssuominen Exp $ + +*tuxcards-2.2 (29 Dec 2009) + + 29 Dec 2009; Samuli Suominen <ssuominen@gentoo.org> +tuxcards-2.2.ebuild: + Version bump. 28 Jun 2008; Peter Alfredsen <loki_val@gentoo.org> tuxcards-1.2.ebuild: inherit qt3 to get addwrite goodness for bug #229255 diff --git a/app-text/tuxcards/tuxcards-2.2.ebuild b/app-text/tuxcards/tuxcards-2.2.ebuild new file mode 100644 index 000000000000..a5b5282dc9b6 --- /dev/null +++ b/app-text/tuxcards/tuxcards-2.2.ebuild @@ -0,0 +1,30 @@ +# Copyright 1999-2009 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-text/tuxcards/tuxcards-2.2.ebuild,v 1.1 2009/12/29 22:45:05 ssuominen Exp $ + +EAPI=2 +inherit eutils qt4 + +DESCRIPTION="A hierarchical notebook" +HOMEPAGE="http://www.tuxcards.de/" +SRC_URI="http://www.tuxcards.de/src/${P}/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~sparc ~x86" +IUSE="" + +DEPEND="x11-libs/qt-gui:4" + +S=${WORKDIR}/${PN} + +src_configure() { + eqmake4 +} + +src_install() { + dobin ${PN} || die + newicon src/icons/lo32-app-tuxcards.png ${PN}.png + make_desktop_entry ${PN} TuxCards ${PN} "Qt;Utility" + dodoc AUTHORS README +} |