diff options
author | Gunnar Wrobel <wrobel@gentoo.org> | 2008-01-23 11:23:26 +0000 |
---|---|---|
committer | Gunnar Wrobel <wrobel@gentoo.org> | 2008-01-23 11:23:26 +0000 |
commit | f03796ad68ebb63bccdb196607d1ff329fde0caa (patch) | |
tree | 2ff72f3bfabba49e658274d38a7712bb03cd101e /app-office | |
parent | Fix for bug #206819. (diff) | |
download | gentoo-2-f03796ad68ebb63bccdb196607d1ff329fde0caa.tar.gz gentoo-2-f03796ad68ebb63bccdb196607d1ff329fde0caa.tar.bz2 gentoo-2-f03796ad68ebb63bccdb196607d1ff329fde0caa.zip |
Added taxbird-0.11_rc.
(Portage version: 2.1.3.19)
Diffstat (limited to 'app-office')
-rw-r--r-- | app-office/taxbird/ChangeLog | 9 | ||||
-rw-r--r-- | app-office/taxbird/files/digest-taxbird-0.11_rc | 3 | ||||
-rw-r--r-- | app-office/taxbird/taxbird-0.11_rc.ebuild | 57 |
3 files changed, 67 insertions, 2 deletions
diff --git a/app-office/taxbird/ChangeLog b/app-office/taxbird/ChangeLog index 443e25879ef5..39b70eac1085 100644 --- a/app-office/taxbird/ChangeLog +++ b/app-office/taxbird/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-office/taxbird -# Copyright 1999-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-office/taxbird/ChangeLog,v 1.12 2007/09/08 20:06:41 hanno Exp $ +# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/taxbird/ChangeLog,v 1.13 2008/01/23 11:23:25 wrobel Exp $ + +*taxbird-0.11_rc (23 Jan 2008) + + 23 Jan 2008; <wrobel@gentoo.org> +taxbird-0.11_rc.ebuild: + Added taxbird-0.11_rc. 08 Sep 2007; Hanno Boeck <hanno@gentoo.org> taxbird-0.10.ebuild: Needs guile with regex support. diff --git a/app-office/taxbird/files/digest-taxbird-0.11_rc b/app-office/taxbird/files/digest-taxbird-0.11_rc new file mode 100644 index 000000000000..57fedbde78a5 --- /dev/null +++ b/app-office/taxbird/files/digest-taxbird-0.11_rc @@ -0,0 +1,3 @@ +MD5 b461c91bcd998d7c6b3d913f06ce81f7 taxbird-0.11-rc.tar.gz 441592 +RMD160 dc5316ab57ea1b22824a00396c81a87f3f08bf28 taxbird-0.11-rc.tar.gz 441592 +SHA256 0689613bf07db11c73ca125dda5e5a4a8f1973d7c0be6af0214afebd287021d6 taxbird-0.11-rc.tar.gz 441592 diff --git a/app-office/taxbird/taxbird-0.11_rc.ebuild b/app-office/taxbird/taxbird-0.11_rc.ebuild new file mode 100644 index 000000000000..6c4d3b1e95ce --- /dev/null +++ b/app-office/taxbird/taxbird-0.11_rc.ebuild @@ -0,0 +1,57 @@ +# Copyright 1999-2008 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/app-office/taxbird/taxbird-0.11_rc.ebuild,v 1.1 2008/01/23 11:23:25 wrobel Exp $ + +inherit eutils fdo-mime flag-o-matic + +MY_P=${P/_/-} +MY_PV=${PV/_*/} + +DESCRIPTION="Taxbird provides a GUI to submit tax forms to the german digital tax project ELSTER." +HOMEPAGE="http://www.taxbird.de/" + +SRC_URI="http://www.taxbird.de/tmp/${MY_P}.tar.gz" + +LICENSE="GPL-2" +KEYWORDS="~amd64 ~x86" +SLOT="0" +IUSE="" + +S="${WORKDIR}/${PN}-${MY_PV}" + +DEPEND="dev-libs/libgeier + dev-libs/openssl + =gnome-extra/gtkhtml-2* + gnome-base/libgnomeui + sys-devel/gettext + dev-scheme/guile" + +pkg_setup() { + if has_version ">=dev-scheme/guile-1.8.0" && ! built_with_use dev-scheme/guile discouraged deprecated regex; then + eerror "This package requires dev-scheme/guile with USE=\"discouraged deprecated regex\"." + die "Please reemerge dev-scheme/guile with USE=\"discouraged deprecated regex\"." + fi + + filter-ldflags -Wl,--as-needed --as-needed +} + +src_compile() { + econf || die "Configure failed!" + emake || die "Make failed!" +} + +src_install() { + + dodoc README* + + einstall || die "Installation failed!" + + # clean out the installed mime files, those get recreated in the pkg_postinst function + einfo "Deleting mime files in ${D}/usr/share/mime" + rm -f "${D}/usr/share/mime/{aliases,globs,magic,mime.cache,subclasses,XMLnamespaces}" +} + +pkg_postinst() { + fdo-mime_mime_database_update + fdo-mime_desktop_database_update +} |