You are not logged in.

#51 2004-10-03 04:40:42

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

following two inlcude dirty workaround for a bad gzipped file - check comments

pkgname=fortune-mod-cbg
pkgver=1.0
pkgrel=1
pkgdesc="Simpsons Comic Book Guy quotes fortune cookie files"
url="http://freshmeat.net/projects/cbg-quotes/"
depends=('fortune-mod')
groups=('fortune-mods')

#source=(http://pinkemostar.com:8008/files/cbg-quotes.tar.gz)
# the file downloads and extracts ok but gzip generates
# info that is interpreted by makepkg as an error and
# it refuses to process the pkgbuild.
# download moved to build function for this reason.

build() {

    cd $startdir/src

    wget http://pinkemostar.com:8008/files/cbg-quotes.tar.gz

    gunzip --quiet cbg-quotes.tar.gz

    tar -xvf cbg-quotes.tar

    rm -f cbg.dat

    strfile ./cbg ./cbg.dat

    install -D -m644 $startdir/src/cbg 
        $startdir/pkg/usr/share/fortune/cbg

    install -D -m644 $startdir/src/cbg.dat 
        $startdir/pkg/usr/share/fortune/cbg.dat

}

Offline

#52 2004-10-03 04:41:37

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

pkgname=fortune-mod-ralph
pkgver=1.0
pkgrel=1
pkgdesc="Simpsons Ralph Wiggum quotes fortune cookie files"
url="http://freshmeat.net/projects/ralph-quotes/"
depends=('fortune-mod')
groups=('fortune-mods')

#source=(http://pinkemostar.com:8008/files/ralph-quotes.tar.gz)
#md5sums=('b7b54caa6921c9bd47d73f7410a2276a')
# the file downloads and extracts ok but gzip generates
# info that is interpreted by makepkg as an error and
# it refuses to process the pkgbuild.
# download moved to build function for this reason.

build() {

    cd $startdir/src

    wget http://pinkemostar.com:8008/files/ralph-quotes.tar.gz

    gunzip --quiet ralph-quotes.tar.gz

    tar -xvf ralph-quotes.tar

    rm -f ralph.dat

    strfile ./ralph ./ralph.dat

    install -D -m644 $startdir/src/ralph 
        $startdir/pkg/usr/share/fortune/ralph

    install -D -m644 $startdir/src/ralph.dat 
        $startdir/pkg/usr/share/fortune/ralph.dat

}

Offline

#53 2004-10-03 04:43:04

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

pkgname=fortune-mod-romeojuliet
pkgver=1.0
pkgrel=1
pkgdesc="Romeo and Juliet fortune cookie files"
url="http://www.geocities.com/kensanata/wiki/FortuneCookies.html"
depends=('fortune-mod')
groups=('fortune-mods')
source=(http://www.geocities.com/kensanata/rj.tar.gz)
md5sums=('365f928cd7ef58be865975ae6274ca57')

build() {

    cd $startdir/src

    install -D -m644 $startdir/src/rj 
        $startdir/pkg/usr/share/fortune/rj

    install -D -m644 $startdir/src/rj.dat 
        $startdir/pkg/usr/share/fortune/rj.dat

}

Offline

#54 2004-10-03 04:47:20

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

this is an example of converting old fortune-mod file format to the new one and also a very interesting, probably the oldest fortune cookie files in the world :-) from the good old VAX/DOS times No other files from graffiti application are used.

pkgname=fortune-mod-graffiti
pkgver=20041003
pkgrel=1
pkgdesc="Collection of the original old fortune cookie files converted from a freeware Graffiti program"
url="http://www.emgsrus.com/graffiti.htm"
makedepends=('sed' 'hd2u')
depends=('fortune-mod')
groups=('fortune-mods')
source=(ftp://anonymous:website@ftp.emgsrus.com/updates/cookies.zip)
md5sums=('741744f1ab4a64100f7616549a4224d1')

build() {

    cd $startdir/src/

    for FortuneFile in *.SRC
    do
        sed -i "s/%%/%/" $startdir/src/${FortuneFile}
        dos2unix -U $startdir/src/${FortuneFile}
        ConvertedFortuneFile=`echo "${FortuneFile}" | sed -e "s/.SRC//"`
        mv ${FortuneFile} ${ConvertedFortuneFile}
        strfile ./${ConvertedFortuneFile} ./${ConvertedFortuneFile}.dat
        install -D -m644 $startdir/src/${ConvertedFortuneFile} 
            $startdir/pkg/usr/share/fortune/${ConvertedFortuneFile}
        install -D -m644 $startdir/src/${ConvertedFortuneFile}.dat 
            $startdir/pkg/usr/share/fortune/${ConvertedFortuneFile}.dat
    done

}

Offline

#55 2004-10-03 04:50:16

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

A large collection of over 30 000 cookies (100 000 lines). Some of them may already be in the other packages but it's difficult to check it. There is a small chance though that you will see two same cookies in the same time...

pkgname=fortune-mod-codehappy
pkgver=20041003
pkgrel=1
pkgdesc="Chris Street's collection of 30K+ fortune cookies"
url="http://www.codehappy.net/fortune.shtml"
makedepends=('hd2u')
depends=('fortune-mod')
groups=('fortune-mods')
source=(http://www.codehappy.net/fortune/fortune.zip)
md5sums=('56dc2a4375746cb722feab2d9683620d')

build() {

    cd $startdir/src/

    dos2unix -U $startdir/src/FORTUNE
    mv $startdir/src/FORTUNE $startdir/src/codehappy
    strfile ./codehappy ./codehappy.dat
    install -D -m644 $startdir/src/codehappy 
        $startdir/pkg/usr/share/fortune/codehappy
    install -D -m644 $startdir/src/codehappy.dat 
        $startdir/pkg/usr/share/fortune/codehappy.dat

}

Offline

#56 2004-10-03 04:56:51

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

Another conversion this time from the text files. I decided to make a pkgbuild for them because they look very interesting. The application is free and it is separate from the cookie files (they are a little outdated but still a nice collection).

pkgname=fortune-mod-qliner
pkgver=20041003
pkgrel=1
pkgdesc="Collection of fortune cookie files converted from a free Quotes program"
url="http://www.qliner.com/quotes/files.asp"
makedepends=('sed' 'hd2u')
depends=('fortune-mod')
groups=('fortune-mods')
source=(
http://www.xs4all.nl/~ed/files/einstein.zip 
http://www.xs4all.nl/~ed/files/einstein2.zip 
http://www.xs4all.nl/~ed/files/wisdom.zip 
http://www.xs4all.nl/~ed/files/wisdom2.zip 
http://www.xs4all.nl/~ed/files/wisdom3.zip 
http://www.xs4all.nl/~ed/files/wisdom4.zip 
http://www.xs4all.nl/~ed/files/wisdom5.zip 
http://www.xs4all.nl/~ed/files/wisdom6.zip 
http://www.xs4all.nl/~ed/files/startrek.zip 
http://www.xs4all.nl/~ed/files/startrek2.zip 
http://www.xs4all.nl/~ed/files/movies.zip 
http://www.xs4all.nl/~ed/files/movies2.zip 
http://www.xs4all.nl/~ed/files/movies3.zip 
http://www.xs4all.nl/~ed/files/humor.zip 
http://www.xs4all.nl/~ed/files/humor2.zip 
http://www.xs4all.nl/~ed/files/humor3.zip 
http://www.xs4all.nl/~ed/files/humor4.zip 
http://www.xs4all.nl/~ed/files/tech.zip 
http://www.xs4all.nl/~ed/files/tech2.zip 
http://www.xs4all.nl/~ed/files/wittgenstein.zip 
http://www.xs4all.nl/~ed/files/nietzscheschopenhauer.zip 
http://www.xs4all.nl/~ed/files/philosophy.zip 
http://www.xs4all.nl/~ed/files/learning.zip 
http://www.xs4all.nl/~ed/files/wilde.zip 
http://www.xs4all.nl/~ed/files/willrogers.zip 
http://www.xs4all.nl/~ed/files/shaw.zip 
http://www.xs4all.nl/~ed/files/allen.zip 
http://www.xs4all.nl/~ed/files/rand.zip 
http://www.xs4all.nl/~ed/files/plato.zip 
http://www.xs4all.nl/~ed/files/churchill.zip 
http://www.xs4all.nl/~ed/files/emerson.zip 
http://www.xs4all.nl/~ed/files/bumper.zip 
http://www.xs4all.nl/~ed/files/definitions.zip 
http://www.xs4all.nl/~ed/files/proverbs.zip 
http://www.xs4all.nl/~ed/files/facts.zip 
http://www.xs4all.nl/~ed/files/guide.zip 
http://www.xs4all.nl/~ed/files/zen.zip 
http://www.xs4all.nl/~ed/files/matrix.zip 
http://www.xs4all.nl/~ed/files/spaceballs.zip 
http://www.xs4all.nl/~ed/files/frasier.zip 
http://www.xs4all.nl/~ed/files/simsons.zip 
http://www.xs4all.nl/~ed/files/lordoftherings.zip 
http://www.xs4all.nl/~ed/files/business.zip 
http://www.xs4all.nl/~ed/files/laws.zip 
http://www.xs4all.nl/~ed/files/love.zip 
http://www.xs4all.nl/~ed/files/confronting.zip 
http://www.xs4all.nl/~ed/files/climbing.zip 
http://www.xs4all.nl/~ed/files/flightrules.zip 
http://www.xs4all.nl/~ed/files/finalwords.zip 
http://www.xs4all.nl/~ed/files/flwright.zip 
http://www.xs4all.nl/~ed/files/military.zip 
http://www.xs4all.nl/~ed/files/guns.zip 
)
md5sums=('6d0c52d7d5c8948257311bead6490c58' 'e20c1978b267eb86b3dfa3c792a13df5'
         '1db405a99987732673fc18f07e1af9bb' 'd768502d1abe0d9e5103a5d9c646b56f'
         'f910dd79fd8ed83238c533dc733e2c65' 'db287fb6f1646956d9e094286c1a5687'
         '346236b176972d49ed831ca269dfab6c' 'd670ae2e19eef2e8d6268c69b6ccc3b3'
         '3c7f54e97225a0f8ce06b02ba7c8a7f3' 'e593cacf2f1e04adb58a7d70c5a26b15'
         '93efd606c1bd2ae1b674c2e749aa65b6' 'c34dc1a490cd7fff2b49adbf4e239978'
         '9f2deed3263b5be7c404ff01997915e8' '70ba5391f6a09cc4e1f85d757936385d'
         'deff09502af839c5a1e6fd230829cd4f' 'a11a04a1ae756b76535dd81abd5e0045'
         '58368997f23751f168706263c67320ca' '4da1fb23849f55a8e4b158a7fcdb7917'
         '0d5977662dc28175549dae6ea291ac93' 'c7768867c2c64b7f6bc6d7d55a65f15c'
         'ccf8d29544af646cb9fc0a512b12f499' 'ddb91b25aaf62048e4c71fa1369da461'
         '95be92aa27279d6fed464f321132341b' 'ad4e968dc8a61ec409f7f2721deb831f'
         'd00464b001b6b4ee805300741d7b67ee' '85a41f01c53038f7d39859e67e89b99b'
         'b8624ea32ead04fa1d73292b2464a970' '55d9cbd609528dd771a2bbcadcc89eab'
         'c4675bdb19506035da74df147b4c4339' '6b0ffd0f887dd86000f901fa7f95596b'
         'f09b5a2f8440b68f049d3938c528c8eb' 'ba52b21ecf2f8a504677b8ff950013d5'
         '8864c642a72cf82edc6545bceb3f3b8e' 'b0af872675bd3518d01a4abc0d4be5df'
         '5d46c928376ef197facdb99f244dac0c' '7dd5f87301983738609efe492d97ec0b'
         '849ae6a10328f5662e06038acfbceffa' '73910fd78394bc8f31018b983d8a06f6'
         'fc2161cca21dbd10442385a0a776a42c' 'e6ab37d51a12b3904afb8554c33b636c'
         '9d270fa627a0d9c75c76f73bc9891749' '43e8d9817c42d4006870d304259dc852'
         '3065832dc160cf7e2d543bfe97a9b702' 'c36ef1951832205c9b854195f88cfbdb'
         '052e709b3cd9022657c213ea3c835fc8' 'b904d702c89c3e13d3f6903d94901eda'
         '6ce5acc11a8e17392b81cba3f5917c37' '05e408ce21f8d884560db8c39d68f78c'
         '4d87ca74dd98eaeba84f3f916ee23170' 'fe2bd16da5e3864e11496f3181a089d2'
         'eebb10246e9a947d5a5ad0073416f02c' 'f2d56bec3e24d368e7dfeae839f47040')

build() {
    
    cd $startdir/src/

    for FortuneFile in *.txt
    do
        sed -i "s/$/n%/" $startdir/src/${FortuneFile}
        dos2unix -U $startdir/src/${FortuneFile}
        ConvertedFortuneFile=`echo "qliner-${FortuneFile}" | sed -e "s/.txt//"`
        mv ${FortuneFile} ${ConvertedFortuneFile}
        strfile ./${ConvertedFortuneFile} ./${ConvertedFortuneFile}.dat
        install -D -m644 $startdir/src/${ConvertedFortuneFile} 
            $startdir/pkg/usr/share/fortune/${ConvertedFortuneFile}
        install -D -m644 $startdir/src/${ConvertedFortuneFile}.dat 
            $startdir/pkg/usr/share/fortune/${ConvertedFortuneFile}.dat
    done

}

Offline

#57 2004-10-03 04:58:44

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

next two are non-english and should be visible with the proper locale setup

pkgname=fortune-mod-qliner-de
pkgver=20041003
pkgrel=1
pkgdesc="Collection of German fortune cookie files converted from a free Quotes program"
url="http://www.qliner.com/quotes/files.asp"
makedepends=('sed' 'hd2u')
depends=('fortune-mod')
groups=('fortune-mods-de')
source=(
http://www.xs4all.nl/~ed/files/weisheit.zip 
)
md5sums=('6b25cd9bed82a49297ddb8bb58699685')

build() {

    cd $startdir/src/

    for FortuneFile in *.txt
    do
        sed -i "s/$/n%/" $startdir/src/${FortuneFile}
        dos2unix -U $startdir/src/${FortuneFile}
        ConvertedFortuneFile=`echo "qliner-${FortuneFile}" | sed -e "s/.txt//"`
        mv ${FortuneFile} ${ConvertedFortuneFile}
        strfile ./${ConvertedFortuneFile} ./${ConvertedFortuneFile}.dat
        install -D -m644 $startdir/src/${ConvertedFortuneFile} 
            $startdir/pkg/usr/share/fortune/de/${ConvertedFortuneFile}
        install -D -m644 $startdir/src/${ConvertedFortuneFile}.dat 
            $startdir/pkg/usr/share/fortune/de/${ConvertedFortuneFile}.dat
    done

}

Offline

#58 2004-10-03 04:59:16

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

pkgname=fortune-mod-qliner-fr
pkgver=20041003
pkgrel=1
pkgdesc="Collection of French fortune cookie files converted from a free Quotes program"
url="http://www.qliner.com/quotes/files.asp"
makedepends=('sed' 'hd2u')
depends=('fortune-mod')
groups=('fortune-mods-fr')
source=(
http://www.xs4all.nl/~ed/files/citations1.zip 
http://www.xs4all.nl/~ed/files/citations2.zip 
http://www.xs4all.nl/~ed/files/citations3.zip 
http://www.xs4all.nl/~ed/files/citations4.zip 
)
md5sums=('7f68b407411741c31236a0dfa80af912' 'e7ce94e510385764e7d93ed22656c432'
         '137c1898efc4b26718d1e5a0d107b399' '063060817ae669c20eda99ec6ca563ff')

build() {

    cd $startdir/src/

    for FortuneFile in *.txt
    do
        sed -i "s/$/n%/" $startdir/src/${FortuneFile}
        dos2unix -U $startdir/src/${FortuneFile}
        ConvertedFortuneFile=`echo "qliner-${FortuneFile}" | sed -e "s/.txt//"`
        mv ${FortuneFile} ${ConvertedFortuneFile}
        strfile ./${ConvertedFortuneFile} ./${ConvertedFortuneFile}.dat
        install -D -m644 $startdir/src/${ConvertedFortuneFile} 
            $startdir/pkg/usr/share/fortune/fr/${ConvertedFortuneFile}
        install -D -m644 $startdir/src/${ConvertedFortuneFile}.dat 
            $startdir/pkg/usr/share/fortune/fr/${ConvertedFortuneFile}.dat
    done

}

Offline

#59 2004-10-04 13:25:20

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: a lot of additional fortune-mod packages

lanrat wrote:

New stuff below!

pkgname=fortune-mod-scc
pkgver=20010929
pkgrel=1
pkgdesc="Sno(w) Chao Cabal fortune cookie files"
url="http://www.scc.mi.org/SCC/sccfortune/"
depends=('fortune-mod')
groups=('fortune-mods')
source=(http://www.scc.mi.org/SCC/sccfortune/sccfortune-${pkgver}.tar.gz)
md5sums=('e763e2daeaeb590ab4c2282889a7cc3f')

build() {

    cd $startdir/src

    mv ./evilplan ./scc-evilplan
    mv ./quotes-${pkgver} ./scc-peewee

    strfile ./scc-evilplan ./scc-evilplan.dat
    strfile ./scc-peewee ./scc-peewee.dat

    install -D -m644 $startdir/src/scc-evilplan 
        $startdir/pkg/usr/share/fortune/scc-evilplan

    install -D -m644 $startdir/src/scc-evilplan.dat 
        $startdir/pkg/usr/share/fortune/scc-evilplan.dat

    install -D -m644 $startdir/src/scc-peewee 
        $startdir/pkg/usr/share/fortune/scc-peewee

    install -D -m644 $startdir/src/scc-peewee.dat 
        $startdir/pkg/usr/share/fortune/scc-peewee.dat

}

-> extra


The impossible missions are the only ones which succeed.

Offline

#60 2004-10-04 13:30:48

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: a lot of additional fortune-mod packages

lanrat wrote:
pkgname=fortune-mod-osho
pkgver=1.1
pkgrel=1
pkgdesc="Spiritual guru Osho quotes fortune cookie files"
url="http://www.geocities.com/avitiw/fortune.html"
depends=('fortune-mod')
groups=('fortune-mods')
source=(http://www.geocities.com/avitiw/fortune-osho-1.1.tar.gz)
md5sums=('eccf30cb3609adaa01a1d7eaee24dae1')

build() {

    cd $startdir/src

    install -D -m644 $startdir/src/osho 
        $startdir/pkg/usr/share/fortune/osho

    install -D -m644 $startdir/src/osho.dat 
        $startdir/pkg/usr/share/fortune/osho.dat

}

-> extra


The impossible missions are the only ones which succeed.

Offline

#61 2004-10-04 13:38:37

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: a lot of additional fortune-mod packages

lanrat wrote:
pkgname=fortune-mod-romeojuliet
pkgver=1.0
pkgrel=1
pkgdesc="Romeo and Juliet fortune cookie files"
url="http://www.geocities.com/kensanata/wiki/FortuneCookies.html"
depends=('fortune-mod')
groups=('fortune-mods')
source=(http://www.geocities.com/kensanata/rj.tar.gz)
md5sums=('365f928cd7ef58be865975ae6274ca57')

build() {

    cd $startdir/src

    install -D -m644 $startdir/src/rj 
        $startdir/pkg/usr/share/fortune/rj

    install -D -m644 $startdir/src/rj.dat 
        $startdir/pkg/usr/share/fortune/rj.dat

}

-> extra


The impossible missions are the only ones which succeed.

Offline

#62 2004-10-04 13:42:03

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: a lot of additional fortune-mod packages

the 2 simpsons cookies can maybe glued together into one pkg (together with calkboard that is already in extra)

the graffiti sources i'm not sure about the licence (are they free to be dos2unix formated and redestributed for another programm?)


The impossible missions are the only ones which succeed.

Offline

#63 2004-10-04 21:05:50

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

It's a good idea to join all Simpsons quotes into one package. I don't have any info about qliner cookie files license. I tried to search for it but I didn't find any.

And graffiti is just a name. The pkgbuild is not using any part of the application. It's only using it's webpage as a source url. What's more interesting it's additional fortune cookies file is just a copy of a very, very (did I say very? 1993 or even older :-)) old application for VAX machines. And this is what I found inside this file

A version of the Cookie program which runs on VAXen under VMS, PDP-11's un-
der RSTS/E and RT-11 (with DECUS C) and IBM PC's (with either Microsoft's C
or Borland's Turbo C compilers).

See the file COOKIE.DOC for detailed instructions.

In order to conserve space on this tape, only the raw cookies are provided.
You will need to execute  the COOMAK.VAX command file to make a binary coo-
kie file.

Note that the VMS command files end in .VAX. The .COM files are for RSTS/E.
You will need to edit the directory specification in the .VAX files as well
in order to do the build.  Lastly,  it is assumed that you have  issued the
'define link$library' commands to make the C RTL's known to the linker.

(the tape! history is here!)
and

MONSTER FORTUNE COOKIE SYSTEM


                                   PRELIMINARY
                                  User's Manual
                                      V1.20
                                    24-Jul-88

and

Ye Olde Disclaimer of Responsibility:

The items and quotations contained in this file may or may not
be coprighted material. The above-mentioned items were contrib-
uted from many sources, and many are unattributed. I do not po-
sess the time or the background to verify that they are non-in-
fringing.

Therefore,  this material is submitted 'as is',  with the only
recourse  being that if you report such  infringement to me,  I
will remove the item in question.

But still no idea really what is it's license (if any really :-))

I think all problematic pkgbuilds should stay here (in this thread not the extra repo) at least as an example of conversion from a different format. If someone want's them he can build them easly.

And what about the codehappy pkgbuild? It's not copyrighted.
Also smartbee package is very nice and has big database of cookies.

Offline

#64 2004-10-05 13:23:39

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: a lot of additional fortune-mod packages

lanrat wrote:

I don't have any info about qliner cookie files license. I tried to search for it but I didn't find any.

And graffiti is just a name. The pkgbuild is not using any part of the application. It's only using it's webpage as a source url. What's more interesting it's additional fortune cookies file is just a copy of a very, very (did I say very? 1993 or even older :-)) old application for VAX machines. And this is what I found inside this file

A version of the Cookie program which runs on VAXen under VMS, PDP-11's un-
der RSTS/E and RT-11 (with DECUS C) and IBM PC's (with either Microsoft's C
or Borland's Turbo C compilers).

See the file COOKIE.DOC for detailed instructions.

In order to conserve space on this tape, only the raw cookies are provided.
You will need to execute  the COOMAK.VAX command file to make a binary coo-
kie file.

Note that the VMS command files end in .VAX. The .COM files are for RSTS/E.
You will need to edit the directory specification in the .VAX files as well
in order to do the build.  Lastly,  it is assumed that you have  issued the
'define link$library' commands to make the C RTL's known to the linker.

(the tape! history is here!)
and

MONSTER FORTUNE COOKIE SYSTEM


                                   PRELIMINARY
                                  User's Manual
                                      V1.20
                                    24-Jul-88

and

Ye Olde Disclaimer of Responsibility:

The items and quotations contained in this file may or may not
be coprighted material. The above-mentioned items were contrib-
uted from many sources, and many are unattributed. I do not po-
sess the time or the background to verify that they are non-in-
fringing.

Therefore,  this material is submitted 'as is',  with the only
recourse  being that if you report such  infringement to me,  I
will remove the item in question.

But still no idea really what is it's license (if any really :-))

I think all problematic pkgbuilds should stay here (in this thread not the extra repo) at least as an example of conversion from a different format. If someone want's them he can build them easly.

ok, for now, they can be found in this thread - later, we will see

lanrat wrote:

And what about the codehappy pkgbuild? It's not copyrighted.

ups, i totally forgot this one

lanrat wrote:

Also smartbee package is very nice and has big database of cookies.

smartbee? i'll have a look at it


The impossible missions are the only ones which succeed.

Offline

#65 2004-10-05 18:46:05

lanrat
Member
From: Poland
Registered: 2003-10-28
Posts: 1,274

Re: a lot of additional fortune-mod packages

Offline

#66 2004-10-05 22:47:42

dp
Member
From: Zürich, Switzerland
Registered: 2003-05-27
Posts: 3,378
Website

Re: a lot of additional fortune-mod packages

lanrat wrote:

oh ... didn't see this thread, sorry

will have a look at it


The impossible missions are the only ones which succeed.

Offline

Board footer

Powered by FluxBB