Browse Source

Fix building of shared libraries.

master
Michael Uleysky 6 years ago
parent
commit
e6ba766095
  1. 13
      x11-themes/gtk-engines/gtk-engines-0.12.ebuild

13
x11-themes/gtk-engines/gtk-engines-0.12.ebuild

@ -2,11 +2,12 @@
# Copyright 2016-2017 Michael Uleysky # Copyright 2016-2017 Michael Uleysky
# Distributed under the terms of the GNU General Public License v2 # Distributed under the terms of the GNU General Public License v2
GNOME_TARBALL_SUFFIX="gz" EAPI=6
inherit gnome.org inherit autotools
DESCRIPTION="GTK+1 standard engines and themes" DESCRIPTION="GTK+1 standard engines and themes"
HOMEPAGE="http://www.gtk.org/" HOMEPAGE="http://www.gtk.org/"
SRC_URI="mirror://gnome/sources/${PN}/${PV}/${PN}-${PV}.tar.gz"
LICENSE="GPL-2" LICENSE="GPL-2"
SLOT="1" SLOT="1"
@ -17,6 +18,14 @@ DEPEND="=x11-libs/gtk+-1.2*
>=media-libs/imlib-1.8 >=media-libs/imlib-1.8
!>media-libs/imlib-1.9.15-r5" !>media-libs/imlib-1.9.15-r5"
src_prepare() {
default
mv configure.in configure.ac || die
rm acinclude.m4 || die
elibtoolize
eautoreconf
}
src_install() { src_install() {
make DESTDIR="${D}" install || die "Installation failed" make DESTDIR="${D}" install || die "Installation failed"
dodoc AUTHORS ChangeLog README dodoc AUTHORS ChangeLog README

Loading…
Cancel
Save