libavc1394
This commit is contained in:
@@ -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 autotools
|
||||
from pisi.actionsapi import pisitools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "NEWS", "README", "TODO")
|
||||
@@ -0,0 +1,88 @@
|
||||
Index: libavc1394-0.5.4/Makefile.am
|
||||
===================================================================
|
||||
--- libavc1394-0.5.4.orig/Makefile.am
|
||||
+++ libavc1394-0.5.4/Makefile.am
|
||||
@@ -1,4 +1,4 @@
|
||||
-SUBDIRS = common libavc1394 librom1394 test
|
||||
+SUBDIRS = common librom1394 libavc1394 test
|
||||
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in \
|
||||
stamp-h.in
|
||||
EXTRA_DIST = libavc1394.pc libavc1394.spec
|
||||
Index: libavc1394-0.5.4/Makefile.in
|
||||
===================================================================
|
||||
--- libavc1394-0.5.4.orig/Makefile.in
|
||||
+++ libavc1394-0.5.4/Makefile.in
|
||||
@@ -245,7 +245,7 @@ target_alias = @target_alias@
|
||||
top_build_prefix = @top_build_prefix@
|
||||
top_builddir = @top_builddir@
|
||||
top_srcdir = @top_srcdir@
|
||||
-SUBDIRS = common libavc1394 librom1394 test
|
||||
+SUBDIRS = common librom1394 libavc1394 test
|
||||
MAINTAINERCLEANFILES = Makefile.in aclocal.m4 configure config.h.in \
|
||||
stamp-h.in
|
||||
|
||||
Index: libavc1394-0.5.4/libavc1394/Makefile.am
|
||||
===================================================================
|
||||
--- libavc1394-0.5.4.orig/libavc1394/Makefile.am
|
||||
+++ libavc1394-0.5.4/libavc1394/Makefile.am
|
||||
@@ -1,11 +1,11 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
lib_LTLIBRARIES = libavc1394.la
|
||||
libavc1394_la_LDFLAGS = @LIBRAW1394_LIBS@ \
|
||||
- -version-info @lt_major@:@lt_revision@:@lt_age@
|
||||
-libavc1394_la_LIBADD = $(top_builddir)/common/raw1394util.lo
|
||||
+ -version-info @lt_major@:@lt_revision@:@lt_age@
|
||||
+#libavc1394_la_LIBADD = $(top_builddir)/librom1394/librom1394.la
|
||||
libavc1394_la_SOURCES = \
|
||||
avc1394_simple.c avc1394_vcr.c \
|
||||
- avc1394_internal.c avc1394_internal.h
|
||||
+ avc1394_internal.c avc1394_internal.h
|
||||
pkginclude_HEADERS = avc1394.h avc1394_vcr.h
|
||||
INCLUDES = @LIBRAW1394_CFLAGS@
|
||||
|
||||
Index: libavc1394-0.5.4/libavc1394/Makefile.in
|
||||
===================================================================
|
||||
--- libavc1394-0.5.4.orig/libavc1394/Makefile.in
|
||||
+++ libavc1394-0.5.4/libavc1394/Makefile.in
|
||||
@@ -216,12 +216,12 @@ top_srcdir = @top_srcdir@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
lib_LTLIBRARIES = libavc1394.la
|
||||
libavc1394_la_LDFLAGS = @LIBRAW1394_LIBS@ \
|
||||
- -version-info @lt_major@:@lt_revision@:@lt_age@
|
||||
+ -version-info @lt_major@:@lt_revision@:@lt_age@
|
||||
|
||||
-libavc1394_la_LIBADD = $(top_builddir)/common/raw1394util.lo
|
||||
+libavc1394_la_LIBADD = $(top_builddir)/librom1394/librom1394.la
|
||||
libavc1394_la_SOURCES = \
|
||||
avc1394_simple.c avc1394_vcr.c \
|
||||
- avc1394_internal.c avc1394_internal.h
|
||||
+ avc1394_internal.c avc1394_internal.h
|
||||
|
||||
pkginclude_HEADERS = avc1394.h avc1394_vcr.h
|
||||
INCLUDES = @LIBRAW1394_CFLAGS@
|
||||
Index: libavc1394-0.5.4/librom1394/Makefile.am
|
||||
===================================================================
|
||||
--- libavc1394-0.5.4.orig/librom1394/Makefile.am
|
||||
+++ libavc1394-0.5.4/librom1394/Makefile.am
|
||||
@@ -1,7 +1,7 @@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
lib_LTLIBRARIES = librom1394.la
|
||||
librom1394_la_LDFLAGS = @LIBRAW1394_LIBS@ \
|
||||
- -version-info @lt_major@:@lt_revision@:@lt_age@ -lm
|
||||
+ -version-info @lt_major@:@lt_revision@:@lt_age@ -lm -lraw1394
|
||||
librom1394_la_LIBADD = $(top_builddir)/common/raw1394util.lo
|
||||
librom1394_la_SOURCES = \
|
||||
rom1394_main.c \
|
||||
Index: libavc1394-0.5.4/librom1394/Makefile.in
|
||||
===================================================================
|
||||
--- libavc1394-0.5.4.orig/librom1394/Makefile.in
|
||||
+++ libavc1394-0.5.4/librom1394/Makefile.in
|
||||
@@ -215,7 +215,7 @@ top_srcdir = @top_srcdir@
|
||||
MAINTAINERCLEANFILES = Makefile.in
|
||||
lib_LTLIBRARIES = librom1394.la
|
||||
librom1394_la_LDFLAGS = @LIBRAW1394_LIBS@ \
|
||||
- -version-info @lt_major@:@lt_revision@:@lt_age@ -lm
|
||||
+ -version-info @lt_major@:@lt_revision@:@lt_age@ -lm -lraw1394
|
||||
|
||||
librom1394_la_LIBADD = $(top_builddir)/common/raw1394util.lo
|
||||
librom1394_la_SOURCES = \
|
||||
@@ -0,0 +1,80 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>libavc1394</Name>
|
||||
<Homepage>http://sourceforge.net/projects/libavc1394/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>LGPLv2.1</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>library for the 1394 Trade Association AV/C (Audio/Video Control) Digital Interface Command Set</Summary>
|
||||
<Description>The libavc1394 library allows utilities to control IEEE-1394 devices using the AV/C specification. Audio/Video Control allows applications to control devices like the tape on a VCR or camcorder.</Description>
|
||||
<Archive sha1sum="710ec37ef3d494b5ec8080beaa95d29a173a0479" type="targz">mirrors://sourceforge/libavc1394/libavc1394-0.5.4.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>libraw1394-devel</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">libavc1394-0.5.3-librom.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libavc1394</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>libraw1394</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>libavc1394-devel</Name>
|
||||
<Summary>Development files for libavc1394</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">libavc1394</Dependency>
|
||||
<Dependency>libraw1394-devel</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-05-31</Date>
|
||||
<Version>0.5.4</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Alihan Öztürk</Name>
|
||||
<Email>alihan@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-03-08</Date>
|
||||
<Version>0.5.4</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-07-28</Date>
|
||||
<Version>0.5.4</Version>
|
||||
<Comment>Dep Fixed</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2010-10-13</Date>
|
||||
<Version>0.5.4</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>libavc1394</Name>
|
||||
<Summary xml:lang="tr">1394 Trade Association AV/C (Ses/Görüntü kontrol) sayısal arayüz komut seti için bir kütüphane</Summary>
|
||||
<Summary xml:lang="fr">Librairie pour l'ensemble de commande de l'interface digitale AV/C (Audio/Vidéo Control) de l'association pour le commerce 1394 (1394 Trade Association).</Summary>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>libavc1394-devel</Name>
|
||||
<Summary xml:lang="tr">libavc1394 için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user