blob: e09790dc4ba7596393002c7c383f2d0358244d3d (
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
|
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/dev-libs/cgilib/cgilib-0.5-r1.ebuild,v 1.3 2005/08/23 16:04:29 ka0ttic Exp $
inherit eutils toolchain-funcs
DESCRIPTION="A programmers library for the CGI interface"
HOMEPAGE="http://www.infodrom.org/projects/cgilib/"
SRC_URI="http://www.infodrom.org/projects/${PN}/download/${P}.tar.gz"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~s390 ~sparc ~x86"
IUSE=""
src_unpack(){
unpack ${A}
epatch ${FILESDIR}/${P}-cgitest.diff
cd ${S}
sed -i "s|^\(CFLAGS = -I. -Wall\).*$|\1 ${CFLAGS}|" Makefile || \
die "sed Makefile failed"
}
src_compile(){
emake
# test is possibly broken on other arches
use x86 && $(tc-getCC) -o cgilib.test cgitest.c -lcgi
}
src_install(){
insinto /usr/include
doins cgi.h
dolib.a libcgi.a
use x86 && dobin cgilib.test
doman *.[35]
dodoc CHANGES CREDITS readme cookies.txt
}
|