Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Adélie Package Tree
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Adélie Linux
Adélie Package Tree
Commits
a7614714
Commit
a7614714
authored
9 years ago
by
Anna Wilcox
Browse files
Options
Downloads
Patches
Plain Diff
dev-libs/libfetch: fix retarded build issue.
parent
83bdea22
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
dev-libs/libfetch/files/libfetch-2.33-remove-hardcoded-compiler.patch
+18
-0
18 additions, 0 deletions
...fetch/files/libfetch-2.33-remove-hardcoded-compiler.patch
dev-libs/libfetch/libfetch-2.33.ebuild
+11
-3
11 additions, 3 deletions
dev-libs/libfetch/libfetch-2.33.ebuild
with
29 additions
and
3 deletions
dev-libs/libfetch/files/libfetch-2.33-remove-hardcoded-compiler.patch
0 → 100644
+
18
−
0
View file @
a7614714
--- a/Makefile 2015-09-16 22:15:02.000000000 -0500
+++ b/Makefile 2016-01-24 01:54:11.547524137 -0600
@@ -31,10 +31,10 @@
CFLAGS += -UDEBUG
endif
-CC = gcc
-LD = gcc
-AR = ar
-RANLIB = ranlib
+CC ?= gcc
+LD ?= gcc
+AR ?= ar
+RANLIB ?= ranlib
INSTALL = install -c -D
OBJS= fetch.o common.o ftp.o http.o file.o
This diff is collapsed.
Click to expand it.
dev-libs/libfetch/libfetch-2.33.ebuild
+
11
−
3
View file @
a7614714
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$
# Copyright 2015-2016 Adélie Linux Team
# Distributed under the terms of the NCSA License
EAPI
=
5
inherit eutils
DESCRIPTION
=
"High-level retrieval and download library for FTP and HTTP(S)"
HOMEPAGE
=
"http://cvsweb.netbsd.org/bsdweb.cgi/pkgsrc/net/libfetch/"
SRC_URI
=
"http://distfiles.foxkit.us/source/
${
PN
}
/
${
P
}
.tar.bz2"
...
...
@@ -16,6 +17,13 @@ IUSE="+ipv6 +ssl"
DEPEND
=
"ssl? ( dev-libs/openssl:0 )"
RDEPEND
=
"
${
DEPEND
}
"
EPATCH_SOURCE
=(
"
${
FILESDIR
}
"
/
${
P
}
-remove-hardcoded-compiler
.patch
)
src_prepare
()
{
epatch
epatch_user
}
src_compile
()
{
use ssl
||
export
FETCH_WITH_OPENSSL
=
false
use ipv6
||
export
FETCH_WITH_INET6
=
false
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment