aboutsummaryrefslogtreecommitdiff
blob: 81df46089ca91acf816d7daab877d033788eec9e (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
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $

EAPI=5

inherit eutils

DESCRIPTION="library for processing UTF-8 encoded Unicode strings"
HOMEPAGE="http://www.public-software-group.org/utf8proc"
SRC_URI="http://www.public-software-group.org/pub/projects/${PN}/v${PV}/utf8proc-v${PV}.tar.gz"
S="${WORKDIR}/${PN}-v${PV}"

LICENSE="MIT"
SLOT="0"
KEYWORDS="~amd64"
IUSE="static-libs"

DEPEND=""
RDEPEND="${DEPEND}"

src_prepare() {
	epatch "${FILESDIR}"/${P}-soname.patch \
		"${FILESDIR}"/${P}-buildflags.patch
}

src_compile() {
	emake libutf8proc.so
	use static-libs & emake libutf8proc.a
}

src_install() {
	doheader utf8proc.h
	dolib.so libutf8proc.so
	use static-libs && dolib.a libutf8proc.a
}