Advertisement
Guest User

Untitled

a guest
Apr 28th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.80 KB | None | 0 0
  1. # Copyright 1999-2014 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. # $Id$
  4.  
  5. EAPI=5
  6. GCONF_DEBUG=no
  7.  
  8. inherit gnome2
  9.  
  10. DESCRIPTION="GTK+ based algebraic and RPN calculator"
  11. HOMEPAGE="http://galculator.mnim.org/"
  12. SRC_URI="http://galculator.mnim.org/downloads/${P}.tar.bz2"
  13.  
  14. LICENSE="GPL-2+"
  15. SLOT="0"
  16. KEYWORDS="~alpha amd64 ~arm ~ppc x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos"
  17. IUSE="gtk3"
  18.  
  19. RDEPEND="
  20. dev-libs/glib:2
  21. !gtk3? ( x11-libs/gtk+:2 )
  22. gtk3? ( x11-libs/gtk+:3 )
  23. x11-libs/pango
  24. "
  25. DEPEND="${RDEPEND}
  26. dev-util/intltool
  27. sys-devel/flex
  28. sys-devel/gettext
  29. virtual/pkgconfig
  30. "
  31.  
  32. DOCS="AUTHORS ChangeLog NEWS README THANKS doc/shortcuts"
  33.  
  34. src_configure(){
  35. gnome2_src_configure $(use_enable gtk3) || die "Error on configure"
  36. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement