1
0
forked from ports/contrib

ftgl: added missing headers on installation

This commit is contained in:
Jose V Beneyto 2012-05-22 15:02:48 +02:00
parent 341be8ab54
commit a2aae2fbe7
2 changed files with 8 additions and 1 deletions

View File

@ -7,6 +7,7 @@ drwxr-xr-x root/root usr/include/FTGL/
-rw-r--r-- root/root usr/include/FTGL/FTBufferFont.h -rw-r--r-- root/root usr/include/FTGL/FTBufferFont.h
-rw-r--r-- root/root usr/include/FTGL/FTBufferGlyph.h -rw-r--r-- root/root usr/include/FTGL/FTBufferGlyph.h
-rw-r--r-- root/root usr/include/FTGL/FTExtrdGlyph.h -rw-r--r-- root/root usr/include/FTGL/FTExtrdGlyph.h
-r-Sr-Sr-- root/root usr/include/FTGL/FTFace.h
-rw-r--r-- root/root usr/include/FTGL/FTFont.h -rw-r--r-- root/root usr/include/FTGL/FTFont.h
-rw-r--r-- root/root usr/include/FTGL/FTGLBitmapFont.h -rw-r--r-- root/root usr/include/FTGL/FTGLBitmapFont.h
-rw-r--r-- root/root usr/include/FTGL/FTGLExtrdFont.h -rw-r--r-- root/root usr/include/FTGL/FTGLExtrdFont.h
@ -16,11 +17,13 @@ drwxr-xr-x root/root usr/include/FTGL/
-rw-r--r-- root/root usr/include/FTGL/FTGLTextureFont.h -rw-r--r-- root/root usr/include/FTGL/FTGLTextureFont.h
-rw-r--r-- root/root usr/include/FTGL/FTGlyph.h -rw-r--r-- root/root usr/include/FTGL/FTGlyph.h
-rw-r--r-- root/root usr/include/FTGL/FTLayout.h -rw-r--r-- root/root usr/include/FTGL/FTLayout.h
-r-Sr-Sr-- root/root usr/include/FTGL/FTLibrary.h
-rw-r--r-- root/root usr/include/FTGL/FTOutlineGlyph.h -rw-r--r-- root/root usr/include/FTGL/FTOutlineGlyph.h
-rw-r--r-- root/root usr/include/FTGL/FTPixmapGlyph.h -rw-r--r-- root/root usr/include/FTGL/FTPixmapGlyph.h
-rw-r--r-- root/root usr/include/FTGL/FTPoint.h -rw-r--r-- root/root usr/include/FTGL/FTPoint.h
-rw-r--r-- root/root usr/include/FTGL/FTPolyGlyph.h -rw-r--r-- root/root usr/include/FTGL/FTPolyGlyph.h
-rw-r--r-- root/root usr/include/FTGL/FTSimpleLayout.h -rw-r--r-- root/root usr/include/FTGL/FTSimpleLayout.h
-r-Sr-Sr-- root/root usr/include/FTGL/FTSize.h
-rw-r--r-- root/root usr/include/FTGL/FTTextureGlyph.h -rw-r--r-- root/root usr/include/FTGL/FTTextureGlyph.h
-rw-r--r-- root/root usr/include/FTGL/ftgl.h -rw-r--r-- root/root usr/include/FTGL/ftgl.h
drwxr-xr-x root/root usr/lib/ drwxr-xr-x root/root usr/lib/

View File

@ -6,18 +6,22 @@
name=ftgl name=ftgl
version=2.1.3-rc5 version=2.1.3-rc5
release=1 release=2
source=(http://download.sourceforge.net/$name/$name-$version.tar.bz2) source=(http://download.sourceforge.net/$name/$name-$version.tar.bz2)
build() { build() {
cd $name-2.1.3~rc5 cd $name-2.1.3~rc5
./configure --prefix=/usr \ ./configure --prefix=/usr \
--with-x \ --with-x \
--disable-nls \ --disable-nls \
--disable-docs \ --disable-docs \
--disable-static \ --disable-static \
--disable-freetypetest --disable-freetypetest
make make
make DESTDIR=$PKG install make DESTDIR=$PKG install
install -m 06444 src/FT{Face,Library,Size}.h $PKG/usr/include/FTGL
rm -rf $PKG/usr/share rm -rf $PKG/usr/share
} }