Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 155610 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/portage/x11-plugins/gkrellsun/gkrellsun-1.0.0.ebuild (-10 / +7 lines)
Lines 4-10 Link Here
4
4
5
inherit multilib
5
inherit multilib
6
6
7
IUSE=""
7
IUSE="nls"
8
DESCRIPTION="A GKrellM plugin that shows sunrise and sunset times."
8
DESCRIPTION="A GKrellM plugin that shows sunrise and sunset times."
9
HOMEPAGE="http://gkrellsun.sourceforge.net/"
9
HOMEPAGE="http://gkrellsun.sourceforge.net/"
10
SRC_URI="mirror://sourceforge/gkrellsun/${P}.tar.gz"
10
SRC_URI="mirror://sourceforge/gkrellsun/${P}.tar.gz"
Lines 13-30 Link Here
13
LICENSE="GPL-2"
13
LICENSE="GPL-2"
14
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
14
KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
15
15
16
DEPEND="=app-admin/gkrellm-2*
16
DEPEND=">=app-admin/gkrellm-2.2
17
	>=media-libs/imlib-1.9.10-r1"
17
	nls? (sys-devel/gettext)"
18
18
19
src_compile() {
19
src_compile () {
20
	cd ${S}/src20
20
	use nls && myconf="$myconf enable_nls=1"
21
	emake || die
21
	emake ${myconf}
22
}
22
}
23
23
24
src_install () {
24
src_install () {
25
	make DESTDIR="${D}" PREFIX="/usr" PLUGINDIR="${D}/usr/$(get_libdir)/gkrellm2/plugins" ${myconf} install
25
	dodoc README AUTHORS COPYING
26
	dodoc README AUTHORS COPYING
26
27
	cd ${S}/src20
28
	insinto /usr/$(get_libdir)/gkrellm2/plugins
29
	doins gkrellsun.so
30
}
27
}

Return to bug 155610