Files
@ 91c0b7fdc36c
Branch filter:
Location: ohnobinki_overlay/sys-libs/libixp/libixp-0.5-r1.ebuild - annotation
91c0b7fdc36c
788 B
application/vnd.gentoo.ebuild
dev-php/phpcaptcha: Add phpcaptcha-2.0.1 with patch to allow position independence of the PHP code.
(Portage version: 2.2.0_alpha2-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
(Portage version: 2.2.0_alpha2-r1/hg/Linux x86_64, signed Manifest commit with key 6BA81050)
917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 917214d8d258 | # Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-libs/libixp/libixp-0.5.ebuild,v 1.1 2009/07/11 11:12:37 omp Exp $
EAPI=2
inherit multilib
DESCRIPTION="Standalone client/server 9P library"
HOMEPAGE="http://libs.suckless.org/libixp"
SRC_URI="http://code.suckless.org/dl/libs/${P}.tar.gz"
LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64 ~ppc64 ~x86"
IUSE=""
DEPEND=""
RDEPEND=""
src_prepare() {
sed -i \
-e "/^PREFIX/s|=.*|= ${D}/usr|" \
-e "/^ ETC/s|=.*|= ${D}/etc|" \
-e "/^CFLAGS/s|=|+=|" \
-e "/^LDFLAGS/s|=|+=|" \
-e "/LIBDIR =/s|/lib|/$(get_libdir)|" \
config.mk || die "sed failed"
}
src_compile() {
emake -j1 || die
}
src_install() {
emake -j1 DESTDIR="${D}" install
}
|