diff options
Diffstat (limited to '')
-rw-r--r-- | x11-wm/custard/custard-9999-r1.ebuild (renamed from x11-wm/custard/custard-9999.ebuild) | 25 |
1 files changed, 22 insertions, 3 deletions
diff --git a/x11-wm/custard/custard-9999.ebuild b/x11-wm/custard/custard-9999-r1.ebuild index a835d0b..f6b7496 100644 --- a/x11-wm/custard/custard-9999.ebuild +++ b/x11-wm/custard/custard-9999-r1.ebuild @@ -4,10 +4,12 @@ EAPI=7 if [[ ${PV} == *9999 ]]; then - inherit git-r3 + SCM="git-r3" EGIT_REPO_URI="https://github.com/comfies/custard.git" fi +inherit toolchain-funcs "${SCM}" + DESCRIPTION="Manual tiling window manager" HOMEPAGE="https://github.com/comfies/custard" @@ -31,7 +33,24 @@ DEPEND=" RDEPEND="${DEPEND}" BDEPEND="" +src_prepare() { + default + + sed -e 's/^CFLAGS.*=/CFLAGS +=/' \ + -e 's/ -O2//' \ + -e 's/^CPPFLAGS.*=/CPPFLAGS +=/' \ + -e 's/^LDFLAGS.*=/LDFLAGS +=/' \ + -i Makefile || die +} + +src_compile() { + emake \ + CC="$(tc-getCC)" +} + src_install() { - emake install DESTDIR="${D}" PREFIX="/usr" - newman man/custard.man ${PN}.1 + emake install \ + DESTDIR="${D}" \ + PREFIX="${EPREFIX}/usr" + newman man/${PN}.man ${PN}.1 } |