blob: 49d7ae6de7afdb7fa88fcef9f320b06f782983e9 (
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
|
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: $
EAPI=5
PYTHON_COMPAT=( python{2_6,2_7} )
inherit distutils-r1
[ "$PV" == "9999" ] && inherit git-2
DESCRIPTION="Remove adapter sequences from high-throughput sequencing data"
HOMEPAGE="https://code.google.com/p/cutadapt/"
if [ "$PV" == "9999" ]; then
EGIT_REPO_URI="https://github.com/marcelm/cutadapt"
KEYWORDS=""
else
SRC_URI="mirror://pypi/c/${PN}/${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
fi
LICENSE="MIT"
SLOT="0"
IUSE=""
|