Files
@ 779f8e3bb532
Branch filter:
Location: ohnobinki_overlay/app-arch/lcab/lcab-1.0_beta12.ebuild - annotation
779f8e3bb532
602 B
application/vnd.gentoo.ebuild
added app-dicts/sword-esv , a license for it (which I hope is adequate)
my app-dicts/sword-esv ebuild is adapted from Gentoo-Portage's app-dicts/sword-kjv ebuild and uses the sword-module eclass from Gentoo Portage
my app-dicts/sword-esv ebuild is adapted from Gentoo-Portage's app-dicts/sword-kjv ebuild and uses the sword-module eclass from Gentoo Portage
5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 5a1af5749a73 | # Copyright 1999-2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: Exp $
inherit autotools
MY_PV="${PV/_beta/b}"
DESCRIPTION="CAB file creation tool"
HOMEPAGE="http://lcab.move-to-cork.com"
SRC_URI="http://lcab.move-to-cork.com/sources/${PN}-${MY_PV}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE=""
DEPEND="virtual/libc"
S="${WORKDIR}/${PN}-${MY_PV}"
src_unpack() {
unpack ${A}
cd "${S}"
sed -i "s:1.0b11:${MY_PV}:" mytypes.h
eautoreconf || die
}
src_install() {
make DESTDIR="${D}" install || die
dodoc README COPYING
}
|