Go to:
Gentoo Home
Documentation
Forums
Lists
Bugs
Planet
Store
Wiki
Get Gentoo!
Gentoo's Bugzilla – Attachment 342556 Details for
Bug 214969
net-p2p/opentracker-9999 (new ebuild)
Home
|
New
–
[Ex]
|
Browse
|
Search
|
Privacy Policy
|
[?]
|
Reports
|
Requests
|
Help
|
New Account
|
Log In
[x]
|
Forgot Password
Login:
[x]
opentracker-9999.ebuild
opentracker-9999.ebuild (text/plain), 5.40 KB, created by
Vladimir Pavljuchenkov (SpiderX)
on 2013-03-18 17:23:41 UTC
(
hide
)
Description:
opentracker-9999.ebuild
Filename:
MIME Type:
Creator:
Vladimir Pavljuchenkov (SpiderX)
Created:
2013-03-18 17:23:41 UTC
Size:
5.40 KB
patch
obsolete
># Copyright 1999-2013 Gentoo Foundation ># Distributed under the terms of the GNU General Public License v2 ># $Header: $ > >EAPI="5" > >inherit eutils git-2 > >EGIT_REPO_URI="https://github.com/flygoast/opentracker.git" > >DESCRIPTION="High-performance bittorrent tracker" >HOMEPAGE="http://erdgeist.org/arts/software/opentracker/" >LICENSE="BEER-WARE" >SLOT="0" >KEYWORDS="~amd64 ~x86" >IUSE="blacklist debug examples +gzip gzip_always ip_from_query ip_from_proxy ipv6 +fullscrapes fullscrapes_modest live_sync live_sync_unicast log_networks_full log_numwant persistence restrict_stats spot_woodpeckers syslog whitelist" > >RDEPEND=">=dev-libs/libowfat-0.27 > gzip? ( sys-libs/zlib )" > >REQUIRED_USE="blacklist? ( !whitelist ) > gzip_always? ( gzip ) > gzip? ( fullscrapes ) > live_sync_unicast? ( live_sync ) > persistence? ( !ipv6 ) >" > >pkg_setup() { > # Add opentracker group and user to system > # (no home directory specified, because otherwise it will be result in opentracker:root ownership on it) > enewgroup ${PN} > enewuser ${PN} -1 -1 -1 ${PN} >} > >src_prepare() { > # Fix use of FEATURES, so it's not mixed up with portage's FEATURES > # Define PREFIX, BINDIR and path to libowfat; remove lpthread, lz and O3 flag, owfat target, stripping; create dirs on install > sed -i \ > -e "s|FEATURES|FEATURES_INTERNAL|g" \ > -e "s|PREFIX?=..|PREFIX?=/usr|g" \ > -e "s|LIBOWFAT_HEADERS=libowfat|LIBOWFAT_HEADERS=\$(PREFIX)/include/libowfat|g" \ > -e "s|-lpthread||g" \ > -e "s|-O3||g" \ > -e "s|-lz||g" \ > -e "s|strip \$@||g" \ > -e "s|BINDIR?=\$(PREFIX)/bin|BINDIR?=\$(DESTDIR)\$(PREFIX)/bin/|g" \ > -e "s|all: owfat|all:|g" \ > -e "s|install -m 755 ${PN} \$(BINDIR)|install -D -m 755 ${PN} \$(BINDIR)/${PN}|g" \ > Makefile || die "sed for src_prepare failed" > > if use blacklist ; then > sed -i '/DWANT_ACCESSLIST_BLACK/s/^#*//' Makefile || die "sed for blacklist failed" > fi > > if use gzip ; then > # Bring back lz flag to build with gzip support > sed -i \ > -e '/DWANT_COMPRESSION_GZIP$/s|^#*||g' \ > -e '/LDFLAGS+/s|$|-lz|g' \ > Makefile || die "sed for gzip failed" > fi > > if use gzip_always ; then > sed -i '/DWANT_COMPRESSION_GZIP_ALWAYS/s/^#*//' Makefile || die "sed for gzip_always failed" > fi > > if use ip_from_query ; then > sed -i '/DWANT_IP_FROM_QUERY_STRING/s/^#*//' Makefile || die "sed for ip_from_query failed" > fi > > if ! use ip_from_proxy ; then > sed -i '/DWANT_IP_FROM_PROXY/s/^/#/' Makefile || die "sed for ip_from_proxy failed" > fi > > if use ipv6 ; then > sed -i '/DWANT_V6/s/^#*//' Makefile || die "sed for ipv6 failed" > fi > > if ! use fullscrapes ; then > sed -i '/DWANT_FULLSCRAPE/s/^/#/' Makefile || die "sed for fullscrapes failed" > fi > > if use fullscrapes_modest ; then > sed -i '/DWANT_MODEST_FULLSCRAPES/s/^#*//' Makefile || die "sed for fullscrapes_modest failed" > fi > > if ! use live_sync ; then > sed -i '/DWANT_SYNC_LIVE/s/^/#/' Makefile || die "sed for live_sync failed" > fi > > if ! use live_sync_unicast ; then > sed -i '/DSYNC_LIVE_UNICAST/s/^/#/' Makefile || die "sed for live_sync_unicast failed" > fi > > if use log_networks_full ; then > sed -i '/DWANT_FULLLOG_NETWORKS/s/^#*//' Makefile || die "sed for log_networks_full failed" > fi > > if use log_numwant ; then > sed -i '/DWANT_LOG_NUMWANT/s/^#*//' Makefile || die "sed for log_numwant failed" > fi > > if ! use persistence ; then > sed -i '/DWANT_PERSISTENCE/s/^/#/' Makefile || die "sed for persistence failed" > sed -i \ > -e "/ot_persist.h/s|$|\n\n\#ifdef WANT_PERSISTENCE|g" \ > -e "/g_version_persist/s|^|\n\#endif\n\n|g" \ > ot_persist.c || die "sed for ot_persist.c failed" > fi > > if use spot_woodpeckers ; then > sed -i '/DWANT_SPOT_WOODPECKER/s/^#*//' Makefile || die "sed for spot_woodpeckers failed" > fi > > if use syslog ; then > sed -i '/DWANT_SYSLOG/s/^#*//' Makefile || die "sed for syslog failed" > fi > > if use restrict_stats ; then > sed -i '/DWANT_RESTRICT_STATS/s/^#*//' Makefile || die "sed for restrict_stats failed" > fi > > if use whitelist ; then > sed -i '/DWANT_ACCESSLIST_WHITE/s/^#*//' Makefile || die "sed for whitelist failed" > fi > > # Debug build: build opentracker.debug but target as opentracker, and don't build opentracker > if use debug; then > sed -i \ > -e '/D_DEBUG_HTTPERROR/s|^#*||g' \ > -e 's|all: $(BINARY)|all:|g' \ > -e 's|$@ $(OBJECTS_debug)|opentracker $(OBJECTS_debug)|g' \ > Makefile || die "sed for debug object failed" > fi > > # Correct config paths > sed -i \ > -e "/access.whitelist/s|/path/to/whitelist|/var/lib/${PN}/access.whitelist|g" \ > -e "/access.blacklist/s|./blacklist|/var/lib/${PN}/access.blacklist|g" \ > -e "/tracker.rootdir/s|/usr/local/etc/opentracker|/var/lib/${PN}|g" \ > -e "/tracker.user/s|nobody|${PN}|g" \ > -e "/persist.file/s|/path/to/persist.odb|/var/lib/${PN}/${PN}.odb|g" \ > "${S}"/opentracker.conf.sample || die "sed for config failed" >} > >src_install() { > # Install and copy documentation > default > > # Keeping chroot directory > diropts -m 755 -o ${PN} -g ${PN} > keepdir /var/lib/${PN} > > # Install Gentoo init script and its config > newinitd "${FILESDIR}"/${PN}.initd ${PN} > newconfd "${FILESDIR}"/${PN}.confd ${PN} > > # Install manual page > doman "${FILESDIR}"/${PN}.8 > > # Install config > insinto /etc/${PN} > newins "${S}"/${PN}.conf.sample ${PN}.conf > > if use examples ; then > # Install files into specified directory > insinto /usr/share/${PN} > doins -r "${S}"/tests/*.sh > doins "${S}"/sync_daemon.pl > > use persistence && doins "${S}"/ODB_FORMAT.md > fi > > # Correct user, group and permissions for files and directories > fowners -R ${PN}:${PN} /etc/${PN} > fperms 0640 /etc/${PN}/${PN}.conf >}
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Raw
Actions:
View
Attachments on
bug 214969
:
147404
|
185189
|
186132
|
282341
|
282343
|
282345
|
282361
|
342556
|
342560
|
342562
|
347442
|
347510
|
357184
|
374464
|
374466