diff options
author | netchild <netchild@FreeBSD.org> | 2015-07-26 21:06:24 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2015-07-26 21:06:24 +0800 |
commit | b7b235441550eaabe144bf86b077ae4088e9d5d8 (patch) | |
tree | e209e06ced549984f72de2e41fc9452f6156d081 /dns | |
parent | 28502bf8a1cb54b055aa9b4d9e4aff0dc43ba62f (diff) | |
download | freebsd-ports-gnome-b7b235441550eaabe144bf86b077ae4088e9d5d8.tar.gz freebsd-ports-gnome-b7b235441550eaabe144bf86b077ae4088e9d5d8.tar.zst freebsd-ports-gnome-b7b235441550eaabe144bf86b077ae4088e9d5d8.zip |
64 bit linuxulator support (not activated by default):
- most of the work was done by Alan Jude
- all errors are mine
- 64bit (may) have rough edges
- I validated
* that the 32bit part doesn't has deinstall regressions
* 29 of 72 64bit ports ports don't have deinstall leftovers (more validation
later, when I dare to activate the 64bit linuxulator in the kernel)
- the infrastructure part looks mature enough to let more test-bunnies get
some experience with it
- to use it you shall have no linux ports installed and have to specify
(on your own risk) the following in make.conf before installing the ports:
OVERRIDE_LINUX_BASE_PORT=c6_64
OVERRIDE_LINUX_NONBASE_PORTS=c6_64
This is on top of the exiting c6 linux ports. Given that CentOS 7 is 64bits
only, we decided to have it as an "overlay" instead of new ports.
The 64bit part only installs 64bit executables, the 32bit ports can not be
installed at the same time (if needed we can think of letting the 64bit
overlay install the 32bit parts too, but given the CentOS 7 comment
above...).
Differential Revision: https://reviews.freebsd.org/D174
Submitted by: alanjude
Sponsored by: Essen FreeBSD Hackathon 2015
Reviewed by: xmj, eadler (earlier versions)
Approved by: portmgr (implicit, I remember blanked approval for
linux parts loooong ago, punish me if you don't
agree anymore)
Diffstat (limited to 'dns')
-rw-r--r-- | dns/linux-c6-libasyncns/Makefile | 3 | ||||
-rw-r--r-- | dns/linux-c6-libasyncns/distinfo.x86_64 | 4 | ||||
-rw-r--r-- | dns/linux-c6-libasyncns/pkg-plist.i686 | 5 | ||||
-rw-r--r-- | dns/linux-c6-libasyncns/pkg-plist.x86_64 | 5 |
4 files changed, 15 insertions, 2 deletions
diff --git a/dns/linux-c6-libasyncns/Makefile b/dns/linux-c6-libasyncns/Makefile index 4be213d35e9e..978b6c1c2c86 100644 --- a/dns/linux-c6-libasyncns/Makefile +++ b/dns/linux-c6-libasyncns/Makefile @@ -3,7 +3,7 @@ PORTNAME= libasyncns PORTVERSION= 0.8 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= dns devel linux MAINTAINER= emulation@FreeBSD.org @@ -13,6 +13,5 @@ USE_LINUX= c6 USE_LINUX_RPM= yes RPMVERSION= 1.1.el6 USE_LDCONFIG= yes -AUTOMATIC_PLIST= yes .include <bsd.port.mk> diff --git a/dns/linux-c6-libasyncns/distinfo.x86_64 b/dns/linux-c6-libasyncns/distinfo.x86_64 new file mode 100644 index 000000000000..27f4ae07e730 --- /dev/null +++ b/dns/linux-c6-libasyncns/distinfo.x86_64 @@ -0,0 +1,4 @@ +SHA256 (rpm/x86_64/centos/6.6/libasyncns-0.8-1.1.el6.x86_64.rpm) = 40302e7bc4628ce8cba6df68b1aaabe4c227906a44d3ec7618d962a498e778e4 +SIZE (rpm/x86_64/centos/6.6/libasyncns-0.8-1.1.el6.x86_64.rpm) = 24936 +SHA256 (rpm/x86_64/centos/6.6/libasyncns-0.8-1.1.el6.src.rpm) = 6d0b1cd3002d4d79c43bc121e28f5c9bd65b69a80f9cd117cef234caecc47537 +SIZE (rpm/x86_64/centos/6.6/libasyncns-0.8-1.1.el6.src.rpm) = 346427 diff --git a/dns/linux-c6-libasyncns/pkg-plist.i686 b/dns/linux-c6-libasyncns/pkg-plist.i686 new file mode 100644 index 000000000000..9130ba89434e --- /dev/null +++ b/dns/linux-c6-libasyncns/pkg-plist.i686 @@ -0,0 +1,5 @@ +usr/lib/libasyncns.so.0 +usr/lib/libasyncns.so.0.3.1 +usr/share/doc/libasyncns-0.8/LICENSE +usr/share/doc/libasyncns-0.8/README + diff --git a/dns/linux-c6-libasyncns/pkg-plist.x86_64 b/dns/linux-c6-libasyncns/pkg-plist.x86_64 new file mode 100644 index 000000000000..cf545a66b50c --- /dev/null +++ b/dns/linux-c6-libasyncns/pkg-plist.x86_64 @@ -0,0 +1,5 @@ +usr/lib64/libasyncns.so.0 +usr/lib64/libasyncns.so.0.3.1 +usr/share/doc/libasyncns-0.8/LICENSE +usr/share/doc/libasyncns-0.8/README + |