Added xmedcon

This commit is contained in:
layman 2016-02-01 21:10:42 +01:00
parent cb0b73cdcb
commit 4f7e1642f8
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,2 @@
DIST xmedcon-0.14.1.tar.bz2 806103 SHA256 a6d194bf44d3d6c96cd8d6e1ad586b5d5e20de1c09dbbb51c76f9e5fd4ae6949 SHA512 7d9af10c5eec3f999c5b919594671c900f27cfb47c65178f96ea7d2f5ae421a373fdc46297c91efafe96ce04728767b0a176402fe186b2c1d7e7b2b47d5e884e WHIRLPOOL ffd29e9bfd326f50da90f87fa93165f551ff4d3f0d8bd9388292781d0024c0b070b30d1c1d1eb5e510a9104d7c819c02b1bcd022075321e72c2bbc8e23b2553e
EBUILD xmedcon-0.14.1.ebuild 1395 SHA256 36025163b1199dead35ae20a4da21371ccd9d93b32cf10e34a84fc4395a17d46 SHA512 eff10c8eae7fd9a40ac3488d8110963fb749d515b55d040e26c3772391355eec4c5213a6920def5fb7e81d78d59c9b23862ee349727e2adf590b36efdaf8c39f WHIRLPOOL 369ef16ecc3d856cb690ecc7f0bb2d16e0276f3da4cb1990024e246cd0c28a94324737489ee914c42c2e1836df80fafcb961fbd0d364ff44ef2efa138310b166

View File

@ -0,0 +1,45 @@
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# filename: xmedcon.ebuild.in #
# #
# UTILITY text: Medical Image Conversion Utility #
# #
# purpose : our Gentoo's portage ebuild template #
# #
# project : (X)MedCon by Erik Nolf #
# #
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# $Id: xmedcon.ebuild.in,v 1.12 2015/12/27 00:42:27 enlf Exp $
#
EAPI=5
DESCRIPTION="Medical Image Conversion Utility"
HOMEPAGE="http://${PN}.sourceforge.net"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2 LGPL-2"
SLOT="0"
#KEYWORDS="alpha amd64 arm hppa ia64 mips ppc ppc64 sparc x86"
KEYWORDS="x86 ~amd64"
IUSE="png gtk"
DEPEND="=x11-libs/gtk+-2*
png? ( >=media-libs/libpng-1.2.1 )
dev-util/pkgconfig"
src_configure() {
econf $(use_enable gtk gui) $(use_enable png)
}
src_compile() {
emake
}
src_install() {
emake DESTDIR="${D}" install
dodoc AUTHORS COPYING* INSTALL NEWS README REMARKS
}