mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
dev-tcltk/tkdnd: add 2.9.5
Signed-off-by: Alfredo Tupone <tupone@gentoo.org>
This commit is contained in:
@@ -1,2 +1,3 @@
|
||||
DIST tkdnd-release-test-v2.9.2.tar.gz 573739 BLAKE2B 4e9cae26542cc7774a0faf3d91a8a3f3b3b598735fcdb4e0565be26893514fe2e3f301ecaa7c698913f570b30f37ba0e2e890c6651ceebbc5d6cd9f66caf57c8 SHA512 dd1538ad884e8287d9c90c3b1565b95a047f552a271f921b0d0d7cb7bde8d8d6ad7e8c3247b647c09080c2e23c57ca11c30bde516cf66abcbe1dac6dd0e7cdc7
|
||||
DIST tkdnd-release-test-v2.9.4.tar.gz 1358824 BLAKE2B 7ea5039825cdc160232bc987a903642b2b2e54973c7f45142b5ea53e6b8ec2b2249416a0220217dc1ae1475dbcf432e2c8c72954f850eb2009512f9ef06b0644 SHA512 2eaf84235443c4a69e411674a7a7b27a1d43ded8aba7b09ed4d2f128cc2bfc9e38018c337004ce7bf0a0082dc0f87a7e89c7c2fc50dfedbb1047deef1d73daa2
|
||||
DIST tkdnd-release-test-v2.9.5.tar.gz 1365461 BLAKE2B 36cc68cec4fa3fdeca82e95138e56cab426eba89832f46f55bed3fe77c191d29d751e5a02d617e1fb113f96ca8f30e940d52c8c2cfad9a5177ba1610277fe00c SHA512 c0a0395ce0391f31c56de6c07429fdc0e8cbc81be3eba9e7fb477db5ff037ea0aa966187e11b230b676115bb126010bfd231f292973fa8e8e700a1e5b3396df5
|
||||
|
||||
45
dev-tcltk/tkdnd/tkdnd-2.9.5.ebuild
Normal file
45
dev-tcltk/tkdnd/tkdnd-2.9.5.ebuild
Normal file
@@ -0,0 +1,45 @@
|
||||
# Copyright 1999-2026 Gentoo Authors
|
||||
# Distributed under the terms of the GNU General Public License v2
|
||||
|
||||
EAPI=8
|
||||
|
||||
MY_P=${PN}-release-test-v${PV}
|
||||
|
||||
DESCRIPTION="Adds native drag & drop capabilities to tk toolkit"
|
||||
HOMEPAGE="https://www.ellogon.org/petasis/index.php/tcltk-projects/tkdnd"
|
||||
SRC_URI="https://github.com/petasis/tkdnd/archive/${MY_P}.tar.gz"
|
||||
|
||||
S=${WORKDIR}/${PN}-${MY_P}
|
||||
|
||||
LICENSE="BSD"
|
||||
SLOT="0"
|
||||
KEYWORDS="~amd64 ~x86"
|
||||
IUSE="debug threads X"
|
||||
|
||||
DEPEND="
|
||||
dev-lang/tk:=
|
||||
x11-libs/libXcursor
|
||||
"
|
||||
RDEPEND=${DEPEND}
|
||||
|
||||
QA_CONFIG_IMPL_DECL_SKIP=(
|
||||
opendir64 readdir64 rewinddir64 closedir64 stat64 # used on AIX
|
||||
)
|
||||
|
||||
RESTRICT="test"
|
||||
|
||||
src_prepare() {
|
||||
sed \
|
||||
-e 's:-O2::g' \
|
||||
-e 's:-fomit-frame-pointer::g' \
|
||||
-e 's:-pipe::g' \
|
||||
-i configure tclconfig/tcl.m4 || die
|
||||
default
|
||||
}
|
||||
|
||||
src_configure() {
|
||||
econf \
|
||||
$(use_with X x) \
|
||||
$(use_enable debug symbols) \
|
||||
$(use_enable threads)
|
||||
}
|
||||
Reference in New Issue
Block a user