blob: b95e1c0132eb9d6327e2bd5e266340fe92925e73 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-crypt/rotix/rotix-0.83.ebuild,v 1.19 2014/08/10 02:27:00 patrick Exp $
EAPI=5
inherit eutils flag-o-matic
DESCRIPTION="Rotix allows you to generate rotational obfuscations"
HOMEPAGE="http://gentoo.org"
SRC_URI="http://elektron.its.tudelft.nl/~hemmin98/rotix_releases/${P}/${P}.tar.bz2"
LICENSE="GPL-2"
SLOT="0"
KEYWORDS="amd64 ia64 ppc x86 ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
IUSE=""
DEPEND="sys-devel/gettext"
RDEPEND="${DEPEND}"
src_prepare() {
epatch "${FILESDIR}"/${PV}-respect-CFLAGS-and-dont-strip.patch
epatch "${FILESDIR}"/${P}-locale.diff
epatch "${FILESDIR}"/${P}-interix.patch
}
src_configure() {
use elibc_glibc || append-flags -lintl
econf --i18n=1
}
src_install() {
emake DESTDIR="${D}" install || die
}
|