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.
32 lines
728 B
32 lines
728 B
# Copyright 1999-2015 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
# $Id$
|
|
|
|
EAPI=5
|
|
inherit eutils flag-o-matic multilib
|
|
|
|
DESCRIPTION="An abstract library implementation of a VT220/xterm/ECMA-48 terminal emulator"
|
|
HOMEPAGE="http://www.leonerd.org.uk/code/libvterm/"
|
|
SRC_URI="https://dev.gentoo.org/~yngwin/distfiles/${P}.tar.xz"
|
|
|
|
LICENSE="MIT"
|
|
SLOT="0"
|
|
KEYWORDS="~amd64 ~x86"
|
|
IUSE=""
|
|
|
|
DEPEND="sys-devel/libtool
|
|
virtual/pkgconfig"
|
|
|
|
src_compile() {
|
|
append-cflags -fPIC
|
|
emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)"
|
|
}
|
|
|
|
src_install() {
|
|
emake PREFIX="${EPREFIX}/usr" LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
|
|
DESTDIR="${D}" install
|
|
prune_libtool_files
|
|
|
|
dodoc doc/*
|
|
}
|