You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gentoo-overlay/dev-tcltk/tkdnd/tkdnd-2.9.2.ebuild

39 lines
772 B

# Copyright 1999-2020 Gentoo Authors
# Distributed under the terms of the GNU General Public License v2
EAPI=7
MY_P=${PN}-release-test-v${PV}
DESCRIPTION="Adds native drag & drop capabilities to tk toolkit"
HOMEPAGE="http://www.ellogon.org/petasis/tcltk-projects/tkdnd/"
SRC_URI="https://github.com/petasis/tkdnd/archive/${MY_P}.tar.gz"
LICENSE="BSD"
SLOT="0"
KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
IUSE="debug threads X"
DEPEND="dev-lang/tk:="
RDEPEND=${DEPEND}
S=${WORKDIR}/${PN}-${MY_P}
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)
}