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/x11-misc/dclock/dclock-2.2.2_p4-r1.ebuild

72 lines
1.3 KiB

# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
EAPI=4
inherit eutils flag-o-matic toolchain-funcs
DESCRIPTION="Digital clock for the X window system"
HOMEPAGE="http://packages.qa.debian.org/d/dclock.html"
SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV/_p*/}.orig.tar.gz
mirror://debian/pool/main/d/${PN}/${PN}_${PV/_p/-}.debian.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="xft"
RDEPEND="
xft? (
media-libs/freetype
x11-libs/libXft
)
x11-libs/libX11
x11-libs/libXext
x11-libs/libXt
"
DEPEND="
${RDEPEND}
app-text/rman
x11-misc/imake
xft? ( virtual/pkgconfig )
"
S=${WORKDIR}/${P/_p*/}
src_prepare() {
EPATCH_FORCE=yes EPATCH_SUFFIX=diff epatch "${WORKDIR}"/debian/patches
epatch "${FILESDIR}"/${P}-include.patch
}
src_configure() {
if use xft; then
append-cppflags \
-DXFT_SUPPORT \
$( $(tc-getPKG_CONFIG) --cflags freetype2)
else
append-cppflags -UXFT_SUPPORT
sed -i -e '/EXTRA_LIBRARIES/s|^|#|g' Imakefile || die
fi
xmkmf || die
}
src_compile() {
emake \
CC="$(tc-getCC)" \
CFLAGS="${CFLAGS}" \
EXTRA_LDOPTIONS="${LDFLAGS}"
}
src_install() {
emake DESTDIR="${D}" install{,.man}
insinto /usr/share/sounds
doins sounds/*
insinto /usr/share/X11/app-defaults
newins Dclock.ad DClock
dodoc README TODO
}