77 lines
1.4 KiB
Bash
77 lines
1.4 KiB
Bash
# Copyright 1999-2021 Gentoo Authors
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
EAPI=7
|
|
inherit flag-o-matic toolchain-funcs
|
|
|
|
DESCRIPTION="Digital clock for the X window system"
|
|
HOMEPAGE="https://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.xz
|
|
"
|
|
|
|
LICENSE="GPL-2"
|
|
SLOT="0"
|
|
KEYWORDS="amd64 ppc x86"
|
|
IUSE="xft"
|
|
|
|
RDEPEND="
|
|
x11-libs/libX11
|
|
x11-libs/libXext
|
|
x11-libs/libXt
|
|
xft? (
|
|
media-libs/freetype
|
|
x11-libs/libXft
|
|
)
|
|
"
|
|
DEPEND="
|
|
${RDEPEND}
|
|
"
|
|
BDEPEND="
|
|
app-text/rman
|
|
>=x11-misc/imake-1.0.8-r1
|
|
xft? ( virtual/pkgconfig )
|
|
"
|
|
S=${WORKDIR}/${P/_p*/}
|
|
PATCHES=(
|
|
"${WORKDIR}"/debian/patches
|
|
)
|
|
|
|
src_prepare() {
|
|
default
|
|
sed -i -e '/CDEBUGFLAGS/d' Imakefile || die
|
|
}
|
|
|
|
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
|
|
|
|
CC="$(tc-getBUILD_CC)" LD="$(tc-getLD)" \
|
|
IMAKECPP="${IMAKECPP:-$(tc-getCPP)}" xmkmf || die
|
|
}
|
|
|
|
src_compile() {
|
|
emake \
|
|
CC="$(tc-getCC)" \
|
|
CFLAGS="${CFLAGS}" \
|
|
CPPFLAGS="${CPPFLAGS}" \
|
|
EXTRA_LDOPTIONS="${LDFLAGS}"
|
|
}
|
|
|
|
src_install() {
|
|
default
|
|
emake DESTDIR="${D}" install.man
|
|
|
|
insinto /usr/share/sounds
|
|
doins sounds/*
|
|
|
|
insinto /usr/share/X11/app-defaults
|
|
newins Dclock.ad DClock
|
|
}
|