diff options
author | Andrew Savchenko <bircoph@gentoo.org> | 2019-06-05 20:37:58 +0300 |
---|---|---|
committer | Andrew Savchenko <bircoph@gentoo.org> | 2019-06-05 20:39:39 +0300 |
commit | 774f69ba399f8e47633426257c0106b6cbb1df50 (patch) | |
tree | f4419e055a56aca3eb40d08ddb8fc12162d32658 /sys-power | |
parent | dev-ada/gnat_util: fix dependencies (diff) | |
download | gentoo-774f69ba399f8e47633426257c0106b6cbb1df50.tar.gz gentoo-774f69ba399f8e47633426257c0106b6cbb1df50.tar.bz2 gentoo-774f69ba399f8e47633426257c0106b6cbb1df50.zip |
sys-power/suspend: fix checksum buffer size
Closes: https://bugs.gentoo.org/687386
Package-Manager: Portage-2.3.67, Repoman-2.3.13
Signed-off-by: Andrew Savchenko <bircoph@gentoo.org>
Diffstat (limited to 'sys-power')
-rw-r--r-- | sys-power/suspend/Manifest | 1 | ||||
-rw-r--r-- | sys-power/suspend/metadata.xml | 1 | ||||
-rw-r--r-- | sys-power/suspend/suspend-1.0_p20190605.ebuild | 60 |
3 files changed, 62 insertions, 0 deletions
diff --git a/sys-power/suspend/Manifest b/sys-power/suspend/Manifest index 36f7d408c65a..5c4c2f3d50be 100644 --- a/sys-power/suspend/Manifest +++ b/sys-power/suspend/Manifest @@ -1,2 +1,3 @@ DIST suspend-1.0_p20120915.tar.xz 111080 BLAKE2B 99eea1d9808219373501001f0af90973c9176c1b19d62bff7be26886b11ebb514134b68434e9b453146ef1a4af2c4cc8e26326b956a1b2378c38c100638af17c SHA512 bb714b4a7c0f5749c4b711a5c38ca5d8cb5078176a75387957123f75cfe8348adc3aa4e96335eb65c14ad1dd2f99fd6dbca3b415525dd39b3c547f9b13b775be DIST suspend-1.0_p20150810.patch.xz 6172 BLAKE2B 026aee69c59119b2d51ec1bf396633b2a3df018c95eecc53106a2d99017169a95951f8296a4962b32e5ea4c8d8cf4ea77f693367866137390048bc137456fe4d SHA512 cb186bdb0619ed4852e2ba12d6048f26fa23c7556d7c95713f14a4258fbb014bbec2281edee6478ebf5916600b674d47d8ba53e7644391de933b03e9fd1b96e9 +DIST suspend-1.0_p20190605.patch.xz 6224 BLAKE2B 0eefbef5a8d777590f69c85b02edb5575a357b373b78d94846e2c2bd59430cbd55af59ee0e676faa7f60388cb3910adb2182dedadb1fdc1df38a409411ea2df1 SHA512 cf576a029b35306368cbdabb9863965e055198920b86eab7205083f3502ae69ec3e8a4267fb6ceaaf1560a8bdb0c59543453f1baad4758c8adc4ac4ae92736bc diff --git a/sys-power/suspend/metadata.xml b/sys-power/suspend/metadata.xml index 886b7a4a7949..4c01d221abef 100644 --- a/sys-power/suspend/metadata.xml +++ b/sys-power/suspend/metadata.xml @@ -10,5 +10,6 @@ </use> <upstream> <remote-id type="sourceforge">suspend</remote-id> + <remote-id type="github">bircoph/suspend</remote-id> </upstream> </pkgmetadata> diff --git a/sys-power/suspend/suspend-1.0_p20190605.ebuild b/sys-power/suspend/suspend-1.0_p20190605.ebuild new file mode 100644 index 000000000000..4987f5237b2b --- /dev/null +++ b/sys-power/suspend/suspend-1.0_p20190605.ebuild @@ -0,0 +1,60 @@ +# Copyright 1999-2019 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=7 + +inherit autotools + +BASE_PV="1.0_p20120915" + +DESCRIPTION="Userspace Software Suspend and S2Ram" +HOMEPAGE="http://suspend.sourceforge.net +https://github.com/bircoph/suspend" +SRC_URI="https://dev.gentoo.org/~bircoph/distfiles/${PN}-${BASE_PV}.tar.xz + https://dev.gentoo.org/~bircoph/patches/${P}.patch.xz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="crypt +lzo threads" + +RDEPEND=" + dev-libs/libx86 + >=sys-apps/pciutils-2.2.4 + crypt? ( + >=dev-libs/libgcrypt-1.6.3:0[static-libs] + dev-libs/libgpg-error[static-libs] ) + lzo? ( >=dev-libs/lzo-2[static-libs] ) " +DEPEND="${RDEPEND}" +BDEPEND=" + >=dev-lang/perl-5.10 + virtual/pkgconfig" + +S="${WORKDIR}/${PN}" + +PATCHES=( "${WORKDIR}/${P}.patch" ) + +src_prepare() { + default + eautoreconf +} + +src_configure() { + econf \ + --docdir="/usr/share/doc/${PF}" \ + --disable-fbsplash \ + $(use_enable crypt encrypt) \ + $(use_enable lzo compress) \ + $(use_enable threads) +} + +src_install() { + dodir etc + emake DESTDIR="${D}" install + rm "${D}/usr/share/doc/${PF}"/COPYING* || die +} + +pkg_postinst() { + elog "In order to make this package work with genkernel see:" + elog "https://bugs.gentoo.org/show_bug.cgi?id=156445" +} |