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/app-office/qcharselect/qcharselect-0.2.ebuild

41 lines
896 B

# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-office/qcharselect/qcharselect-0.2.ebuild,v 1.3 2013/04/10 06:53:47 patrick Exp $
EAPI=2
inherit multilib
DESCRIPTION="A Qt4 port of KCharSelect from KDE 3.5"
HOMEPAGE="http://qcharselect.sourceforge.net/"
SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="debug"
DEPEND="dev-qt/qtgui:4[qt3support]
x11-misc/makedepend"
src_prepare() {
sed -i \
-e 's:update-mime-database:true:g' \
-e 's:data/desktop/qcharselect:src/QCharSelect:' \
Makefile.in || die
}
src_configure() {
local myconf
use debug && myconf="--enable-debug"
econf \
--with-qtdir=/usr \
--with-qtlibdir=/usr/$(get_libdir)/qt4 \
${myconf}
}
src_install() {
emake DESTDIR="${D}" install || die
dodoc README
}