Advertisement
Guest User

muffin-1.8.1.ebuild

a guest
May 13th, 2013
231
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.09 KB | None | 0 0
  1. # Copyright 1999-2012 Gentoo Foundation
  2. # Distributed under the terms of the GNU General Public License v2
  3. # $Header: $
  4.  
  5. EAPI="5"
  6. GCONF_DEBUG="no"
  7. GNOME2_LA_PUNT="yes"
  8.  
  9. inherit autotools gnome2
  10.  
  11. DESCRIPTION="Compositing window manager forked from Mutter for use with Cinnamon"
  12. HOMEPAGE="http://cinnamon.linuxmint.com/"
  13.  
  14. MY_PV="${PV/_p/-UP}"
  15. MY_P="${PN}-${MY_PV}"
  16.  
  17. SRC_URI="https://github.com/linuxmint/muffin/tarball/${MY_PV} -> ${MY_P}.tar.gz"
  18.  
  19. LICENSE="GPL-2+"
  20. SLOT="0"
  21. IUSE="+introspection test xinerama"
  22. KEYWORDS="~amd64 ~x86"
  23.  
  24. COMMON_DEPEND=">=x11-libs/pango-1.2[X,introspection?]
  25. >=x11-libs/cairo-1.10:=[X]
  26. x11-libs/gdk-pixbuf:2[introspection?]
  27. >=x11-libs/gtk+-3.3.7:3[X,introspection?]
  28. >=dev-libs/glib-2.25.10:2
  29. >=media-libs/clutter-1.9.10:1.0=[introspection?]
  30. media-libs/cogl:1.0=[introspection?]
  31. >=media-libs/libcanberra-0.26[gtk3]
  32. >=x11-libs/startup-notification-0.7:=
  33. >=x11-libs/libXcomposite-0.2
  34. >=gnome-base/gsettings-desktop-schemas-3.3.0[introspection?]
  35.  
  36. x11-libs/libICE
  37. x11-libs/libSM
  38. x11-libs/libX11
  39. x11-libs/libXcursor
  40. x11-libs/libXdamage
  41. x11-libs/libXext
  42. x11-libs/libXfixes
  43. x11-libs/libXrandr
  44. x11-libs/libXrender
  45.  
  46. gnome-extra/zenity
  47.  
  48. introspection? ( >=dev-libs/gobject-introspection-0.9.5 )
  49. xinerama? ( x11-libs/libXinerama )
  50. "
  51. DEPEND="${COMMON_DEPEND}
  52. >=app-text/gnome-doc-utils-0.8
  53. sys-devel/gettext
  54. >=dev-util/intltool-0.35
  55. virtual/pkgconfig
  56. test? ( app-text/docbook-xml-dtd:4.5 )
  57. xinerama? ( x11-proto/xineramaproto )
  58. x11-proto/xextproto
  59. x11-proto/xproto"
  60. RDEPEND="${COMMON_DEPEND}
  61. !x11-misc/expocity"
  62.  
  63. S="${WORKDIR}/linuxmint-muffin-91e1d59"
  64.  
  65. src_prepare() {
  66. # Regenerate obsolete Makefile.in
  67. eautoreconf
  68. gnome2_src_prepare
  69. }
  70.  
  71. src_configure() {
  72. DOCS="AUTHORS ChangeLog HACKING MAINTAINERS NEWS README* *.txt doc/*.txt"
  73. gnome2_src_configure \
  74. --disable-static \
  75. --enable-shape \
  76. --enable-sm \
  77. --enable-startup-notification \
  78. --enable-xsync \
  79. --enable-verbose-mode \
  80. --enable-compile-warnings=maximum \
  81. --with-libcanberra \
  82. $(use_enable introspection) \
  83. $(use_enable xinerama)
  84. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement