diff options
author | Kacper Kowalik <xarthisius@gentoo.org> | 2010-08-23 19:48:31 +0000 |
---|---|---|
committer | Kacper Kowalik <xarthisius@gentoo.org> | 2010-08-23 19:48:31 +0000 |
commit | e67ecbef6bf3be83b76e717128dc718de7ac00a5 (patch) | |
tree | 7960f9510cb5a1f39902795079a5c655c741ea80 /sci-chemistry/gperiodic/gperiodic-2.0.7.ebuild | |
parent | amd64/x86 stable, bug #334061 (diff) | |
download | gentoo-2-e67ecbef6bf3be83b76e717128dc718de7ac00a5.tar.gz gentoo-2-e67ecbef6bf3be83b76e717128dc718de7ac00a5.tar.bz2 gentoo-2-e67ecbef6bf3be83b76e717128dc718de7ac00a5.zip |
Simplify ebuild by patching Makefile, correct nls, fix parallel make. Remove old version using built_with_use.
(Portage version: 2.1.8.3/cvs/Linux x86_64)
Diffstat (limited to 'sci-chemistry/gperiodic/gperiodic-2.0.7.ebuild')
-rw-r--r-- | sci-chemistry/gperiodic/gperiodic-2.0.7.ebuild | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/sci-chemistry/gperiodic/gperiodic-2.0.7.ebuild b/sci-chemistry/gperiodic/gperiodic-2.0.7.ebuild deleted file mode 100644 index f0cbfcb3f0cc..000000000000 --- a/sci-chemistry/gperiodic/gperiodic-2.0.7.ebuild +++ /dev/null @@ -1,64 +0,0 @@ -# Copyright 1999-2008 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 -# $Header: /var/cvsroot/gentoo-x86/sci-chemistry/gperiodic/gperiodic-2.0.7.ebuild,v 1.8 2008/05/29 19:59:40 markusle Exp $ - -inherit toolchain-funcs eutils - -DESCRIPTION="Periodic table application for Linux" -SRC_URI="mirror://gentoo/${P}.tar.gz" -HOMEPAGE="http://www.frantz.fi/software/gperiodic.php" - -KEYWORDS="x86 amd64" -SLOT="0" -LICENSE="GPL-2" -IUSE="nls" - -RDEPEND=">=sys-libs/ncurses-5.2 - =x11-libs/gtk+-2* - nls? ( sys-devel/gettext )" - -DEPEND="${RDEPEND} - dev-util/pkgconfig" - -pkg_setup() { - if ! built_with_use x11-libs/cairo X; then - die "gperiodic needs x11-libs/cairo emerged with USE=\"X\"" - fi -} - -src_compile() { - # The author has removed "unnecessary automake/autoconf setup" - - sed -i -e "s|-DGTK_DISABLE_DEPRECATED|${CFLAGS}|" Makefile - sed -i -e "/make clean/d" Makefile - sed -i -e "s|CC=gcc|CC=$(tc-getCC)|" Makefile - if ! use nls; then - sed -i -e "/make -C po/d" Makefile - fi - emake || die "emake failed!" -} - -src_install() { - sed -i -e "s|/usr/bin|${D}/usr/bin|" Makefile - sed -i -e "s|/usr/share|${D}/usr/share|" Makefile - sed -i -e "s|/usr/share|${D}/usr/share|" po/Makefile - - # Create directories - Makefile is quite broken. - dodir /usr/bin - dodir /usr/share/pixmaps - dodir /usr/share/applications - - make install || die "make install failed." - - # Fix permissions - chmod 644 "${D}/usr/share/pixmaps/*" - chmod 644 "${D}/usr/share/applications/*" - - # Fix the chemistry category in the .desktop file, bug 97202. - sed -i -e "s|Chemestry|Chemistry|" "${D}/usr/share/applications/gperiodic.desktop" - - # The man page seems to have been removed too. -# doman man/gperiodic.1 - dodoc AUTHORS ChangeLog README NEWS - newdoc po/README README.translation -} |