The following changes were made:

* Split off separate dev package
  * Moved config to usr/share/eudev (managed by usher)
  * Added init file
This commit is contained in:
2017-05-05 18:03:04 -05:00
parent 999694fe4c
commit 3e831956ff
4 changed files with 86 additions and 20 deletions

View File

@@ -8,19 +8,24 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
DEPENDS = glibc,kmod,util-linux,xz,zlib
ARCH = x86_64
URL = http://www.gentoo.org/proj/en/eudev/
export SRCPKG = eudev
export DEPENDS = glibc,kmod,util-linux,xz,zlib
export ARCH = x86_64
export URL = http://www.gentoo.org/proj/en/eudev/
BRIEF = Fork of udev
DESC = eudev is a fork of system-udev with the goal of obtaining better \
compatibility with existing software
SNAPVER = 3
SNAPVER = 4
ARCHIVE := $(PWD)/SRC/$(shell ls SRC|egrep '(bz2|gz|tar|xz)$$'|tail -1)
TYPE := $(shell file -ib $(ARCHIVE)|cut -d';' -f1|tr -d '\n')
SRCDIR := $(shell tar -tf $(ARCHIVE)|head -1|sed 's/\/.*//')
PATCHDIR := $(PWD)/SRC/patches
VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'|sed 's/^-//')-$(SNAPVER)
export VERSION := $(shell echo $(SRCDIR)|egrep -o '\-[0-9].*'| \
sed 's/^-//')-$(SNAPVER)
DEV := $(PWD)/eudev-dev
DEVROOT := $(DEV)/ROOT
include /usr/share/snap/Makefile.snaplinux
@@ -73,7 +78,21 @@ $(ROOT): $(SRCDIR)/src/udev/udevd
mkdir -v $(ROOT); \
fi
@cd $(SRCDIR) && make install DESTDIR=$(ROOT)
@cd $(SRCDIR) && make install DESTDIR=$(ROOT) && \
install -v -d -m 755 $(ROOT)/etc/init.d && \
install -v -d -m 755 $(ROOT)/usr/share/eudev && \
mv -v $(ROOT)/etc/udev/udev.conf $(ROOT)/usr/share/eudev && \
install -v -m 755 $(PWD)/SNAP/udevd.init $(ROOT)/etc/init.d/udevd
@install -v -d $(DEV)/SNAP && \
install -v -d $(DEVROOT) && \
for file in `find $(ROOT)|egrep 'pkgconfig\/|\.a$$|\.h$$'`; do \
path=`dirname $$file|sed "s[$(ROOT)[$(DEVROOT)["`; \
mkdir -p $$path; \
mv $$file $$path; \
done && \
find $(ROOT) -type d -empty -delete && \
cd $(DEV) && make -f ../Makefile.eudev-dev && mv *.snap ../
test: $(ROOT)
@cd $(SRCDIR); \
@@ -81,6 +100,7 @@ test: $(ROOT)
clean:
@rm -rvf $(ROOT) \
$(DEV) \
$(SNAPINFO) \
$(MANIFEST) \
$(FILES) \