public inbox for gentoo-dev@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-dev] mythtv
@ 2002-11-10 12:23 Gregg
  2002-11-10 15:34 ` Javier Marcet
  2002-11-10 15:39 ` Javier Marcet
  0 siblings, 2 replies; 16+ messages in thread
From: Gregg @ 2002-11-10 12:23 UTC (permalink / raw
  To: gentoo-dev; +Cc: gentoo-user

Are there any plans already in the works for a mythtv ebuild (and its
dependancies like xmltv)?  0.7 just came out and it would be nice to see
it in there.  It is by far the best PVR solution in the open source world
right now.  The new version even supports editing the video's its saved
and removing the commercials.

Anyone who didnt know, http://www.mythtv.org

Gregg




--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2002-11-10 12:23 Gregg
@ 2002-11-10 15:34 ` Javier Marcet
  2002-11-10 15:39 ` Javier Marcet
  1 sibling, 0 replies; 16+ messages in thread
From: Javier Marcet @ 2002-11-10 15:34 UTC (permalink / raw
  To: Gregg; +Cc: gentoo-dev, gentoo-user


[-- Attachment #1.1: Type: text/plain, Size: 652 bytes --]

* Gregg <gregg@sc.am> [021110 13:20]:

>Are there any plans already in the works for a mythtv ebuild (and its
>dependancies like xmltv)?  0.7 just came out and it would be nice to see
>it in there.  It is by far the best PVR solution in the open source world
>right now.  The new version even supports editing the video's its saved
>and removing the commercials.

I have a working ebuild, but I have not installed xmltv yet, and thus I
haven't made it work yet...

If you wanna test... try the attachment.

I have just changed version number to 0.7, what I have installed at the
moment is 0.6


-- 
Javier Marcet <jmarcet@pobox.com>

[-- Attachment #1.2: mythtv-0.7.ebuild --]
[-- Type: text/plain, Size: 2310 bytes --]

# Copyright 1999-2002 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2 
# $Header: 2002/11/10 16:30:21 jmarcet Exp $

S=${WORKDIR}/${P}
DESCRIPTION="Homebrew PVR project for analog TV cards"
SRC_URI="http://www.mythtv.org/mc/${P}.tar.bz2"
HOMEPAGE="http://www.mythtv.org/"

SLOT="0"
LICENSE="GPL-2"
KEYWORDS="x86"

DEPEND=">=media-libs/freetype-2.0*
	media-sound/lame
	media-libs/a52dec
	>=x11-libs/qt-3*
	dev-db/mysql
	virtual/x11"
#	media-libs/xmltv	# ebuild not done yet

src_unpack() {

	local MARCH_FLAG=""
	
	unpack ${A}
	
	for i in `grep -l -r 'usr/local' ${S}`
	do
		cp -a ${i} ${i}.orig
		sed -e "s:\/usr\/local:\/usr:" ${i}.orig > ${i}
		rm -f ${i}.orig
	done
	
	for x in ${CFLAGS}
	do
		if [ "${x/march}" != "${x}" ]
		then
			MARCH_FLAG="${x/-march=}"
			break
		fi
	done
	
	for i in ${S}/libs/libNuppelVideo/examples/Makefile ${S}/settings.pro
	do
		cp -a ${i} ${i}.orig
		sed -e "s:pentiumpro:${MARCH_FLAG}:" ${i}.orig > ${i}
		rm -f ${i}.orig
	done
	
}

src_compile() {
	
	econf \
		--prefix=/usr \
		--enable-a52bin \
		--enable-shared || die

	make || die

}

src_install() {
	
	make \
		INSTALL_ROOT=${D} \
		install || die
	
	exeinto /usr/share/${PN}
	doexe ${S}/setup/setup
	dodir /usr/share/${PN}/database
	insinto /usr/share/${PN}/database
	doins ${S}/database/*
	dodoc AUTHORS COPYING FAQ README UPGRADING
	
}

pkg_postinst() {

	einfo "If this is the first time you install MythTV,"
	einfo "you need to add /usr/share/mythtv/database/mc.sql"
	einfo "to your mysql database."
	einfo
	einfo "You might run 'mysql < /usr/share/mythtv/database/mc.sql'"
	einfo
	einfo "If you're not in the US/Canada, you need to edit"
	einfo "/usr/share/mythtv/settings.txt and edit at least the very"
	einfo "first setting -- XMLTVGrab. Change this to the appropriate"
	einfo "xmltv grabber."
	einfo
	einfo "Next, you need to run the /usr/share/mythtv/setup program."
	einfo "It will ask you some questions about your hardware, and"
	einfo "then run xmltv's grabber to configure your channels."
	einfo
	einfo "If you're upgrading from an older version and for more"
	einfo "setup and usage instructions, please refer to"
	einfo "/usr/share/mythtv/README.gz"
	
}

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2002-11-10 12:23 Gregg
  2002-11-10 15:34 ` Javier Marcet
@ 2002-11-10 15:39 ` Javier Marcet
  1 sibling, 0 replies; 16+ messages in thread
From: Javier Marcet @ 2002-11-10 15:39 UTC (permalink / raw
  To: Gregg; +Cc: gentoo-dev, gentoo-user

[-- Attachment #1: Type: text/plain, Size: 616 bytes --]

* Gregg <gregg@sc.am> [021110 13:20]:

>Are there any plans already in the works for a mythtv ebuild (and its
>dependancies like xmltv)?  0.7 just came out and it would be nice to see
>it in there.  It is by far the best PVR solution in the open source world
>right now.  The new version even supports editing the video's its saved
>and removing the commercials.

Please, change the following line

	for i in ${S}/libs/libNuppelVideo/examples/Makefile ${S}/settings.pro
	
to

	for i in ${S}/settings.pro

since those examples are gone in this version.

			
-- 
Javier Marcet <jmarcet@pobox.com>

[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* [gentoo-dev] mythtv
@ 2003-06-13  6:12 Tony Clark
  2003-06-13  6:22 ` Patrick Kursawe
                   ` (3 more replies)
  0 siblings, 4 replies; 16+ messages in thread
From: Tony Clark @ 2003-06-13  6:12 UTC (permalink / raw
  To: gentoo-dev

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

http://bugs.gentoo.org/show_bug.cgi?id=10533 needs a developer with a tv card 
to test before it can be placed in portage, anyone like to volunteer?

thanks

tony
- -- 
Contract ASIC and FPGA design.
Telephone +46 702 894 667
http://pgp.mit.edu:11371/pks/lookup?op=vindex&search=0x633E2623

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iQCVAwUBPulrZmkjRGZD9pCjAQLq4QQAigF8ObsUtk0Zb8kEeFRk2OLLofaXIunj
gNOANIWFUzEKbUcXSo9kxrU70iBU6+f01TO/YMtMMdpqUGmiXsblhNR53fwWJdM8
WzxBqigRYO/nHvh+K3FPx6yCTPpzzb1/wOLAPItK+7kR2aFnAq2RKN9W/lPxe0E+
sUJRi/aJqbo=
=JXyC
-----END PGP SIGNATURE-----


--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13  6:12 [gentoo-dev] mythtv Tony Clark
@ 2003-06-13  6:22 ` Patrick Kursawe
  2003-06-13  7:00   ` Tony Clark
  2003-06-13  7:25 ` mccarleyd
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 16+ messages in thread
From: Patrick Kursawe @ 2003-06-13  6:22 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 394 bytes --]

On Fri, Jun 13, 2003 at 08:12:43AM +0200, Tony Clark wrote:
> http://bugs.gentoo.org/show_bug.cgi?id=10533 needs a developer with a tv card 
> to test before it can be placed in portage, anyone like to volunteer?

At home I have only a dialup connection, and I won't have access to a CD
burner before monday. If nobody tried until then, maybe I will, if I find
the time.

Bye, Patrick

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13  6:22 ` Patrick Kursawe
@ 2003-06-13  7:00   ` Tony Clark
  2003-06-13  7:02     ` Patrick Kursawe
  0 siblings, 1 reply; 16+ messages in thread
From: Tony Clark @ 2003-06-13  7:00 UTC (permalink / raw
  To: gentoo-dev

-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1

On Friday 13 June 2003 08.22, Patrick Kursawe wrote:
> On Fri, Jun 13, 2003 at 08:12:43AM +0200, Tony Clark wrote:
> > http://bugs.gentoo.org/show_bug.cgi?id=10533 needs a developer with a tv
> > card to test before it can be placed in portage, anyone like to
> > volunteer?
>
> At home I have only a dialup connection, and I won't have access to a CD
> burner before monday. If nobody tried until then, maybe I will, if I find
> the time.
You don't need a CD burner for it, just a TV card.  You do need net acess to 
get your local tv guide.  Getting the local tv guide is handled by xmltv 
which also in bugs waiting.  Any comments or improvements would also be 
welcome.

tony
- -- 
Contract ASIC and FPGA design.
Telephone +46 702 894 667
http://pgp.mit.edu:11371/pks/lookup?op=vindex&search=0x633E2623

-----BEGIN PGP SIGNATURE-----
Version: GnuPG v1.2.2 (GNU/Linux)

iQCVAwUBPul2mGkjRGZD9pCjAQL8DwP+K8rNKo7vLFdfTsLNh9l9NCDBNyqpP6Qp
f3EUPor0MIjVV/HF2c+1TpNVpxZQTI/h7DYzw/3XNQ+b6JSlA/ANDDtZpOkjSqx2
CBqRi+VIbJbiKz4fFPhTli7uT4om85kdbxH2Eco9AFTNNdV3Exjo+jzAmFVgcbfR
l0gZkQf5YIk=
=v44X
-----END PGP SIGNATURE-----


--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13  7:00   ` Tony Clark
@ 2003-06-13  7:02     ` Patrick Kursawe
  0 siblings, 0 replies; 16+ messages in thread
From: Patrick Kursawe @ 2003-06-13  7:02 UTC (permalink / raw
  To: gentoo-dev

On Fri, Jun 13, 2003 at 09:00:36AM +0200, Tony Clark wrote:
> > At home I have only a dialup connection, and I won't have access to a CD
> > burner before monday. If nobody tried until then, maybe I will, if I find
> > the time.
> You don't need a CD burner for it, just a TV card.  You do need net acess to 
> get your local tv guide.  Getting the local tv guide is handled by xmltv 
> which also in bugs waiting.  Any comments or improvements would also be 
> welcome.

And the package and all its dependencies will get on my harddisk using
IP over telepathy?

Would be nice,

Patrick	

--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13  6:12 [gentoo-dev] mythtv Tony Clark
  2003-06-13  6:22 ` Patrick Kursawe
@ 2003-06-13  7:25 ` mccarleyd
  2003-06-13 16:56 ` Brad Laue
  2003-06-13 22:38 ` Daniel Armyr
  3 siblings, 0 replies; 16+ messages in thread
From: mccarleyd @ 2003-06-13  7:25 UTC (permalink / raw
  To: gentoo-dev

I can test it.  I was looking for a project this weekend anyways.

-David

> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
>
> http://bugs.gentoo.org/show_bug.cgi?id=10533 needs a developer with a tv
> card
> to test before it can be placed in portage, anyone like to volunteer?
>
> thanks
>
> tony
> - --
> Contract ASIC and FPGA design.
> Telephone +46 702 894 667
> http://pgp.mit.edu:11371/pks/lookup?op=vindex&search=0x633E2623
>
> -----BEGIN PGP SIGNATURE-----
> Version: GnuPG v1.2.2 (GNU/Linux)
>
> iQCVAwUBPulrZmkjRGZD9pCjAQLq4QQAigF8ObsUtk0Zb8kEeFRk2OLLofaXIunj
> gNOANIWFUzEKbUcXSo9kxrU70iBU6+f01TO/YMtMMdpqUGmiXsblhNR53fwWJdM8
> WzxBqigRYO/nHvh+K3FPx6yCTPpzzb1/wOLAPItK+7kR2aFnAq2RKN9W/lPxe0E+
> sUJRi/aJqbo=JXyC
> -----END PGP SIGNATURE-----
>
>
> --
> gentoo-dev@gentoo.org mailing list
>
>


--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13  6:12 [gentoo-dev] mythtv Tony Clark
  2003-06-13  6:22 ` Patrick Kursawe
  2003-06-13  7:25 ` mccarleyd
@ 2003-06-13 16:56 ` Brad Laue
  2003-06-13 17:23   ` Martin, Stephen
  2003-06-13 22:38 ` Daniel Armyr
  3 siblings, 1 reply; 16+ messages in thread
From: Brad Laue @ 2003-06-13 16:56 UTC (permalink / raw
  To: gentoo-dev

Tony Clark wrote:
> -----BEGIN PGP SIGNED MESSAGE-----
> Hash: SHA1
> 
> http://bugs.gentoo.org/show_bug.cgi?id=10533 needs a developer with a tv card 
> to test before it can be placed in portage, anyone like to volunteer?
> 
> thanks
> 
> tony

It ocurred to me last night Gentoo Media Center LiveCD based on this
would be an extremely good demonstration of Linux's abilities. Have
hardware autodetection preconfigure the video inputs based on what's
available (PCI or USB), and have it launch MythTV on startup, and you'd
have something that gave Windows XP Media Center a run for its money.

Brad

-- 
// -- http://www.BRAD-X.com/ -- //


--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13 16:56 ` Brad Laue
@ 2003-06-13 17:23   ` Martin, Stephen
  2003-06-13 17:39     ` Fred Van Andel
  0 siblings, 1 reply; 16+ messages in thread
From: Martin, Stephen @ 2003-06-13 17:23 UTC (permalink / raw
  To: gentoo-dev

I believe there has been some discussion of a bootable mythtv disc on 
the mythtv-user mailing list.  I don't know what distribution they were 
thinking of using, but you might want to touch base with them.

-Steve

Brad Laue wrote:
> Tony Clark wrote:
> 
>> -----BEGIN PGP SIGNED MESSAGE-----
>> Hash: SHA1
>>
>> http://bugs.gentoo.org/show_bug.cgi?id=10533 needs a developer with a 
>> tv card to test before it can be placed in portage, anyone like to 
>> volunteer?
>>
>> thanks
>>
>> tony
> 
> 
> It ocurred to me last night Gentoo Media Center LiveCD based on this
> would be an extremely good demonstration of Linux's abilities. Have
> hardware autodetection preconfigure the video inputs based on what's
> available (PCI or USB), and have it launch MythTV on startup, and you'd
> have something that gave Windows XP Media Center a run for its money.
> 
> Brad
> 


--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13 17:23   ` Martin, Stephen
@ 2003-06-13 17:39     ` Fred Van Andel
  2003-06-13 18:30       ` Tony Clark
  0 siblings, 1 reply; 16+ messages in thread
From: Fred Van Andel @ 2003-06-13 17:39 UTC (permalink / raw
  To: gentoo-dev


"Martin, Stephen" <stephen.martin@veridian.com> wrote:
(06/13/2003 10:23)

>I believe there has been some discussion of a bootable mythtv disc on 
>the mythtv-user mailing list.  I don't know what distribution they were 
>thinking of using, but you might want to touch base with them.
>
>-Steve

Checking the online mailinglist it seems that they were considering a 
stripped down 
version of knoppix.  Although its not clear is anyone is actually doing 
anything rather 
than just talking.

I think it is a very cool idea, unfortunatly I don't have the hardware 
necessary to help.

Fred Van Andel
fava@gentoo.org
GPG KeyID: 76526AD599455482  
GPG fingerprint: 64E4 4BAB 9C99 D565 3E3C F5D0 7652 6AD5 9945 5482


--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13 17:39     ` Fred Van Andel
@ 2003-06-13 18:30       ` Tony Clark
  0 siblings, 0 replies; 16+ messages in thread
From: Tony Clark @ 2003-06-13 18:30 UTC (permalink / raw
  To: gentoo-dev

On Friday 13 June 2003 19.39, Fred Van Andel wrote:
> "Martin, Stephen" <stephen.martin@veridian.com> wrote:
> (06/13/2003 10:23)
>
> >I believe there has been some discussion of a bootable mythtv disc on
> >the mythtv-user mailing list.  I don't know what distribution they were
> >thinking of using, but you might want to touch base with them.
> >
> >-Steve
>
> Checking the online mailinglist it seems that they were considering a
> stripped down
> version of knoppix.  Although its not clear is anyone is actually doing
> anything rather
> than just talking.
>
> I think it is a very cool idea, unfortunatly I don't have the hardware
> necessary to help.
>
I made a basic one with Gentoo a few months ago but had some X problems and I 
also run the cvs version so I was out of date as soon as I built it.  The 
latest release is pretty cool though and I wouldn't mind helping out.  The 
only problems would be the database and country specific options.

tony

-- 
Contract ASIC and FPGA design.
Telephone +46 702 894 667
http://pgp.mit.edu:11371/pks/lookup?op=vindex&search=0x633E2623



--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13  6:12 [gentoo-dev] mythtv Tony Clark
                   ` (2 preceding siblings ...)
  2003-06-13 16:56 ` Brad Laue
@ 2003-06-13 22:38 ` Daniel Armyr
  2003-06-13 23:05   ` Max Kalika
  3 siblings, 1 reply; 16+ messages in thread
From: Daniel Armyr @ 2003-06-13 22:38 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 1003 bytes --]

> http://bugs.gentoo.org/show_bug.cgi?id=10533 needs a developer with a
> tv card to test before it can be placed in portage, anyone like to
> volunteer?

Well, the idea of emerge-and-run doesn't hold for me. Whichever of the executables I run I get more or less the same thing:

cuardin@quad:/usr/local/portage;)mythfilldatabase 
QSqlDatabase warning: QMYSQL3 driver not loaded
QSqlDatabase: available drivers: 
QSqlDatabase warning: QMYSQL3 driver not loaded
QSqlDatabase: available drivers: 
Unable to connect to database!
No error type from QSqlError?  Strange...
couldn't open db

Now, I have never used SQL, so I am sure I have to perform some magic to get it running, but as there seems to be no man pages for the myth package, I can't really find out where to start. IT merged nicely though.....

//Daniel Armyr
-- 
++++++++++++++++++++++++++++++++++++++++
daniel.armyr@home.se	f00-dar@f.kth.se
Tegnergatan 40 rum 505	+46 8 8 31 52 17	
113 59 Stockholm	
++++++++++++++++++++++++++++++++++++++++

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13 22:38 ` Daniel Armyr
@ 2003-06-13 23:05   ` Max Kalika
  2003-06-13 23:38     ` Tony Clark
  0 siblings, 1 reply; 16+ messages in thread
From: Max Kalika @ 2003-06-13 23:05 UTC (permalink / raw
  To: gentoo-dev

Quoting Daniel Armyr <daniel.armyr@home.se>:

> Well, the idea of emerge-and-run doesn't hold for me. Whichever of the
> executables I run I get more or less the same thing:
> 
> cuardin@quad:/usr/local/portage;)mythfilldatabase 
> QSqlDatabase warning: QMYSQL3 driver not loaded
> QSqlDatabase: available drivers: 
> QSqlDatabase warning: QMYSQL3 driver not loaded
> QSqlDatabase: available drivers: 
> Unable to connect to database!
> No error type from QSqlError?  Strange...
> couldn't open db

Sounds like you upgraded mysql from 3.x.x to 4.x.x without rebuilding QT.
Re-emerge qt and your problems should be over. (please note, I'm saying
*should* not *will*) :-).

---max kalika
--max@lsit.ucsb.edu
-lsit systems administrator

--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13 23:05   ` Max Kalika
@ 2003-06-13 23:38     ` Tony Clark
  2003-06-14 15:38       ` Daniel Armyr
  0 siblings, 1 reply; 16+ messages in thread
From: Tony Clark @ 2003-06-13 23:38 UTC (permalink / raw
  To: gentoo-dev

On Saturday 14 June 2003 01.05, Max Kalika wrote:
> Quoting Daniel Armyr <daniel.armyr@home.se>:
> > Well, the idea of emerge-and-run doesn't hold for me. Whichever of the
> > executables I run I get more or less the same thing:
> >
> > cuardin@quad:/usr/local/portage;)mythfilldatabase
> > QSqlDatabase warning: QMYSQL3 driver not loaded
> > QSqlDatabase: available drivers:
> > QSqlDatabase warning: QMYSQL3 driver not loaded
> > QSqlDatabase: available drivers:
> > Unable to connect to database!
> > No error type from QSqlError?  Strange...
> > couldn't open db
>
> Sounds like you upgraded mysql from 3.x.x to 4.x.x without rebuilding QT.
> Re-emerge qt and your problems should be over. (please note, I'm saying
> *should* not *will*) :-).

Sounds like the QT built before mysql is installed problem.  There is some 
pretty good documentation here.
http://mythtv.org/modules.php?name=MythInstall

tony
-- 
Contract ASIC and FPGA design.
Telephone +46 702 894 667
http://pgp.mit.edu:11371/pks/lookup?op=vindex&search=0x633E2623



--
gentoo-dev@gentoo.org mailing list


^ permalink raw reply	[flat|nested] 16+ messages in thread

* Re: [gentoo-dev] mythtv
  2003-06-13 23:38     ` Tony Clark
@ 2003-06-14 15:38       ` Daniel Armyr
  0 siblings, 0 replies; 16+ messages in thread
From: Daniel Armyr @ 2003-06-14 15:38 UTC (permalink / raw
  To: gentoo-dev

[-- Attachment #1: Type: text/plain, Size: 449 bytes --]

OK, I definitely think this should be mentioned in an obvious place. Perhaps in a post_emerge() or so.

> Sounds like the QT built before mysql is installed problem.  There is
> some pretty good documentation here.
> http://mythtv.org/modules.php?name=MythInstall


-- 
++++++++++++++++++++++++++++++++++++++++
daniel.armyr@home.se	f00-dar@f.kth.se
Tegnergatan 40 rum 505	+46 8 8 31 52 17	
113 59 Stockholm	
++++++++++++++++++++++++++++++++++++++++

[-- Attachment #2: Type: application/pgp-signature, Size: 189 bytes --]

^ permalink raw reply	[flat|nested] 16+ messages in thread

end of thread, other threads:[~2003-06-14 15:38 UTC | newest]

Thread overview: 16+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-06-13  6:12 [gentoo-dev] mythtv Tony Clark
2003-06-13  6:22 ` Patrick Kursawe
2003-06-13  7:00   ` Tony Clark
2003-06-13  7:02     ` Patrick Kursawe
2003-06-13  7:25 ` mccarleyd
2003-06-13 16:56 ` Brad Laue
2003-06-13 17:23   ` Martin, Stephen
2003-06-13 17:39     ` Fred Van Andel
2003-06-13 18:30       ` Tony Clark
2003-06-13 22:38 ` Daniel Armyr
2003-06-13 23:05   ` Max Kalika
2003-06-13 23:38     ` Tony Clark
2003-06-14 15:38       ` Daniel Armyr
  -- strict thread matches above, loose matches on Subject: below --
2002-11-10 12:23 Gregg
2002-11-10 15:34 ` Javier Marcet
2002-11-10 15:39 ` Javier Marcet

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox