diff options
Diffstat (limited to 'app-arch/innoextract')
-rw-r--r-- | app-arch/innoextract/Manifest | 3 | ||||
-rw-r--r-- | app-arch/innoextract/files/innoextract-1.2-gentoo.patch | 49 | ||||
-rw-r--r-- | app-arch/innoextract/files/innoextract-1.3-gentoo.patch | 49 | ||||
-rw-r--r-- | app-arch/innoextract/files/innoextract-1.4-cmake.patch | 30 | ||||
-rw-r--r-- | app-arch/innoextract/innoextract-1.2.ebuild | 37 | ||||
-rw-r--r-- | app-arch/innoextract/innoextract-1.3.ebuild | 48 | ||||
-rw-r--r-- | app-arch/innoextract/innoextract-1.4.ebuild | 73 | ||||
-rw-r--r-- | app-arch/innoextract/metadata.xml | 21 |
8 files changed, 310 insertions, 0 deletions
diff --git a/app-arch/innoextract/Manifest b/app-arch/innoextract/Manifest new file mode 100644 index 000000000000..f0a1c9c14637 --- /dev/null +++ b/app-arch/innoextract/Manifest @@ -0,0 +1,3 @@ +DIST innoextract-1.2.tar.gz 106162 SHA256 a56b11bab2e209c7b37a93b3bd7416eb7359824071fc3ae1cf16a8421747cb9a SHA512 8e7fa55b1ed97ba8cc3f031904c29415c5e2f226f7963e439380bca287f4f034d2491a8d5c79e61a714d26e6e6b0997cc191ac7960ed564c69de58a92d47aced WHIRLPOOL d409057f8a90b6485c92be3b45f24cc8af1bd27dcd98df8c7ce97735c05a26556e5b62a795c0b61c64bcbc7674d205b6eabf1f995b64836dfd2e3d9d74c7f889 +DIST innoextract-1.3.tar.gz 130613 SHA256 bee65d1df2223870acb91ab90e9d933157167b8f7f5691ddd70f6a041d5bf671 SHA512 4faa263db00b847cf97b105696c49028fe80558b228ed840250be8abae9bfd0627488768eaa961fbe3a0c056d2e42487408ff3abc5b50bdf65b6bcb288721f66 WHIRLPOOL 47acd475ec776e4318a2f9a52dd57fc90106c2097180cbd6b8f962610ad486320896a6a58024c8625b5a3f6687d6444c1cd0eebdb47de5a6b261fa33031c2569 +DIST innoextract-1.4.tar.gz 151230 SHA256 5a494b5ae1e41043574096761d31695ed8b1d39dfe64895306d0d92623901cc9 SHA512 60700ef05ff50e3409b92571ebfc7342c0eadc8add5d1262f7e7740e1a14cfd186a8a9ac0ecab85f01ae50f21edb48f49ba9428369131f7cd46c4b07214838ea WHIRLPOOL 26b38b5c8fbc5c1f79c3d2b3f9cabbe439140ee174d31926ee6c1507815417dbab02632f2aaaf8681c2755ba6907f0a67ef91f2672deab9b2bdef16e3bd323fa diff --git a/app-arch/innoextract/files/innoextract-1.2-gentoo.patch b/app-arch/innoextract/files/innoextract-1.2-gentoo.patch new file mode 100644 index 000000000000..756f089a579e --- /dev/null +++ b/app-arch/innoextract/files/innoextract-1.2-gentoo.patch @@ -0,0 +1,49 @@ +From: Julian Ospald <hasufell@gentoo.org> +Date: Wed Jun 27 23:41:12 UTC 2012 +Subject: build system + +respect flags + +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -54,40 +54,13 @@ + link_directories("${Boost_LIBRARY_DIRS}") + include_directories(SYSTEM "${Boost_INCLUDE_DIR}") + +-add_cxxflag("-Wall") +-add_cxxflag("-Wextra") +-add_cxxflag("-Wformat=2") +-add_cxxflag("-Wundef") +-add_cxxflag("-Wpointer-arith") +-add_cxxflag("-Wcast-qual") +-add_cxxflag("-Woverloaded-virtual") +-add_cxxflag("-Wlogical-op") +-add_cxxflag("-Wliteral-conversion") +-add_cxxflag("-Wshift-overflow") +-add_cxxflag("-Woverflow") +-add_cxxflag("-Wbool-conversions") +-add_cxxflag("-Wconversion") +-add_cxxflag("-Wsign-conversion") +-add_cxxflag("-Wmissing-declarations") +-add_cxxflag("-Wredundant-decls") +- + if(DEBUG_EXTRA) + add_cxxflag("-ftrapv") # to add checks for (undefined) signed integer overflow + add_cxxflag("-fbounds-checking") + add_cxxflag("-fcatch-undefined-behavior") + add_cxxflag("-Wstrict-aliasing=1") +-else() +- # -Wuninitialized causes too many false positives - thanks very much, gcc +- add_cxxflag("-Wno-uninitialized") +- # (clang only) Conflicts with using const variables for configuration. +- add_cxxflag("-Wno-constant-logical-operand") +- add_cxxflag("-Wno-unneeded-internal-declaration") +- add_cxxflag("-Wno-unused-function") + endif() + +-# Because i'm lazy +-add_cxxflag("-Wl,--as-needed") +- + check_symbol_exists(isatty "unistd.h" HAVE_ISATTY) + check_symbol_exists(ioctl "sys/ioctl.h" HAVE_IOCTL) + diff --git a/app-arch/innoextract/files/innoextract-1.3-gentoo.patch b/app-arch/innoextract/files/innoextract-1.3-gentoo.patch new file mode 100644 index 000000000000..31f7e9088ec7 --- /dev/null +++ b/app-arch/innoextract/files/innoextract-1.3-gentoo.patch @@ -0,0 +1,49 @@ +From: Julian Ospald <hasufell@gentoo.org> +Date: Tue Jul 3 18:00:33 UTC 2012 +Subject: build system + +respect flags + +--- CMakeLists.txt ++++ CMakeLists.txt +@@ -57,40 +57,13 @@ + + add_cxxflag("-std=c++11") + +-add_cxxflag("-Wall") +-add_cxxflag("-Wextra") +-add_cxxflag("-Wformat=2") +-add_cxxflag("-Wundef") +-add_cxxflag("-Wpointer-arith") +-add_cxxflag("-Wcast-qual") +-add_cxxflag("-Woverloaded-virtual") +-add_cxxflag("-Wlogical-op") +-add_cxxflag("-Wliteral-conversion") +-add_cxxflag("-Wshift-overflow") +-add_cxxflag("-Woverflow") +-add_cxxflag("-Wbool-conversions") +-add_cxxflag("-Wconversion") +-add_cxxflag("-Wsign-conversion") +-add_cxxflag("-Wmissing-declarations") +-add_cxxflag("-Wredundant-decls") +- + if(DEBUG_EXTRA) + add_cxxflag("-ftrapv") # to add checks for (undefined) signed integer overflow + add_cxxflag("-fbounds-checking") + add_cxxflag("-fcatch-undefined-behavior") + add_cxxflag("-Wstrict-aliasing=1") +-else() +- # -Wuninitialized causes too many false positives - thanks very much, gcc +- add_cxxflag("-Wno-uninitialized") +- # (clang only) Conflicts with using const variables for configuration. +- add_cxxflag("-Wno-constant-logical-operand") +- add_cxxflag("-Wno-unneeded-internal-declaration") +- add_cxxflag("-Wno-unused-function") + endif() + +-# Because i'm lazy +-add_ldflag("-Wl,--as-needed") +- + check_symbol_exists(isatty "unistd.h" HAVE_ISATTY) + check_symbol_exists(ioctl "sys/ioctl.h" HAVE_IOCTL) + diff --git a/app-arch/innoextract/files/innoextract-1.4-cmake.patch b/app-arch/innoextract/files/innoextract-1.4-cmake.patch new file mode 100644 index 000000000000..199a10e14fac --- /dev/null +++ b/app-arch/innoextract/files/innoextract-1.4-cmake.patch @@ -0,0 +1,30 @@ +--- innoextract-1.4/CMakeLists.txt ++++ innoextract-1.4/CMakeLists.txt +@@ -6,6 +6,7 @@ + # Define configuration options + + option(USE_LZMA "Build lzma decompression support." ON) ++option(WITH_DEBUG "Debug build" OFF) + option(DEBUG_EXTRA "Expensive debug options" OFF) + option(SET_WARNING_FLAGS "Adjust compiler warning flags" ON) + option(SET_OPTIMIZATION_FLAGS "Adjust compiler optimization flags" ON) +--- innoextract-1.4/cmake/BuildType.cmake ++++ innoextract-1.4/cmake/BuildType.cmake +@@ -8,7 +8,7 @@ + if(CMAKE_BUILD_TYPE STREQUAL "") + set(CMAKE_BUILD_TYPE "Release") + endif() +-if(CMAKE_BUILD_TYPE STREQUAL "Debug") ++if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR WITH_DEBUG) + add_definitions(-DDEBUG) + set(DEBUG 1) + endif() +@@ -64,7 +64,7 @@ + # Specifically, the need for libboost_system depends on the Boost version + add_ldflag("-Wl,--as-needed") + +- if(CMAKE_BUILD_TYPE STREQUAL "Debug") ++ if(CMAKE_BUILD_TYPE STREQUAL "Debug" OR WITH_DEBUG) + + # set debug symbol level to -g3 + check_compiler_flag(RESULT "-g3") diff --git a/app-arch/innoextract/innoextract-1.2.ebuild b/app-arch/innoextract/innoextract-1.2.ebuild new file mode 100644 index 000000000000..92b28ea35b82 --- /dev/null +++ b/app-arch/innoextract/innoextract-1.2.ebuild @@ -0,0 +1,37 @@ +# Copyright 2012-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit cmake-utils + +DESCRIPTION="A tool to unpack installers created by Inno Setup" +HOMEPAGE="http://innoextract.constexpr.org/" +SRC_URI="mirror://github/dscharrer/InnoExtract/${P}.tar.gz + mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="debug +lzma" + +DEPEND=">=dev-libs/boost-1.37 + lzma? ( app-arch/xz-utils )" +RDEPEND="${DEPEND}" + +DOCS=( README.md CHANGELOG ) + +src_prepare() { + epatch "${FILESDIR}"/${P}-gentoo.patch +} + +src_configure() { + use debug && CMAKE_BUILD_TYPE=Debug + + local mycmakeargs=( + $(cmake-utils_use lzma USE_LZMA) + ) + + cmake-utils_src_configure +} diff --git a/app-arch/innoextract/innoextract-1.3.ebuild b/app-arch/innoextract/innoextract-1.3.ebuild new file mode 100644 index 000000000000..5cb382cacc3d --- /dev/null +++ b/app-arch/innoextract/innoextract-1.3.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2012 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=4 + +inherit cmake-utils + +DESCRIPTION="A tool to unpack installers created by Inno Setup" +HOMEPAGE="http://innoextract.constexpr.org/" +SRC_URI="mirror://github/dscharrer/InnoExtract/${P}.tar.gz + mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="debug doc +lzma" + +RDEPEND=">=dev-libs/boost-1.37 + lzma? ( app-arch/xz-utils )" +DEPEND="${RDEPEND} + doc? ( app-doc/doxygen )" + +DOCS=( README.md CHANGELOG ) + +src_prepare() { + epatch "${FILESDIR}"/${P}-gentoo.patch +} + +src_configure() { + use debug && CMAKE_BUILD_TYPE=Debug + + local mycmakeargs=( + $(cmake-utils_use lzma USE_LZMA) + ) + + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + use doc && cmake-utils_src_compile doc +} + +src_install() { + cmake-utils_src_install + use doc && dohtml -r "${CMAKE_BUILD_DIR}"/doc/html/* +} diff --git a/app-arch/innoextract/innoextract-1.4.ebuild b/app-arch/innoextract/innoextract-1.4.ebuild new file mode 100644 index 000000000000..37b9d2f7617a --- /dev/null +++ b/app-arch/innoextract/innoextract-1.4.ebuild @@ -0,0 +1,73 @@ +# Copyright 1999-2013 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id$ + +EAPI=5 + +inherit eutils toolchain-funcs cmake-utils + +DESCRIPTION="A tool to unpack installers created by Inno Setup" +HOMEPAGE="http://innoextract.constexpr.org/" +SRC_URI="mirror://github/dscharrer/InnoExtract/${P}.tar.gz + mirror://sourceforge/${PN}/${P}.tar.gz" + +LICENSE="ZLIB" +SLOT="0" +KEYWORDS="amd64 x86" +IUSE="c++0x debug doc +lzma static" + +RDEPEND=" + !static? ( + dev-libs/boost + virtual/libiconv + lzma? ( app-arch/xz-utils ) + )" +DEPEND="${RDEPEND} + doc? ( >=app-doc/doxygen-1.8.3.1 ) + static? ( + app-arch/bzip2[static-libs] + dev-libs/boost[static-libs] + sys-libs/zlib[static-libs] + virtual/libiconv + lzma? ( app-arch/xz-utils[static-libs] ) + )" + +DOCS=( README.md CHANGELOG ) + +pkg_pretend() { + if [[ ${MERGE_TYPE} != binary ]]; then + # not sure about minimum clang req + if use c++0x && [[ $(tc-getCXX) == *g++ && $(tc-getCXX) != *clang++ ]] ; then + if [[ $(gcc-major-version) == 4 && $(gcc-minor-version) -lt 7 || $(gcc-major-version) -lt 4 ]] ; then + eerror "You need at least sys-devel/gcc-4.7.0 for C++0x capabilities" + die "You need at least sys-devel/gcc-4.7.0 for C++0x capabilities" + fi + fi + fi +} + +src_prepare() { + epatch "${FILESDIR}"/${P}-cmake.patch +} + +src_configure() { + local mycmakeargs=( + $(cmake-utils_use_use lzma LZMA) + $(cmake-utils_use_use static STATIC_LIBS) + $(cmake-utils_use_use c++0x CXX11) + $(cmake-utils_use_with debug DEBUG) + -DSET_OPTIMIZATION_FLAGS=OFF + ) + + cmake-utils_src_configure +} + +src_compile() { + cmake-utils_src_compile + use doc && cmake-utils_src_compile doc +} + +src_install() { + cmake-utils_src_install + use doc && dohtml -r "${CMAKE_BUILD_DIR}"/doc/html/* +} diff --git a/app-arch/innoextract/metadata.xml b/app-arch/innoextract/metadata.xml new file mode 100644 index 000000000000..3d1917dd249b --- /dev/null +++ b/app-arch/innoextract/metadata.xml @@ -0,0 +1,21 @@ +<?xml version="1.0" encoding="UTF-8"?> +<!DOCTYPE pkgmetadata SYSTEM "http://www.gentoo.org/dtd/metadata.dtd"> +<pkgmetadata> + <herd>proxy-maintainers</herd> + <maintainer> + <email>hasufell@gentoo.org</email> + <name>Julian Ospald</name> + <description>Maintainer. Assign bugs to him</description> + </maintainer> + <maintainer> + <email>daniel@constexpr.org</email> + <name>Daniel Scharrer</name> + <description>Proxy maintainer. CC him on bugs</description> + </maintainer> + <use> + <flag name="c++0x">Compile innoextract using the C++11 standard.</flag> + </use> + <upstream> + <remote-id type="sourceforge">innoextract</remote-id> + </upstream> +</pkgmetadata> |