Merge branch 'master' of https://github.com/pisilinux/main
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>office.docbook</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/python
|
||||
# -*- coding: utf-8 -*-
|
||||
# Licensed under the GNU General Public License, version 3.
|
||||
# See the file http://www.gnu.org/copyleft/gpl.txt
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
@@ -0,0 +1,48 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>itstool</Name>
|
||||
<Homepage>http://itstool.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<Summary>XML to PO and back again</Summary>
|
||||
<Description>XML to PO and back again</Description>
|
||||
<Archive sha1sum="5084a2cecca8d70d184f22d2aecf5e2cb715917f" type="tarbz2">http://files.itstool.org/itstool/itstool-2.0.2.tar.bz2</Archive>
|
||||
<Patches/>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>itstool</Name>
|
||||
<Files>
|
||||
<Path fileType="data">/usr</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-18</Date>
|
||||
<Version>2.0.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-01-26</Date>
|
||||
<Version>2.0.2</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-09-12</Date>
|
||||
<Version>1.2.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,60 @@
|
||||
#!/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 libtools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
docname = get.srcNAME()
|
||||
|
||||
def setup():
|
||||
shelltools.export("ALLOWED_FLAGS", "-O -O1 -O2 -pipe -g")
|
||||
shelltools.sym("config/configure.in", "configure.in")
|
||||
shelltools.export("SGML_PREFIX", "/usr/share/sgml")
|
||||
autotools.configure("--enable-http \
|
||||
--enable-default-catalog=/etc/sgml/catalog \
|
||||
--enable-default-search-path=/usr/share/sgml:/usr/share/xml \
|
||||
--disable-static \
|
||||
--enable-splibdir=/usr/lib \
|
||||
--libdir=/usr/lib \
|
||||
--datadir=/usr/share/sgml/%s" % docname)
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
pisitools.dodir("/usr")
|
||||
pisitools.dodir("/usr/lib")
|
||||
|
||||
autotools.rawInstall("prefix=%s/usr \
|
||||
libdir=%s/usr/lib \
|
||||
datadir=%s/usr/share/sgml/%s " \
|
||||
% (get.installDIR(), \
|
||||
get.installDIR(), \
|
||||
get.installDIR(), \
|
||||
docname))
|
||||
|
||||
pisitools.dosym("openjade", "/usr/bin/jade")
|
||||
pisitools.dosym("onsgmls", "/usr/bin/nsgmls")
|
||||
pisitools.dosym("osgmlnorm", "/usr/bin/sgmlnorm")
|
||||
pisitools.dosym("ospam", "/usr/bin/spam")
|
||||
pisitools.dosym("ospent", "/usr/bin/spent")
|
||||
pisitools.dosym("osx", "/usr/bin/sgml2xml")
|
||||
|
||||
pisitools.insinto("/usr/share/sgml/%s" % docname, "dsssl/builtins.dsl")
|
||||
for i in ["dsssl/dsssl.dtd", "dsssl/style-sheet.dtd", "dsssl/fot.dtd"]:
|
||||
pisitools.insinto("/usr/share/sgml/%s/dsssl" % docname, i)
|
||||
pisitools.insinto("/usr/share/sgml/%s/pubtext" % docname, "pubtext/*")
|
||||
|
||||
pisitools.dodoc("COPYING", "NEWS", "README", "VERSION")
|
||||
pisitools.dohtml("doc/*.htm")
|
||||
|
||||
pisitools.insinto("/usr/share/doc/%s/jadedoc" % get.srcNAME(), "jadedoc/*.htm")
|
||||
pisitools.insinto("/usr/share/doc/%s/jadedoc/images" % get.srcNAME(), "jadedoc/images/*")
|
||||
|
||||
|
||||
@@ -0,0 +1,19 @@
|
||||
#!/usr/bin/python
|
||||
|
||||
import os
|
||||
|
||||
def postInstall(fromVersion, fromRelease, toVersion, toRelease):
|
||||
os.system("/usr/bin/install-catalog --add /etc/sgml/openjade.cat \
|
||||
/usr/share/sgml/openjade/catalog")
|
||||
os.system("/usr/bin/install-catalog --add /etc/sgml/openjade.cat \
|
||||
/usr/share/sgml/openjade/dsssl/catalog")
|
||||
os.system("/usr/bin/install-catalog --add /etc/sgml/sgml-docbook.cat \
|
||||
/etc/sgml/openjade.cat")
|
||||
|
||||
def preRemove():
|
||||
os.system("/usr/bin/install-catalog --remove /etc/sgml/openjade.cat \
|
||||
/usr/share/sgml/openjade/catalog")
|
||||
os.system("/usr/bin/install-catalog --remove /etc/sgml/openjade.cat \
|
||||
/usr/share/sgml/openjade/dsssl/catalog")
|
||||
os.system("/usr/bin/install-catalog --remove /etc/sgml/sgml-docbook.cat \
|
||||
/etc/sgml/openjade.cat")
|
||||
@@ -0,0 +1,40 @@
|
||||
diff -urNp openjade-1.3.2/grove/Makefile.sub devel/grove/Makefile.sub
|
||||
--- openjade-1.3.2/grove/Makefile.sub 2002-10-20 23:47:24.000000000 +0200
|
||||
+++ devel/grove/Makefile.sub 2007-07-23 15:39:23.000000000 +0200
|
||||
@@ -1,4 +1,4 @@
|
||||
LTVERSION=0:1:0
|
||||
LIB=ogrove
|
||||
-DEPLIBS=-lm
|
||||
+DEPLIBS=-lm -lstdc++
|
||||
OBJS=Node.o LocNode.o
|
||||
diff -urNp openjade-1.3.2/spgrove/Makefile.sub devel/spgrove/Makefile.sub
|
||||
--- openjade-1.3.2/spgrove/Makefile.sub 2002-11-15 23:46:50.000000000 +0100
|
||||
+++ devel/spgrove/Makefile.sub 2007-07-23 16:06:13.000000000 +0200
|
||||
@@ -1,9 +1,10 @@
|
||||
LTVERSION=0:1:0
|
||||
LIB=ospgrove
|
||||
INCLUDE=-I$(srcdir)/../grove
|
||||
-DEPLIBS=-lm -L$(TOP)/grove -L$(TOP)/grove/.libs \
|
||||
+DEPLIBS=$(TOP)/grove/libogrove.la \
|
||||
+ -lm -losp -L$(TOP)/grove/.libs \
|
||||
-L$(TOP)/lib -L$(TOP)/lib/.libs \
|
||||
- $(LIB_THREADS)
|
||||
+ $(LIB_THREADS) -lstdc++
|
||||
OBJS=GroveApp.o GroveBuilder.o SdNode.o
|
||||
GENSRCS=grove_inst.cxx
|
||||
|
||||
diff -urNp openjade-1.3.2/style/Makefile.sub devel/style/Makefile.sub
|
||||
--- openjade-1.3.2/style/Makefile.sub 2003-04-18 19:18:10.000000000 +0200
|
||||
+++ devel/style/Makefile.sub 2007-07-23 16:08:26.000000000 +0200
|
||||
@@ -1,8 +1,8 @@
|
||||
LTVERSION=0:1:0
|
||||
LIB=ostyle
|
||||
-DEPLIBS=-lm -L$(TOP)/grove -L$(TOP)/grove/.libs \
|
||||
- -L$(TOP)/lib -L$(TOP)/lib/.libs \
|
||||
- -L$(TOP)/spgrove -L$(TOP)/spgrove/.libs
|
||||
+DEPLIBS=$(TOP)/grove/libogrove.la $(TOP)/spgrove/libospgrove.la \
|
||||
+ -lm -losp -L$(TOP)/lib -L$(TOP)/lib/.libs -L$(TOP)/grove/.libs \
|
||||
+ -L$(TOP)/spgrove -L$(TOP)/spgrove/.libs -lstdc++
|
||||
OBJS=LangObj.o \
|
||||
Collector.o \
|
||||
DssslApp.o \
|
||||
@@ -0,0 +1,13 @@
|
||||
Index: openjade-1.3.2/jade/Makefile.sub
|
||||
===================================================================
|
||||
--- openjade-1.3.2.orig/jade/Makefile.sub
|
||||
+++ openjade-1.3.2/jade/Makefile.sub
|
||||
@@ -4,7 +4,7 @@ OBJS=jade.o SgmlFOTBuilder.o RtfFOTBuild
|
||||
INCLUDE=-I$(srcdir)/../grove -I$(srcdir)/../spgrove -I$(srcdir)/../style
|
||||
# XLIBS=../style/libostyle.a ../spgrove/libospgrove.a ../grove/libogrove.a \
|
||||
# ../lib/libosp.a
|
||||
-XLIBS=../style/libostyle.a ../spgrove/libospgrove.a ../grove/libogrove.a $(splibdir)/libosp.a
|
||||
+XLIBS=../style/libostyle.a ../grove/libogrove.a ../spgrove/libospgrove.a $(splibdir)/libosp.so
|
||||
GENSRCS=JadeMessages.h HtmlMessages.h RtfMessages.h TeXMessages.h \
|
||||
HtmlFOTBuilder_inst.cxx RtfFOTBuilder_inst.cxx TeXFOTBuilder_inst.cxx \
|
||||
TransformFOTBuilder_inst.cxx MifMessages.h MifFOTBuilder_inst.cxx
|
||||
@@ -0,0 +1,24 @@
|
||||
See https://bugs.gentoo.org/show_bug.cgi?id=235610
|
||||
|
||||
--- config/configure.in
|
||||
+++ config/configure.in
|
||||
@@ -53,7 +53,7 @@
|
||||
esac
|
||||
# On PPC64 libosp is to be found in /usr/lib64; thus
|
||||
# fall back to this directory
|
||||
-test -d ${osplibdir}64 && osplibdir=${osplibdir}64
|
||||
+test -f ${osplibdir}64/libosp.la && osplibdir=${osplibdir}64
|
||||
AC_MSG_CHECKING(location of OpenSP Library)
|
||||
AC_ARG_ENABLE(splibdir,
|
||||
[ --enable-splibdir=pathlist
|
||||
--- configure
|
||||
+++ configure
|
||||
@@ -1753,7 +1753,7 @@
|
||||
esac
|
||||
# On PPC64 libosp is to be found in /usr/lib64; thus
|
||||
# fall back to this directory
|
||||
-test -d ${osplibdir}64 && osplibdir=${osplibdir}64
|
||||
+test -f ${osplibdir}64/libosp.la && osplibdir=${osplibdir}64
|
||||
echo "$as_me:$LINENO: checking location of OpenSP Library" >&5
|
||||
echo $ECHO_N "checking location of OpenSP Library... $ECHO_C" >&6
|
||||
# Check whether --enable-splibdir or --disable-splibdir was given.
|
||||
@@ -0,0 +1,32 @@
|
||||
Use Getopt::Std in place of getopts.pl.
|
||||
https://bugs.gentoo.org/show_bug.cgi?id=420083
|
||||
|
||||
--- a/msggen.pl
|
||||
+++ b/msggen.pl
|
||||
@@ -4,6 +4,7 @@
|
||||
# See the file COPYING for copying permission.
|
||||
|
||||
use POSIX;
|
||||
+use Getopt::Std;
|
||||
|
||||
# Package and version.
|
||||
$package = 'openjade';
|
||||
@@ -18,8 +19,7 @@
|
||||
undef $opt_l;
|
||||
undef $opt_p;
|
||||
undef $opt_t;
|
||||
-do 'getopts.pl';
|
||||
-&Getopts('l:p:t:');
|
||||
+getopts('l:p:t:');
|
||||
$module = $opt_l;
|
||||
$pot_file = $opt_p;
|
||||
|
||||
@@ -72,7 +72,7 @@
|
||||
else {
|
||||
$field[0] =~ /^[IWQXE][0-9]$/ || &error("invalid first field");;
|
||||
$type[$num] = substr($field[0], 0, 1);
|
||||
- $argc = int(substr($field[0], 1, 1));
|
||||
+ $argc = substr($field[0], 1, 1);
|
||||
}
|
||||
$nargs[$num] = $argc;
|
||||
$field[1] =~ /^[a-zA-Z_][a-zA-Z0-9_]+$/ || &error("invalid tag");
|
||||
@@ -0,0 +1,12 @@
|
||||
diff -ru a/Makefile.lib.in b/Makefile.lib.in
|
||||
--- a/Makefile.lib.in 2002-01-22 05:57:53.000000000 -0600
|
||||
+++ b/Makefile.lib.in 2009-01-04 16:15:41.000000000 -0600
|
||||
@@ -23,7 +23,7 @@
|
||||
echo 'LT_OBJS='`echo $(OBJS)|sed 's/\.o/.lo/g'` >Makefile.lt
|
||||
|
||||
lib$(LIB).la: $(LT_OBJS)
|
||||
- $(LIBTOOL) --mode=link $(CC) $(LINKFLAGS) -o lib$(LIB).la $(LT_OBJS) \
|
||||
+ $(LIBTOOL) --mode=link $(CC) $(LDFLAGS) $(LINKFLAGS) -o lib$(LIB).la $(LT_OBJS) \
|
||||
-rpath $(libdir) -version-info $(LTVERSION) $(DEPLIBS)
|
||||
|
||||
install:
|
||||
@@ -0,0 +1 @@
|
||||
SYSTEM "builtins.dsl" "builtins.dsl"
|
||||
@@ -0,0 +1,4 @@
|
||||
PUBLIC "-//James Clark//DTD DSSSL Flow Object Tree//EN" "fot.dtd"
|
||||
PUBLIC "ISO/IEC 10179:1996//DTD DSSSL Architecture//EN" "dsssl.dtd"
|
||||
PUBLIC "-//James Clark//DTD DSSSL Style Sheet//EN" "style-sheet.dtd"
|
||||
PUBLIC "-//OpenJade//DTD DSSSL Style Sheet//EN" "style-sheet.dtd"
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>openjade</Name>
|
||||
<Homepage>http://openjade.sourceforge.net</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>An implementation of DSSSL</Summary>
|
||||
<Description>OpenJade is an implementation of Document Style Semantics and Specification Language (DSSSL), a style language to format Standard Generalized Markup Language (SGML) or Extensible Markup Language (XML) documents.</Description>
|
||||
<Archive sha1sum="54e1999f41450fbd62c5d466002d79d3efca2321" type="targz">http://downloads.sourceforge.net/openjade/openjade-1.3.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>sgml-common</Dependency>
|
||||
<Dependency>opensp-devel</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<!-- <Patch level="1">openjade-1.3.2-deplibs.patch</Patch> -->
|
||||
<Patch level="1">openjade-1.3.2-ldflags.patch</Patch>
|
||||
<Patch level="1">openjade-1.3.2-respect-ldflags.patch</Patch>
|
||||
<Patch level="1">openjade-1.3.2-msggen.pl.patch</Patch>
|
||||
<!-- <Patch>openjade-1.3.2-lib64-fix.patch</Patch> -->
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>openjade</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>sgml-common</Dependency>
|
||||
<Dependency>opensp</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc/openjade</Path>
|
||||
<Path fileType="data">/usr/share/sgml</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/sgml/openjade/dsssl/catalog">openjade-1.3.2.dsssl-catalog</AdditionalFile>
|
||||
<AdditionalFile owner="root" permission="0644" target="/usr/share/sgml/openjade/catalog">openjade-1.3.2.catalog</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
<Provides>
|
||||
<COMAR script="package.py">System.Package</COMAR>
|
||||
</Provides>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-18</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-02-01</Date>
|
||||
<Version>1.3.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-18</Date>
|
||||
<Version>1.3.2</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>openjade</Name>
|
||||
<Summary xml:lang="tr">Bir DSSSL uyarlaması</Summary>
|
||||
<Description xml:lang="tr">OpenJade SGML ya da XML belgelerinin biçimlendirilmesine yarayan bir biçem lisanı olan DSSSL'nin bir uyarlamasıdır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -0,0 +1,34 @@
|
||||
#!/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 get
|
||||
from pisi.actionsapi import libtools
|
||||
from pisi.actionsapi import shelltools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
WorkDir = "OpenSP-%s" % get.srcVERSION()
|
||||
|
||||
def setup():
|
||||
libtools.gnuconfig_update()
|
||||
shelltools.export("ALLOWED_FLAGS", "-O -O1 -O2 -pipe -g")
|
||||
autotools.configure("--enable-nls \
|
||||
--enable-http \
|
||||
--disable-doc-build \
|
||||
--disable-static \
|
||||
--enable-default-catalog=/etc/sgml/catalog \
|
||||
--enable-default-search-path=/usr/share/sgml:/usr/share/xml \
|
||||
--datadir=/usr/share/sgml")
|
||||
|
||||
def build():
|
||||
autotools.make("pkgdocdir=/usr/share/doc/%s" % get.srcNAME())
|
||||
|
||||
def install():
|
||||
autotools.rawInstall('DESTDIR="%s" pkgdocdir=/usr/share/doc/%s' % (get.installDIR(), get.srcNAME()))
|
||||
|
||||
pisitools.dodoc("AUTHORS", "BUGS", "ChangeLog", "NEWS", "README")
|
||||
pisitools.domove("/usr/share/sgml/locale", "/usr/share")
|
||||
|
||||
@@ -0,0 +1,10 @@
|
||||
--- include/RangeMap.h~ 2004-04-22 20:34:13.729541096 +0300
|
||||
+++ include/RangeMap.h 2004-04-22 20:31:48.473049702 +0300
|
||||
@@ -8,6 +8,7 @@
|
||||
#include "Boolean.h"
|
||||
#include "ISet.h"
|
||||
#include "types.h"
|
||||
+#include "constant.h"
|
||||
#include <stddef.h>
|
||||
|
||||
#ifdef SP_NAMESPACE
|
||||
@@ -0,0 +1,20 @@
|
||||
--- OpenSP-1.5.2/lib/ExtendEntityManager.cxx 2005-11-05 10:05:20.000000000 +0100
|
||||
+++ OpenSP-1.5.2.new/lib/ExtendEntityManager.cxx 2007-06-21 12:56:26.000000000 +0200
|
||||
@@ -1238,7 +1238,8 @@ StorageObjectSpec::StorageObjectSpec()
|
||||
}
|
||||
|
||||
StorageObjectSpec::StorageObjectSpec(const StorageObjectSpec& x)
|
||||
-: codingSystemName(x.codingSystemName),
|
||||
+: storageManager(x.storageManager),
|
||||
+ codingSystemName(x.codingSystemName),
|
||||
codingSystem(x.codingSystem),
|
||||
specId(x.specId),
|
||||
baseId(x.baseId),
|
||||
@@ -1253,6 +1254,7 @@ StorageObjectSpec::StorageObjectSpec(con
|
||||
StorageObjectSpec& StorageObjectSpec::operator=(const StorageObjectSpec& x)
|
||||
{
|
||||
if (this != &x) {
|
||||
+ storageManager = x.storageManager;
|
||||
codingSystemName = x.codingSystemName;
|
||||
codingSystem = x.codingSystem;
|
||||
specId = x.specId;
|
||||
@@ -0,0 +1,75 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>opensp</Name>
|
||||
<Homepage>http://openjade.sourceforge.net</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>as-is</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>A SGML parsing and entity management toolkit</Summary>
|
||||
<Description>OpenSP is a free, object-oriented toolkit for Standard Generalized Markup Language (SGML) parsing and entity management maintained by the OpenJade project.</Description>
|
||||
<Archive sha1sum="b4e903e980f8a8b3887396a24e067bef126e97d5" type="targz">mirrors://sourceforge/openjade/OpenSP-1.5.2.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>docbook-xml</Dependency>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>opensp-1.5-gcc34.patch</Patch>
|
||||
<Patch level="1">opensp-sigsegv.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>opensp</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc/opensp</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/sgml</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>opensp-devel</Name>
|
||||
<Summary>Development files for opensp</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">opensp</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-18</Date>
|
||||
<Version>1.5.2</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2014-02-01</Date>
|
||||
<Version>1.5.2</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-13</Date>
|
||||
<Version>1.5.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Pisi Linux Admins</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>opensp</Name>
|
||||
<Summary xml:lang="tr">SGML ayrıştırma araç seti</Summary>
|
||||
<Description xml:lang="tr">OpenSP SGML sözdizimsel ayrıştırma ve içerik yönetimi için nesne-odaklı bir araç setidir ve OpenJade projesinin bir parçasıdır.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>opensp-devel</Name>
|
||||
<Summary xml:lang="tr">opensp için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,3 @@
|
||||
<PISI>
|
||||
<Name>office.misc</Name>
|
||||
</PISI>
|
||||
@@ -0,0 +1,31 @@
|
||||
# -*- 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():
|
||||
# --shared and --release are default parameters, however we just write them
|
||||
# to down to avoid confusing wheter it's a static/shared or release/debug
|
||||
# package at the first look :)
|
||||
autotools.rawConfigure("--shared \
|
||||
--release \
|
||||
--dot dot \
|
||||
--prefix /usr")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
#pisitools.doman("doc/doxywizard.1")
|
||||
|
||||
# The makefile included is there to generate the html files
|
||||
# The user itself should execute it
|
||||
pisitools.insinto(get.docDIR() + "/doxygen" , "examples")
|
||||
|
||||
pisitools.dodoc("LANGUAGE.HOWTO", "LICENSE", "README*", "VERSION")
|
||||
@@ -0,0 +1,6 @@
|
||||
[Desktop Entry]
|
||||
Type=Application
|
||||
Exec=doxywizard
|
||||
Name=Doxygen Wizard
|
||||
Icon=doxywizard
|
||||
Categories=Qt;Development;
|
||||
Binary file not shown.
|
After Width: | Height: | Size: 4.1 KiB |
@@ -0,0 +1,43 @@
|
||||
diff -up doxygen-1.8.3/src/htmlgen.cpp.multilib doxygen-1.8.3/src/htmlgen.cpp
|
||||
--- doxygen-1.8.3/src/htmlgen.cpp.multilib 2012-12-25 11:27:52.000000000 +0100
|
||||
+++ doxygen-1.8.3/src/htmlgen.cpp 2013-01-02 17:08:57.559028518 +0100
|
||||
@@ -125,6 +125,17 @@ static unsigned char tab_b_png[36] =
|
||||
205, 207, 209, 211, 213, 217, 219, 206, 188
|
||||
};
|
||||
|
||||
+static unsigned char nav_g_png[95] = {
|
||||
+0x89, 0x50, 0x4e, 0x47, 0x0d, 0x0a, 0x1a, 0x0a, 0x00, 0x00, 0x00, 0x0d,
|
||||
+0x49, 0x48, 0x44, 0x52, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x06,
|
||||
+0x08, 0x06, 0x00, 0x00, 0x00, 0x02, 0x10, 0xf4, 0x31, 0x00, 0x00, 0x00,
|
||||
+0x26, 0x49, 0x44, 0x41, 0x54, 0x78, 0x01, 0xed, 0xdd, 0x31, 0x0d, 0x00,
|
||||
+0x00, 0x08, 0x03, 0xc1, 0x4f, 0x48, 0x17, 0x66, 0x84, 0xe1, 0x5f, 0x0d,
|
||||
+0x2d, 0x3e, 0x7e, 0xb8, 0xe5, 0x4d, 0x20, 0x69, 0xcb, 0x4d, 0xe8, 0xc0,
|
||||
+0x83, 0x07, 0x07, 0x0f, 0x53, 0x00, 0xbd, 0xfc, 0x82, 0x3c, 0x05, 0x00,
|
||||
+0x00, 0x00, 0x00, 0x49, 0x45, 0x4e, 0x44, 0xae, 0x42, 0x60, 0x82,
|
||||
+};
|
||||
+
|
||||
// hovering tab background luma
|
||||
static unsigned char tab_h_png[36] =
|
||||
{
|
||||
@@ -824,6 +835,7 @@ static ColoredImgDataItem colored_tab_da
|
||||
{ "tab_s.png", 1, 36, tab_s_png, 0 },
|
||||
{ "nav_h.png", 1, 12, header_png, 0 },
|
||||
{ "nav_f.png", 1, 56, func_header_png, 0 },
|
||||
+ { "nav_g.png", 1, 6, nav_g_png, 0 },
|
||||
{ "bc_s.png", 8, 30, bc_s_png, bc_s_a_png },
|
||||
{ "doxygen.png", 104,31, doxygen_png, doxygen_a_png },
|
||||
{ "closed.png", 9, 9, closed_png, closed_a_png },
|
||||
@@ -1502,13 +1514,6 @@ void HtmlGenerator::writeTabData()
|
||||
Doxygen::indexList->addStyleSheetFile("tabs.css");
|
||||
QCString dname=Config_getString("HTML_OUTPUT");
|
||||
writeColoredImgData(dname,colored_tab_data);
|
||||
-
|
||||
- {
|
||||
- unsigned char shadow[6] = { 5, 5, 5, 5, 5, 5 };
|
||||
- unsigned char shadow_alpha[6] = { 80, 60, 40, 20, 10, 0 };
|
||||
- ColoredImage img(1,6,shadow,shadow_alpha,0,0,100);
|
||||
- img.save(dname+"/nav_g.png");
|
||||
- }
|
||||
}
|
||||
|
||||
void HtmlGenerator::writeSearchData(const char *dir)
|
||||
@@ -0,0 +1,12 @@
|
||||
diff -up doxygen-1.8.5/src/configoptions.cpp.html_timestamp_default_false doxygen-1.8.5/src/configoptions.cpp
|
||||
--- doxygen-1.8.5/src/configoptions.cpp.html_timestamp_default_false 2013-08-26 16:07:23.000000000 +0200
|
||||
+++ doxygen-1.8.5/src/configoptions.cpp 2013-08-26 18:31:40.000000000 +0200
|
||||
@@ -1499,7 +1499,7 @@ void addConfigOptions(Config *cfg)
|
||||
"to NO can help when comparing the output of multiple runs.\n"
|
||||
"The default value is: YES.\n"
|
||||
"This tag requires that the tag GENERATE_HTML is set to YES.",
|
||||
- TRUE
|
||||
+ FALSE
|
||||
);
|
||||
cb->addDependency("GENERATE_HTML");
|
||||
//----
|
||||
@@ -0,0 +1,78 @@
|
||||
diff -up doxygen-1.8.6/addon/doxywizard/Makefile.in.config doxygen-1.8.6/addon/doxywizard/Makefile.in
|
||||
--- doxygen-1.8.6/addon/doxywizard/Makefile.in.config 2013-12-26 12:17:57.281368574 -0700
|
||||
+++ doxygen-1.8.6/addon/doxywizard/Makefile.in 2013-12-26 12:20:44.673513404 -0700
|
||||
@@ -10,7 +10,6 @@
|
||||
# See the GNU General Public License for more details.
|
||||
#
|
||||
|
||||
-QMAKE=$(QTDIR)/bin/qmake $(MKSPECS)
|
||||
INCBUFSIZE=$(PYTHON) ../../src/increasebuffer.py
|
||||
|
||||
all: Makefile.doxywizard
|
||||
diff -up doxygen-1.8.6/configure.config doxygen-1.8.6/configure
|
||||
--- doxygen-1.8.6/configure.config 2013-12-24 09:14:46.000000000 -0700
|
||||
+++ doxygen-1.8.6/configure 2013-12-26 12:20:20.542636493 -0700
|
||||
@@ -326,9 +326,10 @@ if test "$f_wizard" = YES; then
|
||||
if test -z "$QTDIR"; then
|
||||
echo " QTDIR environment variable not set!"
|
||||
printf " Checking for Qt..."
|
||||
- for d in /usr/{lib,share,qt}/{qt-4,qt4,qt,qt*,4} /usr; do
|
||||
+ for d in /usr/{lib64,lib,share,qt}/{qt-4,qt4,qt,qt*,4} /usr; do
|
||||
if test -x "$d/bin/qmake"; then
|
||||
QTDIR=$d
|
||||
+ QMAKE=$d/bin/qmake
|
||||
break 2
|
||||
fi
|
||||
done
|
||||
@@ -704,6 +705,8 @@ INSTTOOL = $f_insttool
|
||||
DOXYDOCS = ..
|
||||
DOCDIR = $f_docdir
|
||||
QTDIR = $QTDIR
|
||||
+QMAKE = $QMAKE
|
||||
+MAN1DIR = share/man/man1
|
||||
EOF
|
||||
|
||||
if test "$f_dot" != NO; then
|
||||
diff -up doxygen-1.8.6/Makefile.in.config doxygen-1.8.6/Makefile.in
|
||||
--- doxygen-1.8.6/Makefile.in.config 2013-12-26 12:17:57.283368564 -0700
|
||||
+++ doxygen-1.8.6/Makefile.in 2013-12-26 12:19:17.796956667 -0700
|
||||
@@ -78,8 +78,6 @@ realclean: clean
|
||||
|
||||
DATE=$(shell date "+%B %Y")
|
||||
|
||||
-MAN1DIR = man/man1
|
||||
-
|
||||
install: doxywizard_install doxysearch_install
|
||||
$(INSTTOOL) -d $(DESTDIR)$(INSTALL)/bin
|
||||
$(INSTTOOL) -m 755 bin/doxygen $(DESTDIR)$(INSTALL)/bin
|
||||
diff -up doxygen-1.8.6/tmake/lib/linux-g++/tmake.conf.config doxygen-1.8.6/tmake/lib/linux-g++/tmake.conf
|
||||
--- doxygen-1.8.6/tmake/lib/linux-g++/tmake.conf.config 2013-11-02 08:18:53.000000000 -0600
|
||||
+++ doxygen-1.8.6/tmake/lib/linux-g++/tmake.conf 2013-12-26 12:18:38.268158455 -0700
|
||||
@@ -11,7 +11,7 @@ TMAKE_CC = gcc
|
||||
TMAKE_CFLAGS = -pipe -fsigned-char
|
||||
TMAKE_CFLAGS_WARN_ON = -Wall -W
|
||||
TMAKE_CFLAGS_WARN_OFF =
|
||||
-TMAKE_CFLAGS_RELEASE = -O2
|
||||
+TMAKE_CFLAGS_RELEASE = $(RPM_OPT_FLAGS)
|
||||
TMAKE_CFLAGS_DEBUG = -g
|
||||
TMAKE_CFLAGS_SHLIB = -fPIC
|
||||
TMAKE_CFLAGS_YACC = -Wno-unused -Wno-parentheses
|
||||
@@ -27,12 +27,12 @@ TMAKE_CXXFLAGS_YACC = $$TMAKE_CFLAGS_YAC
|
||||
|
||||
TMAKE_INCDIR =
|
||||
TMAKE_LIBDIR =
|
||||
-TMAKE_INCDIR_X11 = /usr/X11R6/include
|
||||
-TMAKE_LIBDIR_X11 = /usr/X11R6/lib
|
||||
-TMAKE_INCDIR_QT = $(QTDIR)/include
|
||||
-TMAKE_LIBDIR_QT = $(QTDIR)/lib
|
||||
-TMAKE_INCDIR_OPENGL = /usr/X11R6/include
|
||||
-TMAKE_LIBDIR_OPENGL = /usr/X11R6/lib
|
||||
+TMAKE_INCDIR_X11 =
|
||||
+TMAKE_LIBDIR_X11 =
|
||||
+TMAKE_INCDIR_QT =
|
||||
+TMAKE_LIBDIR_QT =
|
||||
+TMAKE_INCDIR_OPENGL =
|
||||
+TMAKE_LIBDIR_OPENGL =
|
||||
|
||||
TMAKE_LINK = g++
|
||||
TMAKE_LINK_SHLIB = g++
|
||||
@@ -0,0 +1,21 @@
|
||||
diff -up doxygen-1.8.7/src/config.xml.than doxygen-1.8.7/src/config.xml
|
||||
--- doxygen-1.8.7/src/config.xml.than 2014-05-12 13:54:38.000000000 +0200
|
||||
+++ doxygen-1.8.7/src/config.xml 2014-05-12 13:56:31.000000000 +0200
|
||||
@@ -1617,7 +1617,7 @@ to disable this feature.
|
||||
</option>
|
||||
</group>
|
||||
<group name='HTML' docs='Configuration options related to the HTML output'>
|
||||
- <option type='bool' id='GENERATE_HTML' defval='1'>
|
||||
+ <option type='bool' id='GENERATE_HTML' defval='0'>
|
||||
<docs>
|
||||
<![CDATA[
|
||||
If the \c GENERATE_HTML tag is set to \c YES doxygen will
|
||||
@@ -1878,7 +1878,7 @@ hr.footer {
|
||||
]]>
|
||||
</docs>
|
||||
</option>
|
||||
- <option type='bool' id='HTML_TIMESTAMP' defval='1' depends='GENERATE_HTML'>
|
||||
+ <option type='bool' id='HTML_TIMESTAMP' defval='0' depends='GENERATE_HTML'>
|
||||
<docs>
|
||||
<![CDATA[
|
||||
If the \c HTML_TIMESTAMP tag is set to \c YES then the footer of
|
||||
@@ -0,0 +1,90 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>doxygen</Name>
|
||||
<Homepage>http://www.doxygen.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Documentation and analysis tool for C++, C, Java, IDL, PHP and C#</Summary>
|
||||
<Description>Doxygen is a documentation system for C++, C, Java, Objective-C, Python, IDL (Corba and Microsoft flavors) and to some extent PHP, C#, and D.</Description>
|
||||
<Archive sha1sum="3728f183f390f96b4ec39d02782a7c2d91f7bfca" type="targz">ftp://ftp.stack.nl/pub/users/dimitri/doxygen-1.8.7.src.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</BuildDependencies>
|
||||
<!--
|
||||
Doxygen might use the following binaries at runtime:
|
||||
|
||||
- /usr/bin/dot (from graphviz package)
|
||||
- /usr/bin/gs (from ghostscript package)
|
||||
- /usr/bin/dvips (from texlive-bin package)
|
||||
- /usr/bin/latex (from texlive-bin package)
|
||||
|
||||
We do not write these as build dependencies since it doesn't
|
||||
check for their existance. This is good for bootstrapping ;)
|
||||
-->
|
||||
<Patches>
|
||||
<Patch level="1">fedora/doxygen-1.8.6-config.patch</Patch>
|
||||
<Patch level="1">fedora/doxygen-1.8.3-multilib.patch</Patch>
|
||||
<Patch level="1">fedora/doxygen-1.8.7-html_timestamp_default_false.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>doxygen</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libgcc</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="executable">/usr/bin/doxygen</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/doxygen.1</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<!--<Package>
|
||||
<Name>doxywizard</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>qt</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Summary>A GUI for creating and editing doxygen configuration files</Summary>
|
||||
<Files>
|
||||
<Path fileType="data">/usr/share/pixmaps</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="executable">/usr/bin/doxywizard</Path>
|
||||
<Path fileType="man">/usr/share/man/man1/doxywizard.1</Path>
|
||||
</Files>
|
||||
<AdditionalFiles>
|
||||
<AdditionalFile target="/usr/share/pixmaps/doxywizard.png" permission="0644">doxywizard.png</AdditionalFile>
|
||||
<AdditionalFile target="/usr/share/applications/doxywizard.desktop" permission="0644">doxywizard.desktop</AdditionalFile>
|
||||
</AdditionalFiles>
|
||||
</Package>-->
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-24</Date>
|
||||
<Version>1.8.7</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-12-30</Date>
|
||||
<Version>1.8.6</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-09-14</Date>
|
||||
<Version>1.8.2</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,14 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>doxygen</Name>
|
||||
<Summary xml:lang="tr">C, C++, Java, IDL, PHP ve C# için döküman ve analiz aracı</Summary>
|
||||
<Description xml:lang="tr">Doxygen C++, C, Java, Objective-C, Python, IDL (Corba ve Microsoft ile ilgili diğerleri ) ve PHP, C# ve D'yi de kapsayan diller için bir dokümantasyon sistemidir.</Description>
|
||||
<Description xml:lang="es">Doxygen es un sistema de documentación para C++, C, Java, Objective-C, Python, IDL (versiones Corba y Microsoft) y hasta cierto punto también PHP, C#, y D.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>doxywizard</Name>
|
||||
<Summary xml:lang="en">A GUI for creating and editing doxygen configuration files</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
@@ -0,0 +1,20 @@
|
||||
#!/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 cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
|
||||
def setup():
|
||||
cmaketools.configure()
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.install()
|
||||
|
||||
pisitools.dodoc("COPYING", "Todo*")
|
||||
@@ -0,0 +1,84 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>graphite2</Name>
|
||||
<Homepage>http://sourceforge.net/projects/silgraphite</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<Icon>graphite2</Icon>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>SILGraphite: rendering non-roman scripts</Summary>
|
||||
<Description>Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems.</Description>
|
||||
<Archive sha1sum="5b3a907fee3ce0c6efcc2b31d0d98939ec031b7d" type="targz">mirrors://sourceforge/silgraphite/graphite2-1.2.4.tgz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>cmake</Dependency>
|
||||
<Dependency>freetype-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>graphite2</Name>
|
||||
<RuntimeDependencies>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/graphite2</Path>
|
||||
<Path fileType="library">/usr/lib/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>graphite2-devel</Name>
|
||||
<Summary>graphite2 için geliştirme dosyaları</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">graphite2</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib/pkgconfig/</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="5">
|
||||
<Date>2014-05-17</Date>
|
||||
<Version>1.2.4</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Serdar Soytetir</Name>
|
||||
<Email>kaptan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-02-25</Date>
|
||||
<Version>1.2.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Kamil Atlı</Name>
|
||||
<Email>suvarice@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2013-08-21</Date>
|
||||
<Version>1.2.1</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-03-02</Date>
|
||||
<Version>1.2.1</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Marcin Bojara</Name>
|
||||
<Email>marcin@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-12-28</Date>
|
||||
<Version>1.2.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,13 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>graphite2</Name>
|
||||
<Summary xml:lang="en">SILGraphite: rendering non-roman scripts</Summary>
|
||||
<Description xml:lang="en">Graphite is a project within SIL's scripts and software dev groups to provide cross-platform rendering for complex writing systems.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>graphite2-devel</Name>
|
||||
<Summary xml:lang="tr">graphite2 için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</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/copyleft/gpl.txt.
|
||||
|
||||
from pisi.actionsapi import autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
def setup():
|
||||
autotools.configure()
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
pisitools.domove("/usr/share/pkgconfig/iso-codes.pc","/usr/lib/pkgconfig")
|
||||
pisitools.removeDir("/usr/share/pkgconfig")
|
||||
|
||||
pisitools.dodoc("ChangeLog","LICENSE", "README", "TODO")
|
||||
@@ -0,0 +1,53 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>iso-codes</Name>
|
||||
<Homepage>http://pkg-isocodes.alioth.debian.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>International country codes</Summary>
|
||||
<Description>iso-codes provides IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standards.</Description>
|
||||
<Archive sha1sum="ea739e5b32cb2ac054949cfba321c0ef43ddebd3" type="tarxz">http://pkg-isocodes.alioth.debian.org/downloads/iso-codes-3.53.tar.xz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>iso-codes</Name>
|
||||
<Files>
|
||||
<!-- FIXME: split the package to iso-codes-devel in the next Pisi Linux release -->
|
||||
<Path fileType="library">/usr/lib/pkgconfig</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/xml</Path>
|
||||
<Path fileType="data">/usr/share/iso-codes</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="3">
|
||||
<Date>2014-05-21</Date>
|
||||
<Version>3.53</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Vedat Demir</Name>
|
||||
<Email>vedat@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-10-13</Date>
|
||||
<Version>3.47</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-10-02</Date>
|
||||
<Version>3.39</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>iso-codes</Name>
|
||||
<Summary xml:lang="tr">Uluslararası ülke kodları</Summary>
|
||||
<Description xml:lang="tr">iso-codes IS0-639_3, ISO-4127, ISO-3166, ISO-3166_2, ISO-15924 standartlarını sağlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user