Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
Bug 103571 - Logjam-4.5.0 released
Summary: Logjam-4.5.0 released
Status: RESOLVED FIXED
Alias: None
Product: Gentoo Linux
Classification: Unclassified
Component: New packages (show other bugs)
Hardware: All Linux
: High normal (vote)
Assignee: Gentoo Linux Gnome Desktop Team
URL: http://neugierig.org/software/logjam
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2005-08-24 03:16 UTC by Shyam Mani (RETIRED)
Modified: 2005-08-24 11:10 UTC (History)
0 users

See Also:
Package list:
Runtime testing required: ---


Attachments
logjam-4.5.0.ebuild (logjam-4.5.0.ebuild,1.09 KB, text/plain)
2005-08-24 03:18 UTC, Shyam Mani (RETIRED)
Details
logjam ebuild, added sqlite use flag (logjam-4.5.0.ebuild,1.16 KB, text/plain)
2005-08-24 09:39 UTC, Jeff Simpson
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Shyam Mani (RETIRED) gentoo-dev 2005-08-24 03:16:35 UTC
Hey guys,
        Thought I'd help out a bit :)

New version is out and has things like Tag support and stuff included. I just
bumped and tested the ebuild and it looks fine.

The announcement is here[1]. There is a new site here[2] and the downloads page
is now here[3]

[1] http://www.livejournal.com/community/logjam/111812.html
[2] http://neugierig.org/software/logjam
[3] http://neugierig.org/software/logjam/download/

I've updated the HOMEPAGE and SRC_URI to reflect the changes. Will attach the
ebuild.
Comment 1 Shyam Mani (RETIRED) gentoo-dev 2005-08-24 03:18:27 UTC
Created attachment 66728 [details]
logjam-4.5.0.ebuild
Comment 2 Joe McCann (RETIRED) gentoo-dev 2005-08-24 09:34:51 UTC
Added new version to the tree with an optional sqlite use flag to switch on/off
the new database support. 
Comment 3 Jeff Simpson 2005-08-24 09:39:40 UTC
Created attachment 66761 [details]
logjam ebuild, added sqlite use flag

Added sqlite use flag
Comment 4 Shyam Mani (RETIRED) gentoo-dev 2005-08-24 11:02:07 UTC
Just when I remembered sqlite support...it's already been added.

Thanks!
Comment 5 Jeff Simpson 2005-08-24 11:10:42 UTC
Comment on attachment 66761 [details]
logjam ebuild, added sqlite use flag

# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/net-misc/logjam/logjam-4.4.1.ebuild,v 1.1
2005/01/05 09:58:00 joem Exp $

IUSE="gtk gtkhtml spell svg xmms sqlite"

inherit

DESCRIPTION="GTK2-based LiveJournal client"
HOMEPAGE="http://neugierig.org/software/logjam"
SRC_URI="http://neugierig.org/software/logjam/download/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~x86 ~ppc ~sparc ~amd64"

RDEPEND=">=dev-libs/libxml2-2.0
	net-misc/curl
	gtk? ( >=x11-libs/gtk+-2 )
	gtkhtml? ( =gnome-extra/libgtkhtml-3.0.10* )
	spell? ( app-text/gtkspell )
	svg? ( >=gnome-base/librsvg-2.2.3 )
	xmms? ( media-sound/xmms )
	sqlite? ( >=dev-db/sqlite-3 )"

DEPEND="${RDEPEND}
	>=dev-util/intltool-0.29
	dev-util/pkgconfig"

src_unpack() {
	unpack ${A}
	sed -i -e s/logjam.png/logjam_pencil.png/ ${S}/data/logjam.desktop.in
}

src_compile() {

	econf \
	`use_with gtk` \
	`use_with gtkhtml` \
	`use_with spell gtkspell` \
	`use_with svg librsvg` \
	`use_with sqlite sqlite3` \
	`use_with xmms` || die
	emake || die
}

src_install() {
	make DESTDIR=${D} install || die
	dodoc Changelog doc/README doc/TODO
}