diff options
author | 2014-07-01 21:11:35 +0000 | |
---|---|---|
committer | 2014-07-01 21:11:35 +0000 | |
commit | 9b80113df8ccd73caea26baff349a99a1fa8c6f0 (patch) | |
tree | aa18fe5c78ea9fb3f7fd16cc6ec0738617a01020 /dev-util | |
parent | Add cpan upstream info (diff) | |
download | gentoo-2-9b80113df8ccd73caea26baff349a99a1fa8c6f0.tar.gz gentoo-2-9b80113df8ccd73caea26baff349a99a1fa8c6f0.tar.bz2 gentoo-2-9b80113df8ccd73caea26baff349a99a1fa8c6f0.zip |
install header file
(Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key 0xB2EFA1D4)
Diffstat (limited to 'dev-util')
-rw-r--r-- | dev-util/libsparse/ChangeLog | 5 | ||||
-rw-r--r-- | dev-util/libsparse/files/Makefile | 4 |
2 files changed, 7 insertions, 2 deletions
diff --git a/dev-util/libsparse/ChangeLog b/dev-util/libsparse/ChangeLog index 4b33aefbc018..da752116d720 100644 --- a/dev-util/libsparse/ChangeLog +++ b/dev-util/libsparse/ChangeLog @@ -1,6 +1,9 @@ # ChangeLog for dev-util/libsparse # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/dev-util/libsparse/ChangeLog,v 1.1 2014/07/01 13:24:13 jauhien Exp $ +# $Header: /var/cvsroot/gentoo-x86/dev-util/libsparse/ChangeLog,v 1.2 2014/07/01 21:11:35 jauhien Exp $ + + 01 Jul 2014; Jauhien Piatlicki <jauhien@gentoo.org> files/Makefile: + install header file *libsparse-4.4.4.1 (01 Jul 2014) diff --git a/dev-util/libsparse/files/Makefile b/dev-util/libsparse/files/Makefile index 1fd35a7c9b00..834e5c0c88b9 100644 --- a/dev-util/libsparse/files/Makefile +++ b/dev-util/libsparse/files/Makefile @@ -4,6 +4,7 @@ LDFLAGS := $(LDFLAGS) -L. PREFIX ?= /usr/ BINDIR ?= $(PREFIX)/bin +INCLUDEDIR ?= $(PREFIX)/include LIBDIR ?= $(PREFIX)/lib libsparse_src_files := \ @@ -54,6 +55,7 @@ clean: rm -rf *.o *.so $(executables) install: all - install -d $(DESTDIR)/$(BINDIR) $(DESTDIR)/$(LIBDIR) + install -d $(DESTDIR)/$(BINDIR) $(DESTDIR)/$(LIBDIR) $(DESTDIR)/$(INCLUDEDIR)/sparse install $(executables) $(DESTDIR)/$(BINDIR) install libsparse.so $(DESTDIR)/$(LIBDIR) + install --mode=644 include/sparse/sparse.h $(DESTDIR)/$(INCLUDEDIR)/sparse |