summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIskren Slavov <iskren.s@gmail.com>2010-04-19 17:58:09 +0300
committerIskren Slavov <iskren.s@gmail.com>2010-04-19 17:58:09 +0300
commit071fe48b9ed99e1012d84a7e94e006ef913abcee (patch)
tree7342c2274ad87bee8a807566a432c55a46f214b4
parentfixes to liferea (thanks to Victor Ostroga) (diff)
downloadwish-071fe48b9ed99e1012d84a7e94e006ef913abcee.tar.gz
wish-071fe48b9ed99e1012d84a7e94e006ef913abcee.tar.bz2
wish-071fe48b9ed99e1012d84a7e94e006ef913abcee.zip
remove old version of gbgoffice-1.4
-rw-r--r--app-dicts/gbgoffice/gbgoffice-1.4.ebuild67
1 files changed, 0 insertions, 67 deletions
diff --git a/app-dicts/gbgoffice/gbgoffice-1.4.ebuild b/app-dicts/gbgoffice/gbgoffice-1.4.ebuild
deleted file mode 100644
index 6282cca..0000000
--- a/app-dicts/gbgoffice/gbgoffice-1.4.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils gnome2
-
-DESCRIPTION="A very nice GTK based Bulgarian <=> English dictionary"
-HOMEPAGE="http://gbgoffice.info"
-SRC_URI="http://openfmi.net/frs/download.php/341/${P}.tar.gz
- mirror://sourceforge/bgoffice/Full%20Pack%20of%20Dictionaries/1.0/full-pack.tar.bz2"
-
-SLOT="0"
-LICENSE="GPL-2"
-KEYWORDS="~x86 ~amd64"
-IUSE="light"
-
-DEPEND=">=dev-libs/libsigc++-2.2.3
- >=dev-cpp/gtkmm-2.16.0
- >=dev-cpp/glibmm-2.20.1"
-
-src_unpack() {
- einfo "Source unpacking..."
- if [ "${A}" != "" ]; then
- unpack ${A} || die "Failed to unpack needed sources!"
- fi
- cd ${S}
-
- # The app is unsupported, so lot's of patches should be applied
- epatch "${FILESDIR}"/${PV}-01_re-autogen.patch
- epatch "${FILESDIR}"/${PV}-02_gcc-4.3.patch
- epatch "${FILESDIR}"/${PV}-03_gcc-4.3-const-chars.patch
- epatch "${FILESDIR}"/${PV}-04_sigc-deprecated-fix.patch
- epatch "${FILESDIR}"/${PV}-05_convert-const.patch
- epatch "${FILESDIR}"/${PV}-06_fsf-address-fix.patch
-}
-
-src_compile() {
- local myconf
- if use light; then
- myconf="${myconf} --enable-light-version"
- fi
- einfo "Configuring..."
- if [ -x ./configure ]; then
- econf ${myconf} || die "Configuring failed!"
- fi
- einfo "Building..."
- if [ -f Makefile ] || [ -f GNUmakefile ] || [ -f makefile ]; then
- emake || die "Building failed!"
- fi
-}
-
-src_install() {
- #Installing dict
- einfo "Installing gbgoffice..."
- emake DESTDIR="${D}" install #|| die "Install failed!"
-
- # Install the full dictionary pack
- einfo "Installing full dictionary pack..."
- insinto "/usr/share/bgoffice"
- for file in ${WORKDIR}/full-pack/data/*;
- do
- doins ${file}
- done
-
- # Install GNOME icon
- insinto "/usr/share/applications"
- doins "${FILESDIR}"/gbgoffice.desktop
-}