* [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; 12+ 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] 12+ messages in thread
* Re: [gentoo-dev] mythtv
2002-11-10 12:23 [gentoo-dev] mythtv Gregg
@ 2002-11-10 15:34 ` Javier Marcet
2002-11-10 16:33 ` [gentoo-dev] Re: [gentoo-user] " Tony Clark
2002-11-11 2:51 ` [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv Gregg
2002-11-10 15:39 ` Javier Marcet
1 sibling, 2 replies; 12+ 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] 12+ messages in thread
* Re: [gentoo-dev] mythtv
2002-11-10 12:23 [gentoo-dev] mythtv Gregg
2002-11-10 15:34 ` Javier Marcet
@ 2002-11-10 15:39 ` Javier Marcet
1 sibling, 0 replies; 12+ 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] 12+ messages in thread
* [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv
2002-11-10 15:34 ` Javier Marcet
@ 2002-11-10 16:33 ` Tony Clark
2002-11-10 18:01 ` Javier Marcet
2002-11-10 18:27 ` [gentoo-dev] [NEED TESTING] SVGALIB 1.9.16, AdvanceMame and AdvanceMenu ebuilds Javier Marcet
2002-11-11 2:51 ` [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv Gregg
1 sibling, 2 replies; 12+ messages in thread
From: Tony Clark @ 2002-11-10 16:33 UTC (permalink / raw
To: Javier Marcet, Gregg; +Cc: gentoo-dev, gentoo-user
On Sunday 10 November 2002 16.34, Javier Marcet wrote:
> * 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...
Now thats the interesting one as there are a heap of perl dependancies. I've
just done a bit of fooling around and it seems lots of things are
missing/broken etc.
tony
--
Contract ASIC and FPGA design.
Telephone
+46 702 894 667
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 12+ messages in thread
* Re: [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv
2002-11-10 16:33 ` [gentoo-dev] Re: [gentoo-user] " Tony Clark
@ 2002-11-10 18:01 ` Javier Marcet
2002-11-11 2:53 ` [gentoo-dev] Re: [gentoo-user] " Gregg
2002-11-10 18:27 ` [gentoo-dev] [NEED TESTING] SVGALIB 1.9.16, AdvanceMame and AdvanceMenu ebuilds Javier Marcet
1 sibling, 1 reply; 12+ messages in thread
From: Javier Marcet @ 2002-11-10 18:01 UTC (permalink / raw
To: tclark; +Cc: Gregg, gentoo-dev, gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1209 bytes --]
* Tony Clark <tclark@telia.com> [021110 17:35]:
>> >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...
>
>Now thats the interesting one as there are a heap of perl dependancies. I've
>just done a bit of fooling around and it seems lots of things are
>missing/broken etc.
I'm pretty much done with all the dependencies, so far 10 perl modules,
updated expat library, and counting...
OK, finished...
Pretty much, still some quirks remaining.
See bugs #10533, 10534 and 10536 on http://bugs.gentoo.org/
I'd appreciate any help to get it finally working and well integrated.
Once that's achieved I might do ebuilds for the add-on modules available
with MythTV; namely MythMusic, MythGallery, MythGame & MythWeb, at the
time of this writing.
--
Javier Marcet <jmarcet@pobox.com>
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-dev] [NEED TESTING] SVGALIB 1.9.16, AdvanceMame and AdvanceMenu ebuilds
2002-11-10 16:33 ` [gentoo-dev] Re: [gentoo-user] " Tony Clark
2002-11-10 18:01 ` Javier Marcet
@ 2002-11-10 18:27 ` Javier Marcet
1 sibling, 0 replies; 12+ messages in thread
From: Javier Marcet @ 2002-11-10 18:27 UTC (permalink / raw
To: gentoo-dev, gentoo-user
[-- Attachment #1: Type: text/plain, Size: 664 bytes --]
I've sent ebuilds for svgalibs' development version, 1.9.16
It's not cvs, and for me it is more stable than the so-called 'stable'
release.
It's needed to build new AdvanceMame, well, actually it's optional, but
well worth it.
This AdvanceMame was updated today, since when I was about to send it to
bugzilla, checked for a new release, and there was one.
What I'm trying to say is that there's still a glitch in the compilation
which makes it fail in the middle.
Last, AdvanceMenu is a front-end for AdvanceMame which also would need
some testing :)
The bugs numbers are: #10525, #10537 and #10540.
--
Javier Marcet <jmarcet@pobox.com>
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv
2002-11-10 15:34 ` Javier Marcet
2002-11-10 16:33 ` [gentoo-dev] Re: [gentoo-user] " Tony Clark
@ 2002-11-11 2:51 ` Gregg
2002-11-11 2:53 ` Javier Marcet
1 sibling, 1 reply; 12+ messages in thread
From: Gregg @ 2002-11-11 2:51 UTC (permalink / raw
To: jmarcet; +Cc: gentoo-dev, gentoo-user
We need a working ebuild for xmltv then?
Gregg
> * 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>
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv
2002-11-11 2:51 ` [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv Gregg
@ 2002-11-11 2:53 ` Javier Marcet
0 siblings, 0 replies; 12+ messages in thread
From: Javier Marcet @ 2002-11-11 2:53 UTC (permalink / raw
To: Gregg; +Cc: gentoo-dev, gentoo-user
[-- Attachment #1: Type: text/plain, Size: 847 bytes --]
* Gregg <gregg@sc.am> [021111 03:48]:
>We need a working ebuild for xmltv then?
>>>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
Check http://bugs.gentoo.org, 10533 10534 and 10536.
I submitted the needed ebuilds for xmltv and latest mythtv.
--
Javier Marcet <jmarcet@pobox.com>
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv
2002-11-10 18:01 ` Javier Marcet
@ 2002-11-11 2:53 ` Gregg
2002-11-11 2:57 ` [gentoo-dev] mythtv Javier Marcet
0 siblings, 1 reply; 12+ messages in thread
From: Gregg @ 2002-11-11 2:53 UTC (permalink / raw
To: jmarcet; +Cc: tclark, gentoo-dev, gentoo-user
And this is why I love gentoo :)
Great, cant wait until all the dependancies have ebuilds, all the myth*
releases have ebuilds. Then it will be a simple install. Maybe even a
mythtv-all ebuild could be made that installes all the deps, and ALL the
myth* apps (tv, music, games, ect...)
Gregg
> * Tony Clark <tclark@telia.com> [021110 17:35]:
>
>>> >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...
>>
>>Now thats the interesting one as there are a heap of perl dependancies.
>> I've just done a bit of fooling around and it seems lots of things
>> are missing/broken etc.
>
> I'm pretty much done with all the dependencies, so far 10 perl modules,
> updated expat library, and counting...
>
> OK, finished...
> Pretty much, still some quirks remaining.
>
> See bugs #10533, 10534 and 10536 on http://bugs.gentoo.org/
>
> I'd appreciate any help to get it finally working and well integrated.
> Once that's achieved I might do ebuilds for the add-on modules available
> with MythTV; namely MythMusic, MythGallery, MythGame & MythWeb, at the
> time of this writing.
>
>
> --
> Javier Marcet <jmarcet@pobox.com>
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-dev] Re: mythtv
2002-11-11 2:53 ` [gentoo-dev] Re: [gentoo-user] " Gregg
@ 2002-11-11 2:57 ` Javier Marcet
2002-11-11 5:13 ` [gentoo-dev] Re: [gentoo-user] " Gregg
0 siblings, 1 reply; 12+ messages in thread
From: Javier Marcet @ 2002-11-11 2:57 UTC (permalink / raw
To: Gregg; +Cc: tclark, gentoo-dev, gentoo-user
[-- Attachment #1: Type: text/plain, Size: 1175 bytes --]
* Gregg <gregg@sc.am> [021111 03:51]:
>And this is why I love gentoo :)
>Great, cant wait until all the dependancies have ebuilds, all the myth*
>releases have ebuilds. Then it will be a simple install. Maybe even a
>mythtv-all ebuild could be made that installes all the deps, and ALL the
>myth* apps (tv, music, games, ect...)
>> See bugs #10533, 10534 and 10536 on http://bugs.gentoo.org/
>> I'd appreciate any help to get it finally working and well integrated.
>> Once that's achieved I might do ebuilds for the add-on modules available
>> with MythTV; namely MythMusic, MythGallery, MythGame & MythWeb, at the
>> time of this writing.
As I said, testing is needed. Input on what works and what does not is
welcome.
Indeed I have a non working install myself, I get this error from the
sql database whenever I try to use any MythTV app:
QSqlDatabase warning: QMYSQL3 driver not loaded
QSqlDatabase: available drivers:
Couldn't open database
QSqlQuery::exec: database not open
QSqlQuery::exec: database not open
I have no experience with Sql at all, and have no idea what to look for.
--
Javier Marcet <jmarcet@pobox.com>
[-- Attachment #2: Type: application/pgp-signature, Size: 197 bytes --]
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-dev] Re: [gentoo-user] Re: mythtv
2002-11-11 2:57 ` [gentoo-dev] mythtv Javier Marcet
@ 2002-11-11 5:13 ` Gregg
2002-11-11 11:11 ` [gentoo-dev] IUSE variable in an ebuild Rafael Cordones Marcos
0 siblings, 1 reply; 12+ messages in thread
From: Gregg @ 2002-11-11 5:13 UTC (permalink / raw
To: jmarcet; +Cc: gregg, tclark, gentoo-dev, gentoo-user
I wont have my mythtv box built for another month, or I would test now.
But it would be nice for someone out there running it to test this out.
Gregg
> * Gregg <gregg@sc.am> [021111 03:51]:
>
>>And this is why I love gentoo :)
>
>>Great, cant wait until all the dependancies have ebuilds, all the myth*
>> releases have ebuilds. Then it will be a simple install. Maybe even a
>> mythtv-all ebuild could be made that installes all the deps, and ALL
>> the myth* apps (tv, music, games, ect...)
>
>>> See bugs #10533, 10534 and 10536 on http://bugs.gentoo.org/
>
>>> I'd appreciate any help to get it finally working and well
>>> integrated. Once that's achieved I might do ebuilds for the add-on
>>> modules available with MythTV; namely MythMusic, MythGallery,
>>> MythGame & MythWeb, at the time of this writing.
>
> As I said, testing is needed. Input on what works and what does not is
> welcome.
> Indeed I have a non working install myself, I get this error from the
> sql database whenever I try to use any MythTV app:
>
> QSqlDatabase warning: QMYSQL3 driver not loaded
> QSqlDatabase: available drivers:
> Couldn't open database
> QSqlQuery::exec: database not open
> QSqlQuery::exec: database not open
>
> I have no experience with Sql at all, and have no idea what to look for.
>
>
> --
> Javier Marcet <jmarcet@pobox.com>
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 12+ messages in thread
* [gentoo-dev] IUSE variable in an ebuild
2002-11-11 5:13 ` [gentoo-dev] Re: [gentoo-user] " Gregg
@ 2002-11-11 11:11 ` Rafael Cordones Marcos
0 siblings, 0 replies; 12+ messages in thread
From: Rafael Cordones Marcos @ 2002-11-11 11:11 UTC (permalink / raw
To: gentoo-dev; +Cc: Martin Schlemmer
Hi,
I am writing an ebuild for wdiff[1] that depends on GNU diff. So I
started looking at the diffutils ebuild. More precisely at the
/usr/portage/sys-apps/diffutils/diffutils-2.8.4-r1.ebuild
The script contains the line
IUSE="nls build"
I understand that "nls" is for activating internationalization options
but "build", what is it for?
At http://gentoo.org/dyn/use-index.xml it says that "build" is:
"!!internal use only!! DO NOT SET THIS FLAG YOURSELF!, used for creating
build images and the first half of bootstrapping."
<code-snippet>
IUSE="nls build"
[...]
DEPEND="virtual/glibc
nls? ( sys-devel/gettext )
? !build? ( sys-apps/texinfo )"
RDEPEND="virtual/glibc"
src_unpack() {
unpack ${A}
cd ${S}
? if [ -n "`use build`" ]
? then
? #disable texinfo building so we can remove the dep
? cp Makefile.in Makefile.in.orig
? sed -e 's:SUBDIRS = doc:SUBDIRS =:' \
? Makefile.in.orig > Makefile.in
? fi
}
</code-snippet>
The lines I do not understand are marked with "?".
Thanks for your time!
/Rafa
References:
[1] GNU wdiff:
http://www2.iro.umontreal.ca/~pinard/traiter.cgi/wdiff/web/index.page
--
Rafael Cordones Marcos
mailto:rcm@sasaska.net
http://sasaska.net
--
gentoo-dev@gentoo.org mailing list
^ permalink raw reply [flat|nested] 12+ messages in thread
end of thread, other threads:[~2002-11-11 11:15 UTC | newest]
Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2002-11-10 12:23 [gentoo-dev] mythtv Gregg
2002-11-10 15:34 ` Javier Marcet
2002-11-10 16:33 ` [gentoo-dev] Re: [gentoo-user] " Tony Clark
2002-11-10 18:01 ` Javier Marcet
2002-11-11 2:53 ` [gentoo-dev] Re: [gentoo-user] " Gregg
2002-11-11 2:57 ` [gentoo-dev] mythtv Javier Marcet
2002-11-11 5:13 ` [gentoo-dev] Re: [gentoo-user] " Gregg
2002-11-11 11:11 ` [gentoo-dev] IUSE variable in an ebuild Rafael Cordones Marcos
2002-11-10 18:27 ` [gentoo-dev] [NEED TESTING] SVGALIB 1.9.16, AdvanceMame and AdvanceMenu ebuilds Javier Marcet
2002-11-11 2:51 ` [gentoo-dev] Re: [gentoo-user] Re: [gentoo-dev] mythtv Gregg
2002-11-11 2:53 ` 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