summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authordaurnimator2016-05-09 16:24:53 +1000
committerdaurnimator2016-05-09 16:33:56 +1000
commitaad307ebdb15e4a9b4df723bee267057b3545cea (patch)
treeca1a2d7a7af80ad86d92af598a91498f6f2c6ffd
parent26ae60e2365b48ba6e97b0ea1b014cfc31ed81d1 (diff)
downloadaur-aad307ebdb15e4a9b4df723bee267057b3545cea.tar.gz
Generate SRCINFO, delete now unused patch, Fix syntax of 'depends'
-rw-r--r--.SRCINFO19
-rw-r--r--PKGBUILD2
-rw-r--r--makfiles.patch78
3 files changed, 7 insertions, 92 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 97ba5e1bd544..64c19c525440 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,25 +1,18 @@
-# Generated by mksrcinfo v8
-# Sat Jan 16 09:52:26 UTC 2016
pkgbase = iup
pkgdesc = C cross platform GUI toolkit
- pkgver = 3.15
+ pkgver = 3.18
pkgrel = 1
url = http://www.tecgraf.puc-rio.br/iup/
arch = i686
arch = x86_64
license = MIT
depends = libcd
- optdepends = lua: bindings for Lua are available
- optdepends = cd: for additional controls support
- optdepends = im: for advanced imaging support
- optdepends = mesa: for OpenGL support
+ depends = libim
options = staticlibs
- source = http://downloads.sourceforge.net/project/iup/3.15/Docs%20and%20Sources/iup-3.15_Sources.tar.gz
- source = http://heanet.dl.sourceforge.net/project/iup/3.15/Docs%20and%20Sources/iup-3.15_Docs.pdf
- source = makfiles.patch
- md5sums = a9af7f6229f998b059ed6dbcf53fcdaf
- md5sums = 367b7142a2f077c6a68cc9d76f20866a
- md5sums = 9c50f5376fe5cc0f459ec0148c452c57
+ source = http://downloads.sourceforge.net/project/iup/3.18/Docs%20and%20Sources/iup-3.18_Sources.tar.gz
+ source = http://heanet.dl.sourceforge.net/project/iup/3.18/Docs%20and%20Sources/iup-3.18_Docs.pdf
+ md5sums = 60a3b03b14056364379cc195f95f897f
+ md5sums = 08455b56beb828ab1a814299b217b5f9
pkgname = iup
diff --git a/PKGBUILD b/PKGBUILD
index 27c7e21a6148..a3ee80fbb9a9 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -10,7 +10,7 @@ pkgdesc="C cross platform GUI toolkit"
arch=('i686' 'x86_64')
url="http://www.tecgraf.puc-rio.br/iup/"
license=('MIT')
-depends=('libcd', 'libim')
+depends=('libcd' 'libim')
options=(staticlibs)
source=(
diff --git a/makfiles.patch b/makfiles.patch
deleted file mode 100644
index 53f9ba429c3e..000000000000
--- a/makfiles.patch
+++ /dev/null
@@ -1,78 +0,0 @@
---- tecmake.mak.orig 2015-04-30 04:20:54.000000000 +0200
-+++ tecmake.mak 2015-05-19 12:53:18.852399934 +0200
-@@ -916,12 +916,12 @@
- endif
-
- ifdef USE_LUA
-- LUA_LIB ?= $(LUA)/lib/$(TEC_UNAME_LIB_DIR)
-+ LUA_LIB ?= /usr/lib
- ifdef USE_STATIC
- ifndef NO_LUALIB
- SLIB += $(LUA_LIB)/liblualib$(LUA_SUFFIX).a
- endif
-- SLIB += $(LUA_LIB)/liblua$(LUA_SUFFIX).a
-+ SLIB += $(LUA_LIB)/liblua.a
- else
- ifndef NO_LUALIB
- LIBS += lualib$(LUA_SUFFIX)
-@@ -931,7 +931,7 @@
- LDIR += $(LUA_LIB)
- else
- ifneq ($(findstring cygw, $(TEC_UNAME)), )
-- LIBS += lua$(LUA_SUFFIX)
-+ LIBS += lua
- LDIR += $(LUA_LIB)
- endif
- endif
-@@ -1040,7 +1040,7 @@
- LINK_CAIRO = Yes
- endif
-
-- SLIB += $(CD_LIB)/libcd$(CD_SUFFIX).a
-+ SLIB += /usr/lib/libcd.a
- else
- ifdef USE_XRENDER
- CHECK_XRENDER = Yes
-@@ -1075,7 +1075,7 @@
-
- LINK_FREETYPE = Yes
-
-- CD_INC ?= $(CD)/include
-+ CD_INC ?= /usr/include/cd
- INCLUDES += $(CD_INC)
- endif
-
-@@ -1087,13 +1087,13 @@
- endif
-
- ifdef USE_STATIC
-- SLIB += $(IM_LIB)/libim.a
-+ SLIB += /usr/lib/libim.a
- else
- LIBS += im
- LDIR += $(IM_LIB)
- endif
-
-- IM_INC ?= $(IM)/include
-+ IM_INC ?= /usr/include/im
- INCLUDES += $(IM_INC)
- endif
-
-@@ -1134,7 +1134,7 @@
- ZLIB_LIB = $(CD_LIB)
- endif
-
-- SLIB += $(ZLIB_LIB)/lib$(ZLIB).a
-+ SLIB += /usr/lib/libz.a
- else
- LIBS += $(ZLIB)
- endif
-@@ -1292,7 +1292,7 @@
- endif
-
- ifdef USE_X11
-- LIBS += $(X11_LIBS)
-+ LIBS += $(X11_LIBS) fontconfig
- LDIR += $(X11_LIB)
- STDINCS += $(X11_INC)
- endif