diff options
author | Matsuu Takuto <matsuu@gentoo.org> | 2010-12-30 05:43:21 +0000 |
---|---|---|
committer | Matsuu Takuto <matsuu@gentoo.org> | 2010-12-30 05:43:21 +0000 |
commit | faf54b83547689ed2304f51bfb7a7b19974f9f48 (patch) | |
tree | 57618c3f89e6c03e069745b48dcf70726638cbb3 /www-client/jd/jd-2.7.5_p101228.ebuild | |
parent | Fix path (diff) | |
download | historical-faf54b83547689ed2304f51bfb7a7b19974f9f48.tar.gz historical-faf54b83547689ed2304f51bfb7a7b19974f9f48.tar.bz2 historical-faf54b83547689ed2304f51bfb7a7b19974f9f48.zip |
Version bumped.
Package-Manager: portage-2.1.9.26/cvs/Linux x86_64
Diffstat (limited to 'www-client/jd/jd-2.7.5_p101228.ebuild')
-rw-r--r-- | www-client/jd/jd-2.7.5_p101228.ebuild | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/www-client/jd/jd-2.7.5_p101228.ebuild b/www-client/jd/jd-2.7.5_p101228.ebuild new file mode 100644 index 000000000000..c66b6f312154 --- /dev/null +++ b/www-client/jd/jd-2.7.5_p101228.ebuild @@ -0,0 +1,67 @@ +# Copyright 1999-2010 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/www-client/jd/jd-2.7.5_p101228.ebuild,v 1.1 2010/12/30 05:43:21 matsuu Exp $ + +inherit eutils autotools + +MY_P="${P/_p/-}" +MY_P="${MY_P/_/-}" + +DESCRIPTION="gtk2 based 2ch browser written in C++" +HOMEPAGE="http://jd4linux.sourceforge.jp/" +SRC_URI="mirror://sourceforge.jp/jd4linux/50363/${MY_P}.tgz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="alsa gnome gnutls migemo" + +RDEPEND=">=dev-cpp/gtkmm-2.8 + >=dev-libs/glib-2 + x11-misc/xdg-utils + alsa? ( >=media-libs/alsa-lib-1 ) + gnome? ( >=gnome-base/libgnomeui-2 ) + !gnome? ( + x11-libs/libSM + x11-libs/libICE + ) + gnutls? ( >=net-libs/gnutls-1.2 ) + !gnutls? ( >=dev-libs/openssl-0.9 ) + migemo? ( app-text/cmigemo )" + +DEPEND="${RDEPEND} + dev-util/pkgconfig" + +S="${WORKDIR}/${MY_P}" + +src_unpack() { + unpack ${A} + cd "${S}" + eautoreconf +} + +src_compile() { + local myconf="--with-xdgopen" + + # use gnomeui sm instead of Xorg SM/ICE + if use gnome ; then + myconf="${myconf} --with-sessionlib=gnomeui" + else + myconf="${myconf} --with-sessionlib=xsmp" + fi + + econf \ + $(use_with alsa) \ + $(use_with !gnutls openssl) \ + $(use_with migemo) \ + $(use_with migemo migemodict /usr/share/migemo/migemo-dict) \ + ${myconf} || die "econf failed" + emake || die "emake failed" +} + +src_install() { + emake DESTDIR="${D}" install || die "emake install failed" + doicon ${PN}.png + domenu ${PN}.desktop + dodoc AUTHORS ChangeLog NEWS README +} |