pcb
This commit is contained in:
@@ -122957,6 +122957,79 @@ It supports email, address books, calendars, tasks, news feeds and much more.</D
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>pcb</Name>
|
||||
<Homepage>http://pcb.gpleda.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<PartOf>unknown</PartOf>
|
||||
<Summary xml:lang="en">Printed circuit board editor</Summary>
|
||||
<Summary xml:lang="tr">Pcb X Pencere Sistem'i için bir baskı devre çizim programıdır.</Summary>
|
||||
<Description xml:lang="en">PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time.</Description>
|
||||
<Description xml:lang="tr">PCB, X11 Pencere Sistem'i üzerinde çalışan interaktif bir baskı devre çizim programıdır. PCB, tasarım kural denetleyicisi, karmaşık bağlantı(rats nest) özelliği bulundurmakta ve kart üretiminde kullanılan endüstri standartlarından RS-274-X (Gerber), NC drill ve Centroid veri formatlarında çıktı oluşturabilir. PCB, yerleştirme zamanınızı azaltacak, otomatik yönlendirme ve iz optimizasyonu gibi gelişmiş özellikler sunmaktadır.</Description>
|
||||
<Archive type="targz" sha1sum="564185df20fe96a7765edd08361b125c6e282c36">https://sourceforge.net/projects/pcb/files/pcb/pcb-4.1.0/pcb-4.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>tcltk-devel</Dependency>
|
||||
<Dependency>gd-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>gtkglext-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>desktop_file.patch</Patch>
|
||||
</Patches>
|
||||
<SourceURI>science/electronics/pcb/pspec.xml</SourceURI>
|
||||
</Source>
|
||||
<Package>
|
||||
<Name>pcb</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>tcltk</Dependency>
|
||||
<Dependency>mesa-glu</Dependency>
|
||||
<Dependency>gtkglext</Dependency>
|
||||
<Dependency>gd</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc/pcb</Path>
|
||||
<Path fileType="info">/usr/share/info</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/pcb</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/mime</Path>
|
||||
<Path fileType="data">/usr/share/mimelnk</Path>
|
||||
<Path fileType="data">/usr/share/gEDA/scheme</Path>
|
||||
<Path fileType="data">/usr/share/appdata</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/metainfo/pcb.appdata.xml</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-04-04</Date>
|
||||
<Version>4.1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</SpecFile>
|
||||
<SpecFile>
|
||||
<Source>
|
||||
<Name>netcdf</Name>
|
||||
|
||||
@@ -1 +1 @@
|
||||
b821409871a56cff5d7296328ea0cd43c81efcbe
|
||||
53b6647a5a2c078c8322599d6b331815551ddd1c
|
||||
Binary file not shown.
@@ -1 +1 @@
|
||||
5b6ffdfb7bcc0a949774541781b993c4bf3da4c7
|
||||
f53037e6bf8bfe6227856ab65cb83fa7f782b617
|
||||
Executable
+24
@@ -0,0 +1,24 @@
|
||||
#!/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():
|
||||
autotools.configure("--enable-dbus \
|
||||
--enable-toporouter \
|
||||
--disable-update-desktop-database \
|
||||
--disable-update-mime-database")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README")
|
||||
@@ -0,0 +1,15 @@
|
||||
diff -Nuar a/data/pcb.desktop.in b/data/pcb.desktop.in
|
||||
--- a/data/pcb.desktop.in 2018-01-17 22:10:19.000000000 +0300
|
||||
+++ b/data/pcb.desktop.in 2018-04-04 20:21:09.706912861 +0300
|
||||
@@ -2,9 +2,10 @@
|
||||
Version=1.0
|
||||
_Name=gEDA PCB
|
||||
_GenericName=gEDA PCB Layout Editor
|
||||
+GenericName[tr]=Baskı Devre Tasarlayıcısı
|
||||
_Comment=Create and edit printed circuit board layouts
|
||||
Type=Application
|
||||
Exec=pcb %f
|
||||
Icon=pcb
|
||||
MimeType=application/x-pcb-layout;application/x-pcb-footprint;
|
||||
-Categories=Engineering;Electronics;Development;
|
||||
+Categories=Application;Science;Engineering;Electronics;
|
||||
Executable
+73
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pcb</Name>
|
||||
<Homepage>http://pcb.gpleda.org/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:gui</IsA>
|
||||
<Summary>Printed circuit board editor</Summary>
|
||||
<Description> PCB is an interactive printed circuit board editor for the X11 window system. PCB includes a rats nest feature, design rule checking, and can provide industry standard RS-274-X (Gerber), NC drill, and centroid data (X-Y data) output for use in the board fabrication and assembly process. PCB offers high end features such as an autorouter and trace optimizer which can tremendously reduce layout time.</Description>
|
||||
<Archive sha1sum="564185df20fe96a7765edd08361b125c6e282c36" type="targz">https://sourceforge.net/projects/pcb/files/pcb/pcb-4.1.0/pcb-4.1.0.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>intltool</Dependency>
|
||||
<Dependency>dbus-devel</Dependency>
|
||||
<Dependency>mesa-glu-devel</Dependency>
|
||||
<Dependency>gtk2-devel</Dependency>
|
||||
<Dependency>tcltk-devel</Dependency>
|
||||
<Dependency>gd-devel</Dependency>
|
||||
<Dependency>gdk-pixbuf-devel</Dependency>
|
||||
<Dependency>gtkglext-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch>desktop_file.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>pcb</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>gtk2</Dependency>
|
||||
<Dependency>dbus</Dependency>
|
||||
<Dependency>glib2</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>cairo</Dependency>
|
||||
<Dependency>tcltk</Dependency>
|
||||
<Dependency>mesa-glu</Dependency>
|
||||
<Dependency>gtkglext</Dependency>
|
||||
<Dependency>gd</Dependency>
|
||||
<Dependency>gdk-pixbuf</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="doc">/usr/share/doc/pcb</Path>
|
||||
<Path fileType="info">/usr/share/info</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/pcb</Path>
|
||||
<Path fileType="data">/usr/share/icons</Path>
|
||||
<Path fileType="data">/usr/share/mime</Path>
|
||||
<Path fileType="data">/usr/share/mimelnk</Path>
|
||||
<Path fileType="data">/usr/share/gEDA/scheme</Path>
|
||||
<Path fileType="data">/usr/share/appdata</Path>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="data">/usr/share/applications</Path>
|
||||
<Path fileType="localedata">/usr/share/locale</Path>
|
||||
<Path fileType="data">/usr/share/metainfo/pcb.appdata.xml</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="1">
|
||||
<Date>2018-04-04</Date>
|
||||
<Version>4.1.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>Osman Erkan</Name>
|
||||
<Email>osman.erkan@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
Executable
+8
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>pcb</Name>
|
||||
<Summary xml:lang="tr">Pcb X Pencere Sistem'i için bir baskı devre çizim programıdır.</Summary>
|
||||
<Description xml:lang="tr">PCB, X11 Pencere Sistem'i üzerinde çalışan interaktif bir baskı devre çizim programıdır. PCB, tasarım kural denetleyicisi, karmaşık bağlantı(rats nest) özelliği bulundurmakta ve kart üretiminde kullanılan endüstri standartlarından RS-274-X (Gerber), NC drill ve Centroid veri formatlarında çıktı oluşturabilir. PCB, yerleştirme zamanınızı azaltacak, otomatik yönlendirme ve iz optimizasyonu gibi gelişmiş özellikler sunmaktadır.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user