blob: 0b24d5b57d581ec10bbf290b15a8af6f44a0fe41 (
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
30
31
32
33
34
35
|
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-text/barcode/barcode-0.98.ebuild,v 1.16 2008/09/14 01:44:00 solar Exp $
inherit eutils toolchain-funcs
DESCRIPTION="barcode generator"
HOMEPAGE="http://www.gnu.org/software/barcode/"
SRC_URI="mirror://gnu/barcode/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ppc ppc64 x86 ~arm"
IUSE=""
src_unpack() {
unpack ${A}
cd "${S}"
epatch "${FILESDIR}"/${PV}-info.patch
sed -i \
-e 's:/info:/share/info:' \
-e 's:/man/:/share/man/:' \
Makefile.in || die "sed failed"
}
src_compile() {
tc-export CC
econf
emake || "emake failed"
}
src_install() {
emake install prefix="${D}/usr" LIBDIR="\$(prefix)/$(get_libdir)" || die
dodoc ChangeLog README TODO doc/barcode.{pdf,ps}
}
|