34 lines
729 B
Bash
34 lines
729 B
Bash
# Copyright 1999-2018 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=6
|
|
|
|
DESCRIPTION="a dockapp for browsing dacode news and board sites"
|
|
HOMEPAGE="http://hules.free.fr/wmcoincoin"
|
|
SRC_URI="http://hules.free.fr/${PN}/download/${P}.tar.gz"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~ppc ~x86"
|
|
IUSE="nls xinerama"
|
|
|
|
RDEPEND="x11-libs/gtk+:2
|
|
media-libs/imlib2[X]
|
|
x11-libs/libXext
|
|
x11-libs/libXpm
|
|
x11-libs/libX11
|
|
x11-libs/libXft
|
|
xinerama? ( x11-libs/libXinerama )"
|
|
DEPEND="${RDEPEND}
|
|
virtual/pkgconfig
|
|
x11-base/xorg-proto
|
|
x11-libs/libXt
|
|
nls? ( sys-devel/gettext )"
|
|
|
|
DOCS="AUTHORS ChangeLog NEWS README"
|
|
|
|
src_configure() {
|
|
econf \
|
|
$(use_enable nls) \
|
|
$(use_enable xinerama)
|
|
}
|