From 7bc9c63c9da678a7e6fceb095d56c634afd22c56 Mon Sep 17 00:00:00 2001 From: V3n3RiX Date: Sun, 15 Dec 2019 18:09:03 +0000 Subject: gentoo resync : 15.12.2019 --- app-pda/jpilot/Manifest | 2 +- app-pda/jpilot/jpilot-1.8.2-r1.ebuild | 50 +++++++++++++++++++++++++++++++++++ app-pda/jpilot/jpilot-1.8.2.ebuild | 49 ---------------------------------- 3 files changed, 51 insertions(+), 50 deletions(-) create mode 100644 app-pda/jpilot/jpilot-1.8.2-r1.ebuild delete mode 100644 app-pda/jpilot/jpilot-1.8.2.ebuild (limited to 'app-pda/jpilot') diff --git a/app-pda/jpilot/Manifest b/app-pda/jpilot/Manifest index 8a6077debeef..6b5a58adeeba 100644 --- a/app-pda/jpilot/Manifest +++ b/app-pda/jpilot/Manifest @@ -1,5 +1,5 @@ AUX jpilot-1.8.2-fix-paths.patch 3619 BLAKE2B 01d77eb206f2ce4c1f28b2950334f0814fb398cc61bc4164e573a7290b6ff0a1d6c710c6932ce0170b8634459beb8f2f53c296b3fcf79ea56d8ca061459babd4 SHA512 25e026aafc04e488183a7537f37566b30c1300f090cc1b4c9eca6531e30654751e10f72c8d45f0ad1bcfa441c659380831de520f41906daec61b4b069fc84f81 AUX jpilot-1.8.2-qa-desktop-file.patch 280 BLAKE2B 8a84005ce60627cea1f6b8b9ce96e824a65b621d63706703d15a3dd1ed48945ab100927a885d8c7e40c2688194f89a151be96729b26d6cb4d081024095ed3178 SHA512 ccc59b87c5e7f9074e83e9c3a47799c6779c29583fbd9845a26ad735342b22bf390bf8bed50dc2adac097dea00823ea587c8a5abdce4c197f5160e59c4617a37 DIST jpilot-1.8.2.tar.gz 1740735 BLAKE2B efc9fb8e88843d6e0f4f2245753d67856c9d0cd455c9a22c829bb103631fd8a8111ead3cb4bc434a6be00ad0cb35fe554a9ebbe1f2d38bfaf560e1b414c62260 SHA512 733dd51a2acc60760bb1ffaa0d7b4433584a571793d5e4f857492349bae8d032625baf9f0060e619d760628ddda3559bf4be057f45f4dc17ddf1af1ca795c024 -EBUILD jpilot-1.8.2.ebuild 894 BLAKE2B 35741144208a8384ae7e53e97209996ed09736f80e8466abbb0f7141135b6429219b7ad4fa9cb6c3c37783f318fbe1ae152a364335a1d3f2fe7b329a31e6b975 SHA512 c6af70006a1fe3a4a595e30e08c46946b632abd912355aa7fab91711cb4765cf63392edd28e941a87cf7e5354866037b73d496b545365ec7309be0f2cdcdc3b0 +EBUILD jpilot-1.8.2-r1.ebuild 987 BLAKE2B 198777beec3ac0af040e6e13b3ff120b15016b9f98bb1e81dceadd5a57a693fbf692f6a13594d8b515da70be44cc7f2719f68e2b7c19891ca3aa576de0b61855 SHA512 30d7362a50f669d6abefab3a752cd9055eca58f4f69fad8768f4eec53c4c57ff33800f391dcd88d070a6e3b8183e35e7f1d6e7d2aedef2ed9280ee4b88b01e80 MISC metadata.xml 166 BLAKE2B c254f1fb642881aba57637be14fb0a89b10384f91a128feaec3a8c870d76efc2cbacb92caccc0dee2dd19a5ac5eaf8643080dafa05c4e2ac96a68568927e5afd SHA512 a56648c974a1d14dd4c18237532773c72057a13ab90c58b5da04f185e3c12a8bd8d5c21fb06053507f31766291a82dc7d87b34cd65fd94cfe2af7295c813ef84 diff --git a/app-pda/jpilot/jpilot-1.8.2-r1.ebuild b/app-pda/jpilot/jpilot-1.8.2-r1.ebuild new file mode 100644 index 000000000000..7938cdb42bc3 --- /dev/null +++ b/app-pda/jpilot/jpilot-1.8.2-r1.ebuild @@ -0,0 +1,50 @@ +# Copyright 1999-2017 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=6 + +inherit autotools + +DESCRIPTION="Desktop Organizer Software for the Palm Pilot" +HOMEPAGE="http://www.jpilot.org/" +SRC_URI="http://jpilot.org/tarballs/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 x86" +IUSE="nls" + +RDEPEND=" + app-pda/pilot-link + dev-libs/libgcrypt:0= + x11-libs/gtk+:2" +DEPEND="${RDEPEND} + nls? ( + dev-util/intltool + sys-devel/gettext + ) + virtual/pkgconfig" + +PATCHES=( + "${FILESDIR}"/${PN}-1.8.2-qa-desktop-file.patch + "${FILESDIR}"/${PN}-1.8.2-fix-paths.patch +) + +src_prepare() { + default + sed -i -e 's|_UNQUOTED(ABILIB, "lib"|_UNQUOTED(ABILIB, "'$(get_libdir)'"|' configure.in || die + mv configure.{in,ac} || die + eautoreconf +} + +src_configure() { + econf $(use_enable nls) +} + +src_install() { + default + docompress -x /usr/share/doc/${PF}/icons + + # .la files for plugins are useless + find "${D}" -name '*.la' -delete || die +} diff --git a/app-pda/jpilot/jpilot-1.8.2.ebuild b/app-pda/jpilot/jpilot-1.8.2.ebuild deleted file mode 100644 index 7d10a5cc6419..000000000000 --- a/app-pda/jpilot/jpilot-1.8.2.ebuild +++ /dev/null @@ -1,49 +0,0 @@ -# Copyright 1999-2017 Gentoo Foundation -# Distributed under the terms of the GNU General Public License v2 - -EAPI=6 - -inherit autotools - -DESCRIPTION="Desktop Organizer Software for the Palm Pilot" -HOMEPAGE="http://www.jpilot.org/" -SRC_URI="http://jpilot.org/tarballs/${P}.tar.gz" - -LICENSE="GPL-2" -SLOT="0" -KEYWORDS="alpha amd64 ~arm ia64 ppc ppc64 x86" -IUSE="nls" - -RDEPEND=" - app-pda/pilot-link - dev-libs/libgcrypt:0= - x11-libs/gtk+:2" -DEPEND="${RDEPEND} - nls? ( - dev-util/intltool - sys-devel/gettext - ) - virtual/pkgconfig" - -PATCHES=( - "${FILESDIR}"/${PN}-1.8.2-qa-desktop-file.patch - "${FILESDIR}"/${PN}-1.8.2-fix-paths.patch -) - -src_prepare() { - default - mv configure.{in,ac} || die - eautoreconf -} - -src_configure() { - econf $(use_enable nls) -} - -src_install() { - default - docompress -x /usr/share/doc/${PF}/icons - - # .la files for plugins are useless - find "${D}" -name '*.la' -delete || die -} -- cgit v1.2.3