commit:     3494cfeb45b8fefd8a39d3ffdbde30a5423a3740
Author:     Horea Christian <chr <AT> chymera <DOT> eu>
AuthorDate: Fri Aug  9 14:35:48 2019 +0000
Commit:     Joonas Niilola <juippis <AT> gentoo <DOT> org>
CommitDate: Fri Aug  9 16:18:03 2019 +0000
URL:        https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3494cfeb

sci-libs/dcmtk: FHS-compliant config file paths

Package-Manager: Portage-2.3.69, Repoman-2.3.16
Signed-off-by: Horea Christian <chr <AT> chymera.eu>
Closes: https://github.com/gentoo/gentoo/pull/12656
Signed-off-by: Joonas Niilola <juippis <AT> gentoo.org>

 sci-libs/dcmtk/dcmtk-3.6.4-r1.ebuild | 87 ++++++++++++++++++++++++++++++++++++
 1 file changed, 87 insertions(+)

diff --git a/sci-libs/dcmtk/dcmtk-3.6.4-r1.ebuild 
b/sci-libs/dcmtk/dcmtk-3.6.4-r1.ebuild
new file mode 100644
index 00000000000..f701d3e9f5b
--- /dev/null
+++ b/sci-libs/dcmtk/dcmtk-3.6.4-r1.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils
+
+DESCRIPTION="The DICOM Toolkit"
+HOMEPAGE="https://dicom.offis.de/dcmtk.php.en";
+SRC_URI="http://dicom.offis.de/download/dcmtk/release/${P}.tar.gz";
+
+LICENSE="OFFIS"
+KEYWORDS="~amd64 ~arm ~x86"
+SLOT="0"
+IUSE="doc png ssl tcpd tiff +threads xml zlib"
+
+RDEPEND="
+       dev-libs/icu:=
+       virtual/jpeg:0
+       png? ( media-libs/libpng:* )
+       ssl? ( dev-libs/openssl:0= )
+       tcpd? ( sys-apps/tcp-wrappers )
+       tiff? ( media-libs/tiff:0 )
+       xml? ( dev-libs/libxml2:2 )
+       zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+       media-gfx/graphviz
+       doc? ( app-doc/doxygen )"
+
+src_prepare() {
+       cmake-utils_src_prepare
+
+       sed -e "s:share/doc/dcmtk:&-${PV}:" \
+               -e "s:DIR \"/:DIR \"/usr/:" \
+               -e "s:usr/etc:etc:" \
+               -e "s:/lib\":/$(get_libdir)\":" \
+               -e "s:COPYRIGHT::" \
+               -i CMakeLists.txt || die
+       sed -e 's:${CMAKE_INSTALL_PREFIX}/::' \
+               -i dcmwlm/data/CMakeLists.txt doxygen/CMakeLists.txt || die
+       # Temporary workaround: docs are not built with CMake
+       sed -i -e '/include/d' doxygen/Makefile.in || die
+
+       # fix -D deprecation warnings
+       sed -i -e "s|_BSD_SOURCE|_DEFAULT_SOURCE|g" \
+               "${S}"/config/configure.in \
+               "${S}"/CMakeLists.txt || die
+}
+
+src_configure() {
+       local mycmakeargs=(
+               -DBUILD_SHARED_LIBS=ON
+               -DCMAKE_INSTALL_SYSCONFDIR=/etc
+               -DDCMTK_WITH_ICU=ON
+               -DDCMTK_WITH_TIFF=$(usex tiff)
+               -DDCMTK_WITH_PNG=$(usex png)
+               -DDCMTK_WITH_XML=$(usex xml)
+               -DDCMTK_WITH_ZLIB=$(usex zlib)
+               -DDCMTK_WITH_OPENSSL=$(usex ssl)
+               -DDCMTK_WITH_DOXYGEN=$(usex doc)
+               -DDCMTK_WITH_THREADS=$(usex threads)
+       )
+
+       cmake-utils_src_configure
+
+       if use doc; then
+               cd "${S}"/doxygen || die
+               econf
+       fi
+}
+
+src_compile() {
+       cmake-utils_src_compile
+
+       if use doc; then
+               emake -C "${S}"/doxygen
+       fi
+}
+
+src_install() {
+       doman doxygen/manpages/man1/*
+
+       if use doc; then
+               local HTML_DOCS=( "${S}"/doxygen/htmldocs/. )
+       fi
+       cmake-utils_src_install
+}

Reply via email to