blob: f57219ab93132cf1f7d4ed68dac50d9b24db928c (
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
36
37
38
39
40
41
42
43
44
45
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/ptabtools/ptabtools-0.3.1-r1.ebuild,v 1.1 2005/02/20 19:19:11 pkdawson Exp $
inherit eutils
MY_PV=${PV%.*}-${PV##*.}
DESCRIPTION="A set of utilities to use powertab files (.ptb)"
HOMEPAGE="http://jelmer.vernstok.nl/oss/ptabtools/"
SRC_URI="http://jelmer.vernstok.nl/releases/${PN}_${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~ppc ~sparc ~x86"
IUSE="xml2"
DEPEND="dev-libs/popt
dev-libs/libxml2
xml2? ( dev-libs/libxml2
dev-libs/libxslt )"
S=${WORKDIR}/${PN}-${PV%.*}
src_unpack() {
unpack ${A}
epatch ${FILESDIR}/${P}-fPIC.patch
}
src_compile() {
sed -i "s:CFLAGS =:CFLAGS = ${CFLAGS}:" Makefile
emake || die
}
src_install() {
dodir /usr/bin
dodir /usr/share/man/man1
dodir /usr/lib/pkgconfig
dodir /usr/include
dodoc AUTHORS ChangeLog README TODO
sed -i "s:/usr/local:/usr:" ptabtools.pc
sed -i "s:-lptb:-lptb-0.2:" ptabtools.pc
einstall || die
}
|