@@ -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 get
|
||||
from pisi.actionsapi import cmaketools
|
||||
from pisi.actionsapi import pisitools
|
||||
|
||||
|
||||
def setup():
|
||||
cmaketools.configure()
|
||||
|
||||
def build():
|
||||
cmaketools.make()
|
||||
|
||||
def install():
|
||||
cmaketools.rawInstall("DESTDIR=%s" % get.installDIR())
|
||||
|
||||
pisitools.dodoc("AUTHORS", "ChangeLog", "COPYING", "NEWS", "README")
|
||||
@@ -0,0 +1,24 @@
|
||||
diff -Nuar enblend-enfuse-4.1.3.orig/CMakeLists.txt enblend-enfuse-4.1.3/CMakeLists.txt
|
||||
--- enblend-enfuse-4.1.3.orig/CMakeLists.txt 2013-01-18 11:01:29.000000000 +0200
|
||||
+++ enblend-enfuse-4.1.3/CMakeLists.txt 2014-06-01 09:45:16.180117386 +0300
|
||||
@@ -124,7 +124,7 @@
|
||||
|
||||
# Compiler specific tweaks and optimizations
|
||||
IF(CMAKE_COMPILER_IS_GNUCXX)
|
||||
- SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -O3 -ffast-math -DNDEBUG -Wall")
|
||||
+ SET(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -ffast-math -DNDEBUG -Wall")
|
||||
IF(APPLE AND CMAKE_MAJOR_VERSION EQUAL 2 AND CMAKE_MINOR_VERSION LESS 5)
|
||||
## Add needed Compiler and Linker flags for OSX
|
||||
SET(CMAKE_C_FLAGS "${CMAKE_C_FLAGS} -flat_namespace -undefined suppress")
|
||||
diff -Nuar enblend-enfuse-4.1.3.orig/doc/CMakeLists.txt enblend-enfuse-4.1.3/doc/CMakeLists.txt
|
||||
--- enblend-enfuse-4.1.3.orig/doc/CMakeLists.txt 2013-01-01 11:49:53.000000000 +0200
|
||||
+++ enblend-enfuse-4.1.3/doc/CMakeLists.txt 2014-06-01 09:45:29.373117879 +0300
|
||||
@@ -8,7 +8,7 @@
|
||||
IF(WIN32)
|
||||
set(DocumentsDirectory "doc")
|
||||
ELSE(WIN32)
|
||||
-set(DocumentsDirectory "doc/enblend")
|
||||
+set(DocumentsDirectory "doc/")
|
||||
ENDIF(WIN32)
|
||||
|
||||
include(${TOP_SRC_DIR}/doc/macros.cmake)
|
||||
@@ -0,0 +1,73 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>enblend</Name>
|
||||
<Homepage>http://enblend.sourceforge.net/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv2</License>
|
||||
<IsA>app:console</IsA>
|
||||
<Summary>Image blending with multiresolution splines</Summary>
|
||||
<Description>enblend is a tool for compositing images. Given a set of images that overlap in some irregular way, enblend overlays them in such a way that the seam between the images is invisible, or at least very difficult to see.</Description>
|
||||
<Archive sha1sum="12a4ef9138107c2eed06033c1a99b55249552c54" type="targz">mirrors://sourceforge/enblend/enblend-enfuse/enblend-enfuse-4.1/enblend-enfuse-4.1.3.tar.gz</Archive>
|
||||
<BuildDependencies>
|
||||
<Dependency>boost-devel</Dependency>
|
||||
<Dependency>imagemagick-devel</Dependency>
|
||||
<Dependency>openexr-devel</Dependency>
|
||||
<Dependency>ilmbase-devel</Dependency>
|
||||
<Dependency>freeglut-devel</Dependency>
|
||||
<Dependency>mesa-devel</Dependency>
|
||||
<Dependency>glew-devel</Dependency>
|
||||
<Dependency>lcms-devel</Dependency>
|
||||
<Dependency>tiff-devel</Dependency>
|
||||
<Dependency>libjpeg-turbo-devel</Dependency>
|
||||
<Dependency>help2man</Dependency>
|
||||
<Dependency>gsl-devel</Dependency>
|
||||
<Dependency>vigra-devel</Dependency>
|
||||
<Dependency>lcms2-devel</Dependency>
|
||||
<Dependency>cmake</Dependency>
|
||||
</BuildDependencies>
|
||||
<Patches>
|
||||
<Patch level="1">gentoo_prepare.patch</Patch>
|
||||
</Patches>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>enblend</Name>
|
||||
<RuntimeDependencies>
|
||||
<Dependency>plotutils</Dependency>
|
||||
<Dependency>openexr-libs</Dependency>
|
||||
<Dependency>ilmbase</Dependency>
|
||||
<Dependency>boost</Dependency>
|
||||
<Dependency>freeglut</Dependency>
|
||||
<Dependency>mesa</Dependency>
|
||||
<Dependency>glew</Dependency>
|
||||
<Dependency>lcms</Dependency>
|
||||
<Dependency>libjpeg-turbo</Dependency>
|
||||
<Dependency>tiff</Dependency>
|
||||
<Dependency>vigra</Dependency>
|
||||
<Dependency>gsl</Dependency>
|
||||
<Dependency>lcms2</Dependency>
|
||||
<Dependency>mesa-glu</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
<Path fileType="data">/usr/share/doc</Path>
|
||||
<Path fileType="data">/usr/share/info</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="10">
|
||||
<Date>2014-12-27</Date>
|
||||
<Version>4.1.3</Version>
|
||||
<Comment>Rebuild</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,8 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>enblend</Name>
|
||||
<Summary xml:lang="tr">Resim harmanlama aracı</Summary>
|
||||
<Description xml:lang="tr">enblend, resimleri birleştirmek için kullanılan bir araçtır. Düzensiz bir şekilde üstüste binen bir resim grubunu, resimlerin arasındaki düğüm noktaları anlaşılmayacak şekilde harmanlar.</Description>
|
||||
</Source>
|
||||
</PISI>
|
||||
@@ -67,47 +67,12 @@
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="6">
|
||||
<Update release="7">
|
||||
<Date>2015-02-03</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>Rebuild for hdf5</Comment>
|
||||
<Comment>Rebuild for openexr</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="5">
|
||||
<Date>2014-12-28</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>Rebuild for boost, with openexr</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="4">
|
||||
<Date>2014-05-30</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>Rebuild.</Comment>
|
||||
<Name>Ertuğrul Erata</Name>
|
||||
<Email>ertugrulerata@gmail.com</Email>
|
||||
</Update>
|
||||
<Update release="3">
|
||||
<Date>2014-01-23</Date>
|
||||
<Version>1.10.0</Version>
|
||||
<Comment>Version bump</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="2">
|
||||
<Date>2013-11-09</Date>
|
||||
<Version>1.9.0</Version>
|
||||
<Comment>Rebuild for boost 1.54.0</Comment>
|
||||
<Name>Yusuf Aydemir</Name>
|
||||
<Email>yusuf.aydemir@pisilinux.org</Email>
|
||||
</Update>
|
||||
<Update release="1">
|
||||
<Date>2012-11-21</Date>
|
||||
<Version>1.9.0</Version>
|
||||
<Comment>First release</Comment>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -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 shelltools
|
||||
from pisi.actionsapi import get
|
||||
|
||||
def setup():
|
||||
shelltools.export("CFLAGS","%s -fwrapv" % get.CFLAGS())
|
||||
|
||||
autotools.autoreconf("-vfi")
|
||||
autotools.configure("--disable-static")
|
||||
|
||||
def build():
|
||||
autotools.make()
|
||||
|
||||
def install():
|
||||
autotools.install()
|
||||
|
||||
pisitools.dodoc("README","BUGS","ChangeLog","NEWS","THANKS")
|
||||
@@ -0,0 +1,52 @@
|
||||
<?xml version="1.0" ?>
|
||||
<!DOCTYPE PISI SYSTEM "http://www.pisilinux.org/projeler/pisi/pisi-spec.dtd">
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gsl</Name>
|
||||
<Homepage>http://www.gnu.org/software/gsl/</Homepage>
|
||||
<Packager>
|
||||
<Name>PisiLinux Community</Name>
|
||||
<Email>admins@pisilinux.org</Email>
|
||||
</Packager>
|
||||
<License>GPLv3</License>
|
||||
<IsA>library</IsA>
|
||||
<Summary>GNU scientific library</Summary>
|
||||
<Description>The GNU Scientific Library (GSL) is a numerical library for C and C++ programmers.</Description>
|
||||
<Archive sha1sum="210af9366485f149140973700d90dc93a4b6213e" type="targz">http://ftp.gnu.org/gnu/gsl/gsl-1.16.tar.gz</Archive>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gsl</Name>
|
||||
<Files>
|
||||
<Path fileType="executable">/usr/bin</Path>
|
||||
<Path fileType="library">/usr/lib</Path>
|
||||
<Path fileType="doc">/usr/share/doc</Path>
|
||||
<Path fileType="info">/usr/share/info</Path>
|
||||
<Path fileType="man">/usr/share/man</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<Package>
|
||||
<Name>gsl-devel</Name>
|
||||
<Summary>Development files for gsl</Summary>
|
||||
<RuntimeDependencies>
|
||||
<Dependency release="current">gsl</Dependency>
|
||||
</RuntimeDependencies>
|
||||
<Files>
|
||||
<Path fileType="header">/usr/include</Path>
|
||||
<Path fileType="data">/usr/share/aclocal</Path>
|
||||
<Path fileType="man">/usr/share/man/man3</Path>
|
||||
<Path fileType="data">/usr/lib/pkgconfig</Path>
|
||||
</Files>
|
||||
</Package>
|
||||
|
||||
<History>
|
||||
<Update release="4">
|
||||
<Date>2014-05-30</Date>
|
||||
<Version>1.16</Version>
|
||||
<Comment>Version bump.</Comment>
|
||||
<Name>Stefan Gronewold(groni)</Name>
|
||||
<Email>groni@pisilinux.org</Email>
|
||||
</Update>
|
||||
</History>
|
||||
</PISI>
|
||||
@@ -0,0 +1,15 @@
|
||||
<?xml version="1.0" ?>
|
||||
<PISI>
|
||||
<Source>
|
||||
<Name>gsl</Name>
|
||||
<Summary xml:lang="tr">GNU bilimsel kütüphane</Summary>
|
||||
<Description xml:lang="tr">C ve C++ programcıları tarafından kullanılan nümerik kütüphane</Description>
|
||||
<Description xml:lang="fr">La librairie scientifique GNU (GSL) est une librairie numérique pour programmes C et C++.</Description>
|
||||
<Description xml:lang="es">GNU Scientific Library (GSL) es una libería numérica para programadores C y C++.</Description>
|
||||
</Source>
|
||||
|
||||
<Package>
|
||||
<Name>gsl-devel</Name>
|
||||
<Summary xml:lang="tr">gsl için geliştirme dosyaları</Summary>
|
||||
</Package>
|
||||
</PISI>
|
||||
Reference in New Issue
Block a user