add deps for virtualbox
This commit is contained in:
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s PREFIX=/usr" % (get.installDIR()))
|
||||
|
||||
pisitools.dosym("/usr/bin/wodim", "usr/bin/cdrecord")
|
||||
pisitools.dosym("/usr/bin/readom", "usr/bin/readcd")
|
||||
pisitools.dosym("/usr/bin/genisoimage", "usr/bin/mkisofs")
|
||||
pisitools.dosym("/usr/bin/genisoimage", "usr/bin/mkhybrid")
|
||||
pisitools.dosym("/usr/bin/icedax", "usr/bin/cdda2wav")
|
||||
|
||||
pisitools.dosym("/usr/share/man/man1/wodim.1", "usr/share/man/man1/cdrecord.1")
|
||||
pisitools.dosym("/usr/share/man/man1/readom.1", "usr/share/man/man1/readcd.1")
|
||||
pisitools.dosym("/usr/share/man/man1/genisoimage.1", "usr/share/man/man1/mkisofs.1")
|
||||
pisitools.dosym("/usr/share/man/man1/genisoimage.1", "usr/share/man/man1/mkhybrid.1")
|
||||
pisitools.dosym("/usr/share/man/man1/icedax.1", "usr/share/man/man1/cdda2wav.1")
|
||||
|
||||
pisitools.dodoc("ABOUT", "Changelog", "COPYING", "FAQ", "FORK", "START", "TODO", "VERSION")
|
||||
@@ -0,0 +1,71 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cdrkit</Name>
|
||||
<Homepage>http://cdrkit.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Suite of programs for CD/DVD recording.</Summary>
|
||||
<Description>Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction.</Description>
|
||||
<Archive sha1sum="3f7ddc06db0272942e1a4cd98c3c96462df77387" type="targz">http://pkgs.fedoraproject.org/repo/pkgs/cdrkit/cdrkit-1.1.11.tar.gz/efe08e2f3ca478486037b053acd512e9/cdrkit-1.1.11.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cdparanoia-devel</Dependency>
|
||||
<Dependency>libcap-devel</Dependency>
|
||||
<Dependency>zlib-devel</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>cdrkit</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>file</Dependency>
|
||||
<Dependency>zlib</Dependency>
|
||||
<Dependency>bzip2</Dependency>
|
||||
<Dependency>libcap</Dependency>
|
||||
<!--Dependency>cdparanoia</Dependency>
|
||||
<Dependency>vorbis-tools</Dependency-->
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
<Conflicts>
|
||||
<Package>cdrtools</Package>
|
||||
</Conflicts>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2013-09-14</Date>
|
||||
<Version>1.1.11</Version>
|
||||
<Comment>Disable patch</Comment>
|
||||
<Name>Burak Fazıl Ertürk</Name>
|
||||
<Email>burakerturk@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-05-16</Date>
|
||||
<Version>1.1.11</Version>
|
||||
<Comment>fixing working</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2013-02-11</Date>
|
||||
<Version>1.1.11</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>cdrkit</Name>
|
||||
<Summary xml:lang="en">Suite of programs for CD/DVD recording.</Summary>
|
||||
<Description xml:lang="en">Suite of programs for CD/DVD recording, ISO image creation, and audio CD extraction.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
shelltools.export("CFLAGS", "%s -fno-strict-aliasing" % get.CFLAGS())
|
||||
if get.ARCH() == "x86_64":
|
||||
autotools.make("BITS=64")
|
||||
else:
|
||||
autotools.make("BITS=32")
|
||||
|
||||
def install():
|
||||
autotools.rawInstall('DESTDIR="%s"' % get.installDIR())
|
||||
pisitools.dodoc("changes.txt")
|
||||
@@ -0,0 +1,33 @@
|
||||
IMPORTANT - READ BEFORE COPYING, INSTALLING OR USING.
|
||||
Do not use or load this software and any associated materials (collectively, the "Software") until you have carefully read the following terms and conditions. By loading or using the Software, you agree to the terms of this Agreement. If you do not wish to so agree, do not install or use the Software.
|
||||
|
||||
1. COPYRIGHT NOTICE
|
||||
Some or all of this work - Copyright © 1999-2008, Intel Corp. All rights reserved.
|
||||
|
||||
2. LICENSE
|
||||
|
||||
2.1. This is your license from Intel Corp. under its intellectual property rights. You may have additional license terms from the party that provided you this software, covering your right to use that party's intellectual property rights.
|
||||
|
||||
2.2. Intel grants, free of charge, to any person ("Licensee") obtaining a copy of the source code appearing in this file ("Covered Code") an irrevocable, perpetual, worldwide license under Intel's copyrights in the base code distributed originally by Intel ("Original Intel Code") to copy, make derivatives, distribute, use and display any portion of the Covered Code in any form, with the right to sublicense such rights; and
|
||||
|
||||
2.3. Intel grants Licensee a non-exclusive and non-transferable patent license (with the right to sublicense), under only those claims of Intel patents that are infringed by the Original Intel Code, to make, use, sell, offer to sell, and import the Covered Code and derivative works thereof solely to the minimum extent necessary to exercise the above copyright license, and in no event shall the patent license extend to any additions to or modifications of the Original Intel Code. No other license or right is granted directly or by implication, estoppel or otherwise; The above copyright and patent license is granted only if the following conditions are met:
|
||||
|
||||
3. CONDITIONS
|
||||
|
||||
3.1. Redistribution of Source with Rights to Further Distribute Source. Redistribution of source code of any substantial portion of the Covered Code or modification with rights to further distribute source must include the above Copyright Notice, the above License, this list of Conditions, and the following Disclaimer and Export Compliance provision. In addition, Licensee must cause all Covered Code to which Licensee contributes to contain a file documenting the changes Licensee made to create that Covered Code and the date of any change. Licensee must include in that file the documentation of any changes made by any predecessor Licensee. Licensee must include a prominent statement that the modification is derived, directly or indirectly, from Original Intel Code.
|
||||
|
||||
3.2. Redistribution of Source with no Rights to Further Distribute Source. Redistribution of source code of any substantial portion of the Covered Code or modification without rights to further distribute source must include the following Disclaimer and Export Compliance provision in the documentation and/or other materials provided with distribution. In addition, Licensee may not authorize further sublicense of source of any portion of the Covered Code, and must include terms to the effect that the license from Licensee to its licensee is limited to the intellectual property embodied in the software Licensee provides to its licensee, and not to intellectual property embodied in modifications its licensee may make.
|
||||
|
||||
3.3. Redistribution of Executable. Redistribution in executable form of any substantial portion of the Covered Code or modification must reproduce the above Copyright Notice, and the following Disclaimer and Export Compliance provision in the documentation and/or other materials provided with the distribution.
|
||||
|
||||
3.4. Intel retains all right, title, and interest in and to the Original Intel Code.
|
||||
|
||||
3.5. Neither the name Intel nor any other trademark owned or controlled by Intel shall be used in advertising or otherwise to promote the sale, use or other dealings in products derived from or relating to the Covered Code without prior written authorization from Intel.
|
||||
|
||||
4. DISCLAIMER AND EXPORT COMPLIANCE
|
||||
|
||||
4.1. INTEL MAKES NO WARRANTY OF ANY KIND REGARDING ANY SOFTWARE PROVIDED HERE. ANY SOFTWARE ORIGINATING FROM INTEL OR DERIVED FROM INTEL SOFTWARE IS PROVIDED "AS IS," AND INTEL WILL NOT PROVIDE ANY SUPPORT, ASSISTANCE, INSTALLATION, TRAINING OR OTHER SERVICES. INTEL WILL NOT PROVIDE ANY UPDATES, ENHANCEMENTS OR EXTENSIONS. INTEL SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, NONINFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE.
|
||||
|
||||
4.2. IN NO EVENT SHALL INTEL HAVE ANY LIABILITY TO LICENSEE, ITS LICENSEES OR ANY OTHER THIRD PARTY, FOR ANY LOST PROFITS, LOST DATA, LOSS OF USE OR COSTS OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES, OR FOR ANY INDIRECT, SPECIAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THIS AGREEMENT, UNDER ANY CAUSE OF ACTION OR THEORY OF LIABILITY, AND IRRESPECTIVE OF WHETHER INTEL HAS ADVANCE NOTICE OF THE POSSIBILITY OF SUCH DAMAGES. THESE LIMITATIONS SHALL APPLY NOTWITHSTANDING THE FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.
|
||||
|
||||
4.3. Licensee shall not export, either directly or indirectly, any of this software or system incorporating such software without first obtaining any required license or other approval from the U. S. Department of Commerce or any other agency or department of the United States Government. In the event Licensee exports any such software from the United States or re-exports any such software from a foreign destination, Licensee shall ensure that the distribution and export/re-export of the software is in compliance with all laws, regulations, orders, or other restrictions of the U.S. Export Administration Regulations. Licensee agrees that neither it nor any of its subsidiaries will export/re-export any technical data, process, software, or service, directly or indirectly, to any country for which the United States government or any agency thereof requires an export license, other governmental approval, or letter of assurance, without first obtaining such license, approval or letter.
|
||||
@@ -0,0 +1,135 @@
|
||||
.\" First parameter, NAME, should be all caps
|
||||
.\" Second parameter, SECTION, should be 1-8, maybe w/ subsection
|
||||
.\" other parameters are allowed: see man(7), man(1)
|
||||
.TH IASL 1 "October 14, 2005"
|
||||
.\" Please adjust this date whenever revising the manpage.
|
||||
.\"
|
||||
.\" Some roff macros, for reference:
|
||||
.\" .nh disable hyphenation
|
||||
.\" .hy enable hyphenation
|
||||
.\" .ad l left justify
|
||||
.\" .ad b justify to both left and right margins
|
||||
.\" .nf disable filling
|
||||
.\" .fi enable filling
|
||||
.\" .br insert line break
|
||||
.\" .sp <n> insert n+1 empty lines
|
||||
.\" for manpage-specific macros, see man(7)
|
||||
.SH NAME
|
||||
iasl \- ACPI Source Language compiler/decompiler
|
||||
.SH SYNOPSIS
|
||||
.B iasl
|
||||
.RI [ options ]
|
||||
.RI [ "input file" ]
|
||||
.SH DESCRIPTION
|
||||
This manual page documents briefly the
|
||||
.B iasl
|
||||
command. The option list is taken from the iasl interactive help.
|
||||
.PP
|
||||
.\" TeX users may be more comfortable with the \fB<whatever>\fP and
|
||||
.\" \fI<whatever>\fP escape sequences to invode bold face and italics,
|
||||
.\" respectively.
|
||||
.B iasl
|
||||
is an ASL compiler and decompiler.
|
||||
|
||||
.SH OPTIONS
|
||||
|
||||
.PP
|
||||
.SS General Output
|
||||
.TP
|
||||
.B \-p <prefix>
|
||||
Specify filename prefix for all output files (including .aml)
|
||||
.TP
|
||||
.B \-vi
|
||||
Less verbose errors and warnings for use with IDEs
|
||||
.TP
|
||||
.B \-vo
|
||||
Enable optimization comments
|
||||
.TP
|
||||
.B \-vr
|
||||
Disable remarks
|
||||
.TP
|
||||
.B \-vs
|
||||
Disable signon
|
||||
|
||||
.PP
|
||||
.SS AML Output Files
|
||||
.TP
|
||||
.B \-s<a|c>
|
||||
Create AML in assembler or C source file (*.asm or *.c)
|
||||
.TP
|
||||
.B \-i<a|c>
|
||||
Create assembler or C include file (*.inc or *.h)
|
||||
.TP
|
||||
.B \-t<a|c>
|
||||
Create AML in assembler or C hex table (*.hex)
|
||||
|
||||
.PP
|
||||
.SS AML Code Generation
|
||||
.TP
|
||||
.B \-oa
|
||||
Disable all optimizations (compatibility mode)
|
||||
.TP
|
||||
.B \-of
|
||||
Disable constant folding
|
||||
.TP
|
||||
.B \-oi
|
||||
Disable integer optimization to Zero/One/Ones
|
||||
.TP
|
||||
.B \-on
|
||||
Disable named reference string optimization
|
||||
.TP
|
||||
.B \-r<Revision>
|
||||
Override table header Revision (1-255)
|
||||
|
||||
.PP
|
||||
.SS Listings
|
||||
.TP
|
||||
.B \-l
|
||||
Create mixed listing file (ASL source and AML) (*.lst)
|
||||
.TP
|
||||
.B \-ln
|
||||
Create namespace file (*.nsp)
|
||||
.TP
|
||||
.B \-ls
|
||||
Create combined source file (expanded includes) (*.src)
|
||||
|
||||
.PP
|
||||
.SS AML Disassembler
|
||||
.TP
|
||||
.B \-d [file]
|
||||
Disassemble AML to ASL source code file (*.dsl)
|
||||
.TP
|
||||
.B \-dc [file]
|
||||
Disassemble AML and immediately compile it
|
||||
.br
|
||||
(Obtain DSDT from current system if no input file)
|
||||
.TP
|
||||
.B \-e
|
||||
Generate External() statements for unresolved symbols
|
||||
.TP
|
||||
.B \-g
|
||||
Get ACPI tables and write to files (*.dat)
|
||||
|
||||
.PP
|
||||
.SS Miscellaneous
|
||||
.TP
|
||||
.B \-a
|
||||
Verify source file is entirely ASCII text (0x00-0x7F)
|
||||
|
||||
.PP
|
||||
.SS Help
|
||||
.TP
|
||||
.B \-h
|
||||
Additional help and compiler debug options
|
||||
.TP
|
||||
.B \-hc
|
||||
Display operators allowed in constant expressions
|
||||
.TP
|
||||
.B \-hr
|
||||
Display ACPI reserved method names
|
||||
|
||||
.SH AUTHOR
|
||||
iasl was written by Robert Moore <robert.moore@intel.com>.
|
||||
.PP
|
||||
This manual page was written by Mattia Dongili <malattia@debian.org>,
|
||||
for the Debian project (but may be used by others).
|
||||
@@ -0,0 +1,55 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>acpica</Name>
|
||||
<Homepage>http://www.acpica.org</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>custom</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>ACPI debugging tools written by Intel</Summary>
|
||||
<Description>acpica contains an AML interpreter and debugger, ACPI namespace support, ACPI hardware and event support and a full ASL compiler and disassembler.</Description>
|
||||
<Archive sha1sum="821055093d9520528b5b4bd95a1e5a499c3ccf12" type="targz">ftp://gentoo.arcticnetwork.ca/pub/gentoo/distfiles/acpica-unix-20130117.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>acpica</Name>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="executable">/usr/sbin</Path>
|
||||
<Path fileType="man">/usr/share/man/man1</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/man/man1/iasl.1">iasl.1</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/doc/acpica/LICENSE">LICENSE</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-03-05</Date>
|
||||
<Version>0.0_20130117</Version>
|
||||
<Comment>Rebuild for buildhost</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-05-02</Date>
|
||||
<Version>0.0_20130117</Version>
|
||||
<Comment>Fixed</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-12-22</Date>
|
||||
<Version>0.0_20130117</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>acpica</Name>
|
||||
<Summary xml:lang="tr">Intel ACPI hata ayıklama araçları</Summary>
|
||||
<Description xml:lang="tr">acpica, AML yorumlayıcısı, AML hata ayıklayıcısı, ACPI donanım ve olay desteği, ASL derleyicisi ve ASL disassembler gibi çeşitli ACPI araçları içeren bir pakettir.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,21 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
pisitools.dosed("configure", "HAVE_PYTHON=yes", "HAVE_PYTHON=no")
|
||||
autotools.configure("--enable-static=no")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.insinto("%s/%s" % (get.docDIR(), get.srcNAME()), "examples")
|
||||
@@ -0,0 +1,94 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libkate</Name>
|
||||
<Homepage>http://code.google.com/p/libkate</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>BSD</License>
|
||||
<IsA>library</IsA>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A text codec for embedding in Ogg</Summary>
|
||||
<Description>Kate is a codec for karaoke and text encapsulation for Ogg.</Description>
|
||||
<Archive sha1sum="87fd8baaddb7120fb4d20b0a0437e44ea8b6c9d8" type="targz">http://libkate.googlecode.com/files/libkate-0.4.1.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
<Dependency>doxygen</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libkate</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libogg</Dependency>
|
||||
<Dependency>libpng</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libkate-devel</Name>
|
||||
<Summary>Development files for libkate</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libkate</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libpng-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libkate-docs</Name>
|
||||
<Summary>API documentation for libkate</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libkate</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc/libkate/html</Path>
|
||||
<Path fileType="doc">/usr/share/doc/libkate/examples</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-05-24</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-03-09</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-31</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>missing dep.</Comment>
|
||||
<Name>Erdinç Gültekin</Name>
|
||||
<Email>erdincgultekin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-08-29</Date>
|
||||
<Version>0.4.1</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,18 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libkate</Name>
|
||||
<Summary xml:lang="tr">Ogg için karaoke ve metin kitaplığı</Summary>
|
||||
<Description xml:lang="tr">Kate, karaoke ve metinleri ogg dosyalara gömmek için kullanılan kitaplık ve konsol uygulamaları içerir.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libkate-devel</Name>
|
||||
<Summary xml:lang="tr">libkate için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>libkate-docs</Name>
|
||||
<Summary xml:lang="tr">libkate paketine ait API belgeleri</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -20,6 +20,7 @@
|
||||
<Dependency>speex-devel</Dependency>
|
||||
<Dependency>libogg-devel</Dependency>
|
||||
<Dependency>libkate-devel</Dependency>
|
||||
<Dependency>curl-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
|
||||
@@ -0,0 +1,29 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
#
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/licenses/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def build():
|
||||
for com in [ "bcc86", "unproto", "copt", "as86", "ld86",
|
||||
"-C cpp", "-C ar", "-C ld" ]:
|
||||
make_opts = { 'cflags' : get.CFLAGS(),
|
||||
'com' : com }
|
||||
|
||||
autotools.make('%(com)s CFLAGS="%(cflags)s -D_POSIX_SOURCE" -j1' % make_opts)
|
||||
|
||||
# ncc does not support gcc optflags
|
||||
autotools.make('-j1')
|
||||
|
||||
def install():
|
||||
for binary in ["bin/*","cpp/bcc-cpp","bcc/bcc-cc1"]:
|
||||
pisitools.dobin(binary)
|
||||
|
||||
pisitools.rename("/usr/bin/Bcc","bcc")
|
||||
|
||||
pisitools.doman("man/*.1")
|
||||
pisitools.dodoc("Changes","COPYING","MAGIC","README")
|
||||
@@ -0,0 +1,26 @@
|
||||
Index: dev86-0.16.17/bcc/bcc.c
|
||||
===================================================================
|
||||
--- dev86-0.16.17.orig/bcc/bcc.c
|
||||
+++ dev86-0.16.17/bcc/bcc.c
|
||||
@@ -226,12 +226,21 @@ char ** argv;
|
||||
|
||||
} else {
|
||||
/* Relative paths to normal PREFIX directory */
|
||||
+#ifdef __x86_64__
|
||||
+ default_include = build_libpath("-I", "/lib64/bcc/include", "");
|
||||
+ default_libdir = build_libpath("-L", "/lib64/bcc", libdir_suffix);
|
||||
+ optim_rules = build_libpath("-d", "/lib64/bcc", libdir_suffix);
|
||||
+
|
||||
+ build_prefix("/lib64/bcc", libdir_suffix, "");
|
||||
+ build_prefix("/lib64/bcc", "", "");
|
||||
+#else
|
||||
default_include = build_libpath("-I", "/lib/bcc/include", "");
|
||||
default_libdir = build_libpath("-L", "/lib/bcc", libdir_suffix);
|
||||
optim_rules = build_libpath("-d", "/lib/bcc", libdir_suffix);
|
||||
|
||||
build_prefix("/lib/bcc", libdir_suffix, "");
|
||||
build_prefix("/lib/bcc", "", "");
|
||||
+#endif
|
||||
}
|
||||
|
||||
build_prefix("/bin", "", "");
|
||||
@@ -0,0 +1,15 @@
|
||||
Index: dev86-0.16.17/libc/Config_sh
|
||||
===================================================================
|
||||
--- dev86-0.16.17.orig/libc/Config_sh
|
||||
+++ dev86-0.16.17/libc/Config_sh
|
||||
@@ -46,8 +46,8 @@ main()
|
||||
do
|
||||
display
|
||||
echo
|
||||
- echon 'Select config option to flip [or quit] >'
|
||||
- read n
|
||||
+ echon 'Do not select config option, I can do it for you ;)'
|
||||
+ n="q" # read n
|
||||
v=""
|
||||
case "$n" in
|
||||
[qQ]* ) RUNNING=0
|
||||
@@ -0,0 +1,22 @@
|
||||
diff -up dev86-0.16.19/ld/x86_aout.h.long dev86-0.16.19/ld/x86_aout.h
|
||||
--- dev86-0.16.19/ld/x86_aout.h.long 2012-07-30 10:17:06.000000000 +0200
|
||||
+++ dev86-0.16.19/ld/x86_aout.h 2012-11-15 15:19:12.215396644 +0100
|
||||
@@ -11,17 +11,11 @@
|
||||
/* If the host isn't an x86 all bets are off, use chars. */
|
||||
#if defined(i386) || defined(__BCC__) || defined(MSDOS)
|
||||
typedef long Long;
|
||||
-#define __OUT_OK 1
|
||||
#else
|
||||
-/* Beware: this will probably allow some BE hosts to generate broken files. */
|
||||
-#ifdef INT32_MAX
|
||||
#include <stdint.h>
|
||||
typedef int32_t Long;
|
||||
-#define __OUT_OK 1
|
||||
-#else
|
||||
-typedef char Long[4];
|
||||
-#endif
|
||||
#endif
|
||||
+#define __OUT_OK 1
|
||||
|
||||
struct exec { /* a.out header */
|
||||
unsigned char a_magic[2]; /* magic number */
|
||||
@@ -0,0 +1,15 @@
|
||||
--- dev86-0.16.17/makefile.in.noelks 2006-01-25 17:03:02.000000000 -0500
|
||||
+++ dev86-0.16.17/makefile.in 2006-01-25 17:03:19.000000000 -0500
|
||||
@@ -89,10 +89,10 @@
|
||||
|
||||
#ifdef GNUMAKE
|
||||
all: check_config bcc86 cpp unproto copt as86 ar86 ld86 objdump86 \
|
||||
- library lib-bsd alt-libs elksemu
|
||||
+ library lib-bsd alt-libs
|
||||
|
||||
install: check_config install-bcc install-man \
|
||||
- install-lib install-emu
|
||||
+ install-lib
|
||||
|
||||
install-all: install install-other
|
||||
|
||||
@@ -0,0 +1,11 @@
|
||||
--- dev86-0.16.17/makefile.in.nostrip 2007-01-30 14:28:38.000000000 +0100
|
||||
+++ dev86-0.16.17/makefile.in 2007-01-30 14:40:56.000000000 +0100
|
||||
@@ -78,7 +78,7 @@
|
||||
|
||||
# Install files with the userid of the currently running process.
|
||||
INDAT=-m 644
|
||||
-INEXE=-m 755 -s
|
||||
+INEXE=-m 755
|
||||
INSCR=-m 755
|
||||
|
||||
#ifdef __CYGWIN__
|
||||
@@ -0,0 +1,27 @@
|
||||
From: Lubomir Rintel <lkundrak@v3.sk>
|
||||
|
||||
There are off-by-one errors when filling the ar headers, the trailing nul
|
||||
would overflow the target buffer.
|
||||
|
||||
diff -urp dev86-0.16.17/ld/mkar.c dev86-0.16.17.fixed/ld/mkar.c
|
||||
--- dev86-0.16.17/ld/mkar.c 2004-06-20 09:23:27.000000000 +0200
|
||||
+++ dev86-0.16.17.fixed/ld/mkar.c 2010-03-29 23:34:30.351426404 +0200
|
||||
@@ -51,12 +51,12 @@ char buf[128];
|
||||
memset(&arbuf, ' ', sizeof(arbuf));
|
||||
strcpy(buf, ptr); strcat(buf, "/ ");
|
||||
strncpy(arbuf.ar_name, buf, sizeof(arbuf.ar_name));
|
||||
-
|
||||
- sprintf(arbuf.ar_date, "%-12ld", (long)st.st_mtime);
|
||||
- sprintf(arbuf.ar_uid, "%-6d", (int)(st.st_uid%1000000L));
|
||||
- sprintf(arbuf.ar_gid, "%-6d", (int)(st.st_gid%1000000L));
|
||||
- sprintf(arbuf.ar_mode, "%-8lo", (long)st.st_mode);
|
||||
- sprintf(arbuf.ar_size, "%-10ld", (long)st.st_size);
|
||||
+
|
||||
+ snprintf(arbuf.ar_date, 12, "%-12ld", (long)st.st_mtime);
|
||||
+ snprintf(arbuf.ar_uid, 6, "%-6d", (int)(st.st_uid%1000000L));
|
||||
+ snprintf(arbuf.ar_gid, 6, "%-6d", (int)(st.st_gid%1000000L));
|
||||
+ snprintf(arbuf.ar_mode, 8, "%-8lo", (long)st.st_mode);
|
||||
+ snprintf(arbuf.ar_size, 10, "%-10ld", (long)st.st_size);
|
||||
memcpy(arbuf.ar_fmag, ARFMAG, sizeof(arbuf.ar_fmag));
|
||||
|
||||
if( fwrite(&arbuf, 1, sizeof(arbuf), fd) != sizeof(arbuf) )
|
||||
@@ -0,0 +1,15 @@
|
||||
Index: dev86-0.16.17/libc/i386sys/Makefile
|
||||
===================================================================
|
||||
--- dev86-0.16.17.orig/libc/i386sys/Makefile
|
||||
+++ dev86-0.16.17/libc/i386sys/Makefile
|
||||
@@ -20,6 +20,10 @@ CFLAGS=$(ARCH) $(CCFLAGS) $(DEFS)
|
||||
all: $(SYSCALLS) $(LIBC)($(OBJ))
|
||||
@$(RM) $(OBJ)
|
||||
|
||||
+# when OBJ is null at $(LIBC)($(OBJ)), make crashes
|
||||
+$(LIBC)():
|
||||
+ @:
|
||||
+
|
||||
syscalls: syscall.mak
|
||||
$(MAKE) -f syscall.mak LIBC="$(LIBC)" CFLAGS="$(CFLAGS)"
|
||||
|
||||
@@ -0,0 +1,61 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dev86</Name>
|
||||
<Homepage>http://homepage.ntlworld.com/robert.debath/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Development environment for ELKS-86 and standalone 8086 code</Summary>
|
||||
<Description>The dev86 package provides an assembler and linker for real mode 80x86 instructions. You'll need to have this package installed in order to build programs that run in real mode, including LILO and the kernel's bootstrapping code, from their sources.</Description>
|
||||
<Archive sha1sum="9e8c2949c408ce8ebdade3af3eee775ebac3cab5" type="targz">http://v3.sk/~lkundrak/dev86/archive/Dev86src-0.16.19.tar.gz</Archive>
|
||||
<!--http://v3.sk/~lkundrak/dev86/archive/Dev86src-0.16.20.tar.gz-->
|
||||
<Patches>
|
||||
<!-- some fedora fixes -->
|
||||
<Patch level="1">fedora/dev86-noelks.patch</Patch>
|
||||
<Patch level="1">fedora/dev86-nostrip.patch</Patch>
|
||||
<Patch level="1">fedora/dev86-long.patch</Patch>
|
||||
<Patch level="1">fedora/dev86-print-overflow.patch</Patch>
|
||||
<Patch level="1">dont-ask-anything.patch</Patch>
|
||||
<Patch level="1">64bit-build-fix.patch</Patch>
|
||||
<Patch level="1">makefile-fix.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>dev86</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-02-17</Date>
|
||||
<Version>0.16.19</Version>
|
||||
<Comment>Release.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-05-02</Date>
|
||||
<Version>0.16.19</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-13</Date>
|
||||
<Version>0.16.17</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>dev86</Name>
|
||||
<Summary xml:lang="tr">ELKS-86 ve 8086 kodları için geliştirme ortamı</Summary>
|
||||
<Summary xml:lang="es">Entorno de desarrollo para ELKS-86 y código 8086 independiente</Summary>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user