blob: 81329a2f61827b5746de4a0154200205627aeb6a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
# Copyright 1999-2013 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
EAPI="5"
inherit multilib toolchain-funcs eutils
DESCRIPTION="Glue library for the glcdlib LCDproc driver based on GraphLCD"
HOMEPAGE="http://www.muresan.de/graphlcd/lcdproc/"
SRC_URI="http://www.muresan.de/graphlcd/lcdproc/${P}.tar.bz2"
KEYWORDS="amd64 ~ppc x86"
SLOT="0"
LICENSE="GPL-2"
DEPEND=">=app-misc/graphlcd-base-0.1.3
sys-libs/glibc"
RDEPEND=${DEPEND}
src_compile() {
emake LDFLAGS="${LDFLAGS}" CXX="$(tc-getCXX)" CXXFLAGS="${CXXFLAGS}"
}
src_install()
{
emake DESTDIR="${D}/usr" LIBDIR="${D}/usr/$(get_libdir)" install
dodoc AUTHORS README INSTALL TODO ChangeLog
dosym usr/$(get_libdir)/libglcdprocdriver.so{,.1}
}
|