diff options
Diffstat (limited to 'x11-plugins')
-rw-r--r-- | x11-plugins/Manifest.gz | bin | 26081 -> 26085 bytes | |||
-rw-r--r-- | x11-plugins/pidgin-encryption/Manifest | 1 | ||||
-rw-r--r-- | x11-plugins/pidgin-encryption/pidgin-encryption-3.1-r4.ebuild | 38 |
3 files changed, 39 insertions, 0 deletions
diff --git a/x11-plugins/Manifest.gz b/x11-plugins/Manifest.gz Binary files differindex 941089759344..189a097809fa 100644 --- a/x11-plugins/Manifest.gz +++ b/x11-plugins/Manifest.gz diff --git a/x11-plugins/pidgin-encryption/Manifest b/x11-plugins/pidgin-encryption/Manifest index 133a12983143..fd66ba77d0c3 100644 --- a/x11-plugins/pidgin-encryption/Manifest +++ b/x11-plugins/pidgin-encryption/Manifest @@ -3,4 +3,5 @@ AUX pidgin-encryption-3.1-includes.patch 8580 BLAKE2B 9feefec902d1548cfcce626d1a AUX pidgin-encryption-3.1-time.patch 5624 BLAKE2B 0f02e2a221c21d5588a7346e3b19b2364fef3cd7b4360fd6af528529d8c29d9ee54c48eec5b8f047826c8d5bfd465051a28f01e5be6fd74f312e00a80368fc7d SHA512 d412ffd92104994d46aa9dcd44bbd230d41ca9f62784334fd1e960413d674519fecba53fa254e4ac9820b17030ef8fb0f93232bb33e19f2cdd44fd8ddc76e3e5 DIST pidgin-encryption-3.1.tar.gz 604129 BLAKE2B d42c6baf9e1b0adcb8e88a611279fa66f6c37ce3e89c742c6a8e2662662576cc9e08c8e3fa08c19e857b88165b840826f9118c5bcca0098b7eb02fac0a8ae159 SHA512 681e719dacc6812f6e965b5025631b02dc6abe4694c4dfc3034d5c07e97798707f28920c142b99f9d428470ef5c14bffe5d7c62d2d5fce01ad0e7567ab60b32d EBUILD pidgin-encryption-3.1-r3.ebuild 857 BLAKE2B 0f90ad602f8662e3139a37b6252bbaa8f56a3251168553f308561c84c2e682217cdccc149d370834acdcb1772d182e79dc11e81d1fad0dd9629c503501c87092 SHA512 7bddf850b1629e66cbb117839bb2ed29c952c80540205abdfb2202f16d615d8ec9e4ad5a23376a21322b772f11694197503c4f1cc839b9c1bfb0b64fb599ff4f +EBUILD pidgin-encryption-3.1-r4.ebuild 803 BLAKE2B dcb8e159788d51f88e20aa32560b1d736028a380560d7aa08de801bc8d6875370bd1606d3c1f8bea2521709c7aafc1a68b7d547af566723bb2ee71facf0fee9a SHA512 d2d19d1d0af8d2c43b0088ed79543f9a09d6f1429d935ef2d7a80a4d61a65e8f96f59e9dfe07939080ca2721a9f15312eb6f911f04e11d4090a2c56b44a3e075 MISC metadata.xml 252 BLAKE2B da1c7143f1c37f82af4d63c2053380e315cb3770bc65f5c8b43ee4c3f3858b54ec0a83db45d55f4a01743cc0db7b44ab0dd67698b1e2e4ca25fe81f14d94ee01 SHA512 d2416e5d0af9155bf7b99405a2f766be24b2e5062651cbcecf1b9546a3a91512edc5d0ae14b1c10db579b459169a201db2a870465d9a34c058eef0654c40eb5c diff --git a/x11-plugins/pidgin-encryption/pidgin-encryption-3.1-r4.ebuild b/x11-plugins/pidgin-encryption/pidgin-encryption-3.1-r4.ebuild new file mode 100644 index 000000000000..6dec4ae5a551 --- /dev/null +++ b/x11-plugins/pidgin-encryption/pidgin-encryption-3.1-r4.ebuild @@ -0,0 +1,38 @@ +# Copyright 1999-2025 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DESCRIPTION="Pidgin IM Encryption PlugIn" +HOMEPAGE="https://pidgin-encrypt.sourceforge.net/" +SRC_URI="https://downloads.sourceforge.net/pidgin-encrypt/${P}.tar.gz" + +LICENSE="GPL-2" +SLOT="0" +KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc ~x86" +IUSE="nls" + +BDEPEND="virtual/pkgconfig" +RDEPEND=" + >=dev-libs/nss-3.11 + net-im/pidgin[gui] + x11-libs/gtk+:2 +" +DEPEND="${RDEPEND}" + +PATCHES=( + "${FILESDIR}/${P}-glib2.32.patch" + "${FILESDIR}/${P}-time.patch" + "${FILESDIR}/${P}-includes.patch" +) + +src_configure() { + econf $(use_enable nls) +} + +src_install() { + emake install DESTDIR="${ED}" + dodoc CHANGELOG INSTALL NOTES README TODO VERSION WISHLIST + + find "${ED}" -type f -name "*.la" -delete || die +} |